What are people using as the length of a MIMEType field in their databases? The longest one we've seen so far is 72 bytes:

application/vnd.openxmlformats-officedocument.wordprocessingml.document

but I'm just waiting for a longer one. We're using 250 now, but has anyone seen a longer MIMEType than that?

Edit: From the accepted answer, 127 for type and sub-type each, so that's 254 max, plus the '/' is a limit of 255 for the combined value.

link|improve this question

50% accept rate
feedback

1 Answer

up vote 21 down vote accepted

according to rfc 4288 "Media Type Specifications and Registration Procedures", type (eg. "application") and subtype (eg "vnd...") both can be max 127 characters. you do the math :)

link|improve this answer
Damn, I'd searched for that and never could find a good reference. – WaldenL Mar 13 '09 at 20:04
2  
For those who are not good at maths, that makes 127+1+127 = 255 if you include the slash. – Álvaro G. Vicario Feb 10 at 10:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.