_RDF.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. from rdflib.namespace import DefinedNamespace, Namespace
  2. from rdflib.term import URIRef
  3. class RDF(DefinedNamespace):
  4. """
  5. The RDF Concepts Vocabulary (RDF)
  6. This is the RDF Schema for the RDF vocabulary terms in the RDF Namespace, defined in RDF 1.1 Concepts.
  7. Generated from: http://www.w3.org/1999/02/22-rdf-syntax-ns#
  8. Date: 2020-05-26 14:20:05.642859
  9. dc:date "2019-12-16"
  10. """
  11. _fail = True
  12. _underscore_num = True
  13. # http://www.w3.org/1999/02/22-rdf-syntax-ns#List
  14. nil: URIRef # The empty list, with no items in it. If the rest of a list is nil then the list has no more items in it.
  15. # http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
  16. direction: URIRef # The base direction component of a CompoundLiteral.
  17. first: URIRef # The first item in the subject RDF list.
  18. language: URIRef # The language component of a CompoundLiteral.
  19. object: URIRef # The object of the subject RDF statement.
  20. predicate: URIRef # The predicate of the subject RDF statement.
  21. rest: URIRef # The rest of the subject RDF list after the first item.
  22. subject: URIRef # The subject of the subject RDF statement.
  23. type: URIRef # The subject is an instance of a class.
  24. value: URIRef # Idiomatic property used for structured values.
  25. # http://www.w3.org/2000/01/rdf-schema#Class
  26. Alt: URIRef # The class of containers of alternatives.
  27. Bag: URIRef # The class of unordered containers.
  28. CompoundLiteral: URIRef # A class representing a compound literal.
  29. List: URIRef # The class of RDF Lists.
  30. Property: URIRef # The class of RDF properties.
  31. Seq: URIRef # The class of ordered containers.
  32. Statement: URIRef # The class of RDF statements.
  33. # http://www.w3.org/2000/01/rdf-schema#Datatype
  34. HTML: URIRef # The datatype of RDF literals storing fragments of HTML content
  35. JSON: URIRef # The datatype of RDF literals storing JSON content.
  36. PlainLiteral: URIRef # The class of plain (i.e. untyped) literal values, as used in RIF and OWL 2
  37. XMLLiteral: URIRef # The datatype of XML literal values.
  38. langString: URIRef # The datatype of language-tagged string values
  39. _NS = Namespace("http://www.w3.org/1999/02/22-rdf-syntax-ns#")