### generic interface properties used in the src code ### define domain specific mappings in ../../vocabularies/mappings @prefix rdf: . @prefix rdfs: . @prefix iface: . ### iface:Property ### Class of all iface properties. ### Mainly exists to have one common root for all iface stuff. iface:property rdf:type rdf:Property . iface:property rdfs:label "Interface Property" . iface:property rdfs:comment "common root of all iface properties" . ### main property facets iface:temporal rdf:type rdf:Property . iface:temporal rdfs:subPropertyOf iface:property . iface:temporal rdfs:label "Time" . iface:temporal rdfs:comment "Groups all temporal properties" . iface:spatial rdf:type rdf:Property . iface:spatial rdfs:subPropertyOf iface:property . iface:spatial rdfs:label "Location" . iface:spatial rdfs:comment "Groups all spatial properties" . iface:conceptual rdf:type rdf:Property . iface:conceptual rdfs:subPropertyOf iface:property . iface:conceptual rdfs:label "Concept" . iface:conceptual rdfs:comment "Groups all conceptual properties" . iface:social rdf:type rdf:Property . iface:social rdfs:subPropertyOf iface:property . iface:social rdfs:label "Person" . iface:social rdfs:comment "Group all social properties" . iface:artefact rdf:type rdf:Property . iface:artefact rdfs:subPropertyOf iface:property . iface:artefact rdfs:label "Artefact" . iface:artefact rdfs:comment "Group all artefact properties" . ### iface:label ### interface property for reference labels iface:label rdf:type rdf:Property . iface:label rdfs:comment "label reference of a resource" . iface:label rdfs:subPropertyOf iface:property . iface:label rdfs:subPropertyOf rdfs:label . iface:prefLabel rdf:type rdf:Property . iface:prefLabel rdfs:subPropertyOf iface:label . iface:prefLabel rdfs:comment "preferred label reference of a resource" . iface:altLabel rdf:type rdf:Property . iface:altLabel rdfs:subPropertyOf iface:label . iface:altLabel rdfs:comment "alternative label reference of a resource" . ### iface:note ### interface property for literal descriptions iface:note rdf:type rdf:Property . iface:note rdfs:subPropertyOf iface:property . iface:note rdfs:comment "label description of a resource" . ### iface:depicts ### interface property for depicts relation ### between image and resource iface:depicts rdf:type rdf:Property . iface:depicts rdfs:subPropertyOf iface:artefact . iface:depicts rdfs:comment "image depicts a resource" . ### iface:depictedBy ### interface property for the image that ### a resource is depicted by iface:depictedBy rdf:type rdf:Property . iface:depictedBy rdfs:subPropertyOf iface:artefact . iface:depictedBy rdfs:comment "resource is depicted by an image" . iface:prefDepictedBy rdf:type rdf:Property . iface:prefDepictedBy rdfs:comment "preferred depiction" . iface:prefDepictedBy rdfs:subPropertyOf iface:depictedBy . iface:altDepictedBy rdf:type rdf:Property . iface:altDepictedBy rdfs:comment "alternative depiction" . iface:altDepictedBy rdfs:subPropertyOf iface:depictedBy . ### iface:geopoint ### superproperty for geographical point iface:geopoint rdf:type rdf:Property . iface:geopoint rdfs:label "Geo Point" . iface:geopoint rdfs:comment "superproperty for geographical point" . iface:geopoint rdfs:subPropertyOf iface:spatial . ### iface:latitude ### superproperty for geographical latitude iface:latitude rdf:type rdf:Property . iface:latitude rdfs:label "Latitude" . iface:latitude rdfs:comment "superproperty for geographical latitude" . iface:latitude rdfs:subPropertyOf iface:spatial . ### iface:longitude ### superproperty for geographical longitude iface:longitude rdf:type rdf:Property . iface:longitude rdfs:label "Longitude" . iface:longitude rdfs:comment "superproperty for geographical longitude" . iface:longitude rdfs:subPropertyOf iface:spatial .