Sha256: b57718ec3fccaa89d0c31f9fe35379df9760bdf3ff8b0f2124b45d6a2dbe1256
Contents?: true
Size: 948 Bytes
Versions: 19
Compression:
Stored size: 948 Bytes
Contents
# # relax ng schema in compact syntax; this cannot be used within libxml but # was used to write the schema as compact syntax makes it easier to handle. # relax ng schema in xml syntax was created using trang. # namespace xsi = "http://www.w3.org/2001/XMLSchema-instance" start = shiporderType shiporderType = element shiporder { attribute orderid { text }, attribute xsi:noNamespaceSchemaLocation { text }, orderperson, shipto, item* } orderperson = element orderperson { text } shipto = element shipto { name, address, city, country } name = element name { text } address = element address { text } city = element city { text } country = element country { text } item = element item { title, note?, quantity, price } title = element title { text } note = element note { text } quantity = element quantity { text } price = element price { text }
Version data entries
19 entries across 19 versions & 1 rubygems