_DC.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. from rdflib.namespace import DefinedNamespace, Namespace
  2. from rdflib.term import URIRef
  3. class DC(DefinedNamespace):
  4. """
  5. Dublin Core Metadata Element Set, Version 1.1
  6. Generated from: https://www.dublincore.org/specifications/dublin-core/dcmi-terms/dublin_core_elements.ttl
  7. Date: 2020-05-26 14:19:58.671906
  8. """
  9. _fail = True
  10. # http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
  11. contributor: (
  12. URIRef # An entity responsible for making contributions to the resource.
  13. )
  14. coverage: URIRef # The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.
  15. creator: URIRef # An entity primarily responsible for making the resource.
  16. date: URIRef # A point or period of time associated with an event in the lifecycle of the resource.
  17. description: URIRef # An account of the resource.
  18. format: URIRef # The file format, physical medium, or dimensions of the resource.
  19. identifier: (
  20. URIRef # An unambiguous reference to the resource within a given context.
  21. )
  22. language: URIRef # A language of the resource.
  23. publisher: URIRef # An entity responsible for making the resource available.
  24. relation: URIRef # A related resource.
  25. rights: URIRef # Information about rights held in and over the resource.
  26. source: URIRef # A related resource from which the described resource is derived.
  27. subject: URIRef # The topic of the resource.
  28. title: URIRef # A name given to the resource.
  29. type: URIRef # The nature or genre of the resource.
  30. _NS = Namespace("http://purl.org/dc/elements/1.1/")