_DCAM.py 887 B

123456789101112131415161718192021222324
  1. from rdflib.namespace import DefinedNamespace, Namespace
  2. from rdflib.term import URIRef
  3. class DCAM(DefinedNamespace):
  4. """
  5. Metadata terms for vocabulary description
  6. Generated from: https://www.dublincore.org/specifications/dublin-core/dcmi-terms/dublin_core_abstract_model.ttl
  7. Date: 2020-05-26 14:20:00.970966
  8. """
  9. _fail = True
  10. # http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
  11. domainIncludes: URIRef # A suggested class for subjects of this property.
  12. memberOf: URIRef # A relationship between a resource and a vocabulary encoding scheme which indicates that the resource is a member of a set.
  13. rangeIncludes: URIRef # A suggested class for values of this property.
  14. # http://www.w3.org/2000/01/rdf-schema#Class
  15. VocabularyEncodingScheme: URIRef # An enumerated set of resources.
  16. _NS = Namespace("http://purl.org/dc/dcam/")