forked from hl7-fhir/fhir-dstu1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtombstone.xsd
17 lines (17 loc) · 870 Bytes
/
tombstone.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<xs:schema targetNamespace="http://purl.org/atompub/tombstones/1.0" elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:at="http://purl.org/atompub/tombstones/1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="deleted-entry">
<xs:complexType>
<xs:sequence>
<xs:element name="link" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:attribute name="rel" fixed="self"/>
<xs:attribute name="href" type="xs:anyURI" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="ref" type="xs:anyURI" use="required"/>
<xs:attribute name="when" type="xs:dateTime" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>