Hi there,
Does an official URN for the MIME type exist?
Mozilla Firefox and other applications use notations like "urn:mimetype:text/plain
" or "urn:mimetype:handler:text/plain
".
There are two problems with this approach:
No "
mimetype
" namespace exists according to the IANA's official registry (http://www.iana.org/assignments/urn-namespaces/). Thus, only "urn:x-mimetype
" would be a valid namespace (according to RFC 3406 section 4.1).The slash "
/
" may not be used in URNs according to RFC 2141 section 2.2. But it could be encoded to "%2F
".
All that considered, is there another way to represent the MIME type "text/plain
" as an URN than "urn:x-mimetype:text%2Fplain
"?
[UPDATE: Thinking about it, an URI would be ok too. But I can't find no URI for MIME type neither.]
Thanks