View Schema

View PHR Schema

record.xsd

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://indivo.org/xml/phr/record"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:rec="http://indivo.org/xml/phr/record"
    xmlns:doc="http://indivo.org/xml/phr/document"
    xmlns="http://www.w3.org/2001/XMLSchema"
    elementFormDefault="unqualified">
 
    <import namespace="http://indivo.org/xml/phr/document" 
    schemaLocation="http://indivo.org/xml/phr/document.xsd"/>
            
    <element name="IndivoRecord" type="rec:IndivoRecordType"/>
    <complexType name="IndivoRecordType">
        <sequence>
            <element name="CreationDateTime" type="dateTime" minOccurs="0"/>
            <element name="LastModifiedTime" type="dateTime" minOccurs="0"/>
            <element ref="doc:IndivoDocument" minOccurs="0" maxOccurs="unbounded"/>
        </sequence>
    </complexType>
</xsd:schema>