_RDFS.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. from rdflib.namespace import DefinedNamespace, Namespace
  2. from rdflib.term import URIRef
  3. class RDFS(DefinedNamespace):
  4. """
  5. The RDF Schema vocabulary (RDFS)
  6. Generated from: http://www.w3.org/2000/01/rdf-schema#
  7. Date: 2020-05-26 14:20:05.794866
  8. """
  9. _fail = True
  10. # http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
  11. comment: URIRef # A description of the subject resource.
  12. domain: URIRef # A domain of the subject property.
  13. isDefinedBy: URIRef # The definition of the subject resource.
  14. label: URIRef # A human-readable name for the subject.
  15. member: URIRef # A member of the subject resource.
  16. range: URIRef # A range of the subject property.
  17. seeAlso: URIRef # Further information about the subject resource.
  18. subClassOf: URIRef # The subject is a subclass of a class.
  19. subPropertyOf: URIRef # The subject is a subproperty of a property.
  20. # http://www.w3.org/2000/01/rdf-schema#Class
  21. Class: URIRef # The class of classes.
  22. Container: URIRef # The class of RDF containers.
  23. ContainerMembershipProperty: URIRef # The class of container membership properties, rdf:_1, rdf:_2, ..., all of which are sub-properties of 'member'.
  24. Datatype: URIRef # The class of RDF datatypes.
  25. Literal: URIRef # The class of literal values, eg. textual strings and integers.
  26. Resource: URIRef # The class resource, everything.
  27. _NS = Namespace("http://www.w3.org/2000/01/rdf-schema#")