https://schema.org/material
             The type of the programme/photo/object, e.g. video, audio, foto. NB: where material type is an electronic type, we are using sdo:associatedMedia, instead of sdo:material, that is solely used for other types of material, e.g. 'paper'.
| DOMAIN | PROPERTY | RANGE | 
|---|---|---|
| sdo:CreativeWork | sdo:material | 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:material a rdf:Property ;
    rdfs:label "has material type"@en,
        "heeft type materiaal"@nl ;
    rdfs:comment "The type of the programme/photo/object, e.g. video, audio, foto. NB: where material type is an electronic type, we are using sdo:associatedMedia, instead of sdo:material, that is solely used for other types of material, e.g. 'paper'."@en,
        "Het type van het programma/foto/object bijv. audio, video, foto. NB: als materiaaltype een electronisch type is, gebruiken we sdo:associatedMedia, in plaats van sdo:material, dat alleen gebruikt wordt voor andere materiaaltypes, zoals bijv. 'papier'."@nl ;
    rdfs:domain sdo:CreativeWork ;
    rdfs:range xsd:string .