-
Notifications
You must be signed in to change notification settings - Fork 7
/
workflow.xsd
32 lines (32 loc) · 1.17 KB
/
workflow.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xsd:schema xmlns="http://www.islandora.ca" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.islandora.ca">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Islandora Workflow XSD
</xsd:documentation>
</xsd:annotation>
<xsd:element name="workflow">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="notes">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="note" >
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:element name="subject" type="xsd:string"/>
<xsd:element name="body" type="xsd:string"/>
</xsd:sequence>
<xsd:attribute name="from" type="xsd:string"/>
<xsd:attribute name="timestamp" type="xsd:dateTime"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="last_modified_by" type='xsd:string'/>
<xsd:element name="when_last_modified" type='xsd:dateTime'/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>