Sha256: 1a62a4ea13e3b131c71d2db6d5a26897a0fd03f79551e25ad99c034d909b9ae0
Contents?: true
Size: 1.42 KB
Versions: 76
Compression:
Stored size: 1.42 KB
Contents
module RDF ## # XML Schema (XSD) vocabulary. # # @see http://www.w3.org/XML/Schema # @see http://www.w3.org/TR/xmlschema-2/#built-in-datatypes class XSD < Vocabulary("http://www.w3.org/2001/XMLSchema#") # XML Schema built-in primitive types # @see http://www.w3.org/TR/xmlschema-2/#built-in-primitive-datatypes property :NOTATION property :QName property :anyURI property :base64Binary property :boolean property :date property :dateTime property :decimal property :double property :duration property :float property :gDay property :gMonth property :gMonthDay property :gYear property :gYearMonth property :hexBinary property :string property :time # XML Schema built-in derived types # @see http://www.w3.org/TR/xmlschema-2/#built-in-derived property :ENTITIES property :ENTITY property :ID property :IDREF property :IDREFS property :NCName property :NMTOKEN property :NMTOKENS property :Name property :byte property :int property :integer property :language property :long property :negativeInteger property :nonNegativeInteger property :nonPositiveInteger property :normalizedString property :positiveInteger property :short property :token property :unsignedByte property :unsignedInt property :unsignedLong property :unsignedShort end end
Version data entries
76 entries across 76 versions & 4 rubygems