Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: schema 2022 09 #441

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
4 changes: 2 additions & 2 deletions schema/data.xsd → schema/2020-06/data.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
xmlns="http://tokenscript.org/2020/06/tokenscript"
elementFormDefault="qualified">
<xs:import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="xml.xsd"/>
schemaLocation="../common/xml.xsd"/>
<xs:complexType mixed="true" name="variable">
<xs:attribute name="ref" type="xs:NCName"/>
<xs:attribute name="local-ref" type="xs:NCName"/>
</xs:complexType>
<!-- Importing XML namespace for xml:lang and xml:id -->
<xs:element name="data">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="bool" type="variable"/>
<xs:element name="uint8" type="variable"/>
<xs:element name="uint16" type="variable"/>
Expand Down
File renamed without changes.
12 changes: 5 additions & 7 deletions schema/tokenscript.xsd → schema/2020-06/tokenscript.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@

<!-- Importing XML namespace for xml:lang and xml:id -->
<import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="xml.xsd"/>
schemaLocation="../common/xml.xsd"/>

<!-- Importing XML Signature namespace. Schema is from
http://www.w3.org/TR/2008/REC-xmldsig-core-20080610/xmldsig-core-schema.xsd
-->
<import namespace="http://www.w3.org/2000/09/xmldsig#"
schemaLocation="xmldsig-core-schema.xsd"/>
schemaLocation="../common/xmldsig-core-schema.xsd"/>

<!-- Importing XHTML namespace. use xhtml1-strict.xsd to get xhtml:Block -->
<import namespace="http://www.w3.org/1999/xhtml"
schemaLocation="xhtml1-strict.xsd"/>
schemaLocation="../common/xhtml1-strict.xsd"/>

<import namespace="urn:ietf:params:xml:ns:asnx"
schemaLocation="asnx.xsd"/>
Expand Down Expand Up @@ -52,7 +52,7 @@
</sequence>
<attribute name="custodian" type="boolean" default="false"/>
<attribute name="name" type="NCName" use="required"/>
<!-- commented out thanks to issue
<!-- commented out thanks to issue
<assert test="count(ts:attribute[string(@distinct) = 'true']) le 1"/>
<assert test="if(not(ts:origins)) then count(ts:attribute[string(@distinct) = 'true']) = 1 else true()"/>
-->
Expand Down Expand Up @@ -182,9 +182,7 @@
<element name="include" type="NCName"/>
<complexType name="view">
<sequence>
<element minOccurs="0" maxOccurs="unbounded" ref="xhtml:style"/>
<element minOccurs="0" maxOccurs="unbounded" ref="xhtml:script"/>
<element minOccurs="0" ref="xhtml:body"/>
<any namespace="http://www.w3.org/1999/xhtml" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute ref="xml:lang"/>
</complexType>
Expand Down
72 changes: 72 additions & 0 deletions schema/2022-09/asnx.xsd
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="utf-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:ethereum="urn:ethereum:constantinople"
xmlns:asnx="urn:ietf:params:xml:ns:asnx"
targetNamespace="urn:ietf:params:xml:ns:asnx"
elementFormDefault="unqualified">

<import namespace="urn:ethereum:constantinople"
schemaLocation="ethereum.xsd"/>

<element name="module">
<complexType>
<sequence>
<element name="namedType" maxOccurs="unbounded" type="asnx:namedType"/>
</sequence>
<attribute name="name" type="NCName"/>
</complexType>
</element>

<complexType name="namedType">
<choice>
<element name="element" type="asnx:element"/>
<element name="type" type="asnx:type">
</element>
</choice>
<attribute name="name" type="NCName"/>
</complexType>

<complexType name="type">
<choice>
<element name="sequence" type="asnx:container"/>
<element name="enumerated" type="asnx:enumerated"/>
</choice>
</complexType>

<complexType name="enumerated">
<sequence>
<element name="enumeration" maxOccurs="unbounded">
<complexType>
<attribute name="name" type="NCName"/>
<attribute name="number" type="integer"/>
</complexType>
</element>
</sequence>
</complexType>

<complexType name="container">
<choice maxOccurs="unbounded">
<element name="element" type="asnx:element"/>
</choice>
</complexType>

<complexType name="element">
<sequence>
<element minOccurs="0" name="type" type="asnx:type"/>
</sequence>
<attribute name="name" type="NCName"/>
<attribute name="type">
<simpleType>
<restriction base="string">
<enumeration value="asnx:UTF8String"/>
<enumeration value="asnx:INTEGER"/>
<enumeration value="asnx:BOOLEAN"/>
<enumeration value="asnx:OCTET-STRING"/>
<enumeration value="asnx:UTCTime"/>
</restriction>
</simpleType>
</attribute>
<attribute ref="ethereum:type"/>
<attribute ref="ethereum:indexed"/>
</complexType>
</schema>
156 changes: 156 additions & 0 deletions schema/2022-09/data.xsd
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://tokenscript.org/2022/09/tokenscript"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"
xmlns="http://tokenscript.org/2022/09/tokenscript"
elementFormDefault="qualified">
<xs:import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="../common/xml.xsd"/>
<xs:complexType mixed="true" name="variable">
<xs:attribute name="ref" type="xs:NCName"/>
<xs:attribute name="local-ref" type="xs:NCName"/>
</xs:complexType>
<!-- Importing XML namespace for xml:lang and xml:id -->
<xs:element name="data">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="bool" type="variable"/>
<xs:element name="uint8" type="variable"/>
<xs:element name="uint16" type="variable"/>
<xs:element name="uint24" type="variable"/>
<xs:element name="uint32" type="variable"/>
<xs:element name="uint40" type="variable"/>
<xs:element name="uint48" type="variable"/>
<xs:element name="uint56" type="variable"/>
<xs:element name="uint64" type="variable"/>
<xs:element name="uint72" type="variable"/>
<xs:element name="uint80" type="variable"/>
<xs:element name="uint88" type="variable"/>
<xs:element name="uint96" type="variable"/>
<xs:element name="uint104" type="variable"/>
<xs:element name="uint112" type="variable"/>
<xs:element name="uint120" type="variable"/>
<xs:element name="uint128" type="variable"/>
<xs:element name="uint136" type="variable"/>
<xs:element name="uint144" type="variable"/>
<xs:element name="uint152" type="variable"/>
<xs:element name="uint160" type="variable"/>
<xs:element name="uint168" type="variable"/>
<xs:element name="uint176" type="variable"/>
<xs:element name="uint184" type="variable"/>
<xs:element name="uint192" type="variable"/>
<xs:element name="uint200" type="variable"/>
<xs:element name="uint208" type="variable"/>
<xs:element name="uint216" type="variable"/>
<xs:element name="uint224" type="variable"/>
<xs:element name="uint232" type="variable"/>
<xs:element name="uint240" type="variable"/>
<xs:element name="uint248" type="variable"/>
<xs:element name="uint256" type="variable"/>
<xs:element name="int8" type="variable"/>
<xs:element name="int16" type="variable"/>
<xs:element name="int24" type="variable"/>
<xs:element name="int32" type="variable"/>
<xs:element name="int40" type="variable"/>
<xs:element name="int48" type="variable"/>
<xs:element name="int56" type="variable"/>
<xs:element name="int64" type="variable"/>
<xs:element name="int72" type="variable"/>
<xs:element name="int80" type="variable"/>
<xs:element name="int88" type="variable"/>
<xs:element name="int96" type="variable"/>
<xs:element name="int104" type="variable"/>
<xs:element name="int112" type="variable"/>
<xs:element name="int120" type="variable"/>
<xs:element name="int128" type="variable"/>
<xs:element name="int136" type="variable"/>
<xs:element name="int144" type="variable"/>
<xs:element name="int152" type="variable"/>
<xs:element name="int160" type="variable"/>
<xs:element name="int168" type="variable"/>
<xs:element name="int176" type="variable"/>
<xs:element name="int184" type="variable"/>
<xs:element name="int192" type="variable"/>
<xs:element name="int200" type="variable"/>
<xs:element name="int208" type="variable"/>
<xs:element name="int216" type="variable"/>
<xs:element name="int224" type="variable"/>
<xs:element name="int232" type="variable"/>
<xs:element name="int240" type="variable"/>
<xs:element name="int248" type="variable"/>
<xs:element name="int256" type="variable"/>
<xs:element name="string" type="variable"/>
<xs:element name="bytes" type="variable"/>
<xs:element name="byte" type="variable"/>
<xs:element name="bytes1" type="variable"/>
<xs:element name="bytes2" type="variable"/>
<xs:element name="bytes3" type="variable"/>
<xs:element name="bytes4" type="variable"/>
<xs:element name="bytes5" type="variable"/>
<xs:element name="bytes6" type="variable"/>
<xs:element name="bytes7" type="variable"/>
<xs:element name="bytes8" type="variable"/>
<xs:element name="bytes9" type="variable"/>
<xs:element name="bytes10" type="variable"/>
<xs:element name="bytes11" type="variable"/>
<xs:element name="bytes12" type="variable"/>
<xs:element name="bytes13" type="variable"/>
<xs:element name="bytes14" type="variable"/>
<xs:element name="bytes15" type="variable"/>
<xs:element name="bytes16" type="variable"/>
<xs:element name="bytes17" type="variable"/>
<xs:element name="bytes18" type="variable"/>
<xs:element name="bytes19" type="variable"/>
<xs:element name="bytes20" type="variable"/>
<xs:element name="bytes21" type="variable"/>
<xs:element name="bytes22" type="variable"/>
<xs:element name="bytes23" type="variable"/>
<xs:element name="bytes24" type="variable"/>
<xs:element name="bytes25" type="variable"/>
<xs:element name="bytes26" type="variable"/>
<xs:element name="bytes27" type="variable"/>
<xs:element name="bytes28" type="variable"/>
<xs:element name="bytes29" type="variable"/>
<xs:element name="bytes30" type="variable"/>
<xs:element name="bytes31" type="variable"/>
<xs:element name="bytes32" type="variable"/>
<xs:element name="address" type="variable"/>
<xs:element name="struct" type="variable"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:simpleType name="as">
<xs:restriction base="xs:NCName">
<xs:enumeration value="uint"/>
<xs:enumeration value="address"/>
<!-- int is not allowed here, because "as" is not for typing but for transforming -->
<xs:enumeration value="utf8"/>
<xs:enumeration value="e18"/>
<xs:enumeration value="e8"/>
<xs:enumeration value="e6"/>
<xs:enumeration value="e4"/>
<xs:enumeration value="e2"/>
<xs:enumeration value="bool"/>
<xs:enumeration value="bytes"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="mapping">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="option">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="value">
<xs:complexType mixed="true">
<xs:attribute ref="xml:lang"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="key" use="required" type="xs:string"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
Loading