diff --git a/media-table-schema.json b/media-table-schema.json index bea0f06..2861146 100644 --- a/media-table-schema.json +++ b/media-table-schema.json @@ -63,6 +63,7 @@ { "name": "filePublic", "description": "`false` if the media file is not publicly accessible (e.g. to protect the privacy of people).", + "skos:broadMatch": "http://rs.tdwg.org/ac/terms/serviceExpectation", "type": "boolean", "constraints": { "required": true @@ -80,10 +81,12 @@ }, { "name": "fileMediatype", - "description": "Mediatype of the media file.", + "description": "Mediatype of the media file. Expressed as an [IANA Media Type](https://www.iana.org/assignments/media-types/media-types.xhtml).", + "skos:broadMatch": "http://purl.org/dc/elements/1.1/format", "type": "string", "constraints": { - "required": true + "required": true, + "pattern": "^(image|video|audio)\/.*$" }, "example": "image/jpeg" },