Name: Order

The order type, cool as hell

XML Example:
<Order
 attribute="xsd:datetime"
 attribute-2="xsd:long">
  <attachment>xsd:IDREF[Attachment]</attachment>
  <key>xsd:string</key>
  <name>xsd:string</name>
  <object-list>
   xsd:list[<object>xsd:any</object>]
  </object-list>
  <overridden-name>xsd:int</overridden-name>
  <status>Open | Closed</status>
  xsd:list[<strings>xsd:string</strings>]
  <tag-list>
   xsd:list[<tag>Tag</tag>]
  </tag-list>
 Comment
</Order>
JSON Example:
{'Order':
 {
  '@attribute': Date,
  '@attribute-2': Number,
   'attachment': Attachment /* IDREF */,
   'key': String,
   'name': String,
   'object-list': [Object],
   'overridden-name': Number,
   'status': 'Open' | 'Closed',
   'strings': [String],
   'tag-list': [Tag],
   Comment,
 }
}


Elements
NameTypeDescription
attachmentxsd:IDREF[Attachment] 
keyxsd:stringThe order key
namexsd:stringThe name of the order
object (wrapped by object-list)xsd:list[xsd:any] 
overridden-namexsd:intThis has an overridden name
statusOpen | Closed 
stringsxsd:list[xsd:string] 
tag (wrapped by tag-list)xsd:list[Tag] 

Attributes
NameTypeDescription
attributexsd:datetimeOur cool attribute
attribute-2xsd:longOverridden name attribute

Value
TypeDescription
CommentOur value