https://schema.org/encodingFormat
Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)), e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.
DOMAIN | PROPERTY | RANGE |
---|---|---|
sdo:MediaObject | sdo:encodingFormat | xsd:string |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sdo: <https://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
sdo:encodingFormat a rdf:Property ;
rdfs:label "encodingFormat" ;
rdfs:comment "Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)), e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc."@en,
"Mediatype dat doorgaans wordt uitgedrukt met behulp van een MIME-formaat (zie [IANA-site](http://www.iana.org/assignments/media-types/media-types.xhtml) en [MDN-referentie](https://developer. mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)), bijvoorbeeld application/zip voor een binaire SoftwareApplication, audio/mpeg voor .mp3 etc."@nl ;
rdfs:domain sdo:MediaObject ;
rdfs:range xsd:string .