_VANN.py 1.2 KB

123456789101112131415161718192021222324252627
  1. from rdflib.namespace import DefinedNamespace, Namespace
  2. from rdflib.term import URIRef
  3. class VANN(DefinedNamespace):
  4. """
  5. VANN: A vocabulary for annotating vocabulary descriptions
  6. This document describes a vocabulary for annotating descriptions of vocabularies with examples and usage
  7. notes.
  8. Generated from: https://vocab.org/vann/vann-vocab-20100607.rdf
  9. Date: 2020-05-26 14:21:15.580430
  10. """
  11. _fail = True
  12. # http://www.w3.org/2002/07/owl#AnnotationProperty
  13. changes: URIRef # A reference to a resource that describes changes between this version of a vocabulary and the previous.
  14. example: URIRef # A reference to a resource that provides an example of how this resource can be used.
  15. preferredNamespacePrefix: URIRef # The preferred namespace prefix to use when using terms from this vocabulary in an XML document.
  16. preferredNamespaceUri: URIRef # The preferred namespace URI to use when using terms from this vocabulary in an XML document.
  17. termGroup: URIRef # A group of related terms in a vocabulary.
  18. usageNote: URIRef # A reference to a resource that provides information on how this resource is to be used.
  19. _NS = Namespace("http://purl.org/vocab/vann/")