Created
November 9, 2017 13:54
-
-
Save mresetar/34e3ada65cc23c077dfef0833e3c2f78 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xs:schema attributeFormDefault="unqualified" targetNamespace="http://www.example.org/vjezba2" | |
elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<xs:element name="recipe"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element type="xs:string" name="title" /> | |
<xs:element name="ingredient" maxOccurs="unbounded" | |
minOccurs="0"> | |
<xs:complexType> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:byte" name="amount" use="optional" /> | |
<xs:attribute type="xs:string" name="unit" use="optional" /> | |
<xs:attribute type="xs:string" name="state" use="optional" /> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
</xs:element> | |
<xs:element name="instructions"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element type="xs:string" name="step" maxOccurs="unbounded" | |
minOccurs="0" /> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="name" /> | |
<xs:attribute type="xs:string" name="prep_time" /> | |
<xs:attribute type="xs:string" name="cook_time" /> | |
</xs:complexType> | |
</xs:element> | |
</xs:schema> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment