_XSD.py 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. from rdflib.namespace import DefinedNamespace, Namespace
  2. from rdflib.term import URIRef
  3. class XSD(DefinedNamespace):
  4. """
  5. W3C XML Schema Definition Language (XSD) 1.1 Part 2: Datatypes
  6. Generated from: ../schemas/datatypes.xsd
  7. Date: 2021-09-05 20:37+10
  8. """
  9. _NS = Namespace("http://www.w3.org/2001/XMLSchema#")
  10. ENTITIES: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#ENTITIES
  11. ENTITY: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#ENTITY
  12. ID: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#ID
  13. IDREF: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#IDREF
  14. IDREFS: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#IDREFS
  15. NCName: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#NCName
  16. NMTOKEN: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#NMTOKEN
  17. NMTOKENS: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#NMTOKENS
  18. NOTATION: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#NOTATIONNOTATION cannot be used directly in a schema; rather a type
  19. Name: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#Name
  20. QName: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#QName
  21. anyURI: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#anyURI
  22. base64Binary: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#base64Binary
  23. boolean: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#boolean
  24. byte: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#byte
  25. date: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#date
  26. dateTime: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#dateTime
  27. dateTimeStamp: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#dateTimeStamp
  28. dayTimeDuration: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#dayTimeDuration
  29. decimal: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#decimal
  30. double: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#double
  31. duration: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#duration
  32. float: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#float
  33. gDay: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#gDay
  34. gMonth: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#gMonth
  35. gMonthDay: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#gMonthDay
  36. gYear: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#gYear
  37. gYearMonth: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#gYearMonth
  38. hexBinary: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#binary
  39. int: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#int
  40. integer: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#integer
  41. language: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#language
  42. long: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#long
  43. negativeInteger: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#negativeInteger
  44. nonNegativeInteger: (
  45. URIRef # see: http://www.w3.org/TR/xmlschema11-2/#nonNegativeInteger
  46. )
  47. nonPositiveInteger: (
  48. URIRef # see: http://www.w3.org/TR/xmlschema11-2/#nonPositiveInteger
  49. )
  50. normalizedString: (
  51. URIRef # see: http://www.w3.org/TR/xmlschema11-2/#normalizedString
  52. )
  53. positiveInteger: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#positiveInteger
  54. short: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#short
  55. string: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#string
  56. time: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#time
  57. token: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#token
  58. unsignedByte: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#unsignedByte
  59. unsignedInt: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#unsignedInt
  60. unsignedLong: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#unsignedLong
  61. unsignedShort: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#unsignedShort
  62. yearMonthDuration: (
  63. URIRef # see: http://www.w3.org/TR/xmlschema11-2/#yearMonthDuration
  64. )
  65. # fundamental facets - https://www.w3.org/TR/xmlschema11-2/#rf-fund-facets
  66. ordered: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-ordered
  67. bounded: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-bounded
  68. cardinality: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-cardinality
  69. numeric: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-numeric
  70. # constraining facets - https://www.w3.org/TR/xmlschema11-2/#rf-facets
  71. length: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-length
  72. minLength: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-minLength
  73. maxLength: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-maxLength
  74. pattern: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-pattern
  75. enumeration: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-enumeration
  76. whiteSpace: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-whiteSpace
  77. maxExclusive: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-maxExclusive
  78. maxInclusive: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-maxInclusive
  79. minExclusive: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-minExclusive
  80. minInclusive: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-minInclusive
  81. totalDigits: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-totalDigits
  82. fractionDigits: URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-fractionDigits
  83. Assertions: URIRef # see: https://www.w3.org/TR/xmlschema11-2/#rf-assertions
  84. explicitTimezone: (
  85. URIRef # see: http://www.w3.org/TR/xmlschema11-2/#rf-explicitTimezone
  86. )
  87. # The Seven-property Model - https://www.w3.org/TR/xmlschema11-2/#theSevenPropertyModel
  88. year: URIRef # see: https://www.w3.org/TR/xmlschema11-2/#vp-dt-http://www.w3.org/TR/xmlschema11-2/#rf-whiteSpace
  89. month: URIRef # see: https://www.w3.org/TR/xmlschema11-2/#vp-dt-month
  90. day: URIRef # see: https://www.w3.org/TR/xmlschema11-2/#vp-dt-day
  91. hour: URIRef # see: https://www.w3.org/TR/xmlschema11-2/#vp-dt-hour
  92. minute: URIRef # see: https://www.w3.org/TR/xmlschema11-2/#vp-dt-minute
  93. second: URIRef # see: https://www.w3.org/TR/xmlschema11-2/#vp-dt-second
  94. timezoneOffset: URIRef # see: https://www.w3.org/TR/xmlschema11-2/#vp-dt-timezone