View Schema

View PHR Schema

note.xsd

<?xml version="1.0" encoding="UTF-8"?>
 
<schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://indivo.org/xml/phr/note"
    xmlns:note="http://indivo.org/xml/phr/note"
    xmlns:type="http://indivo.org/xml/phr/types"
    xmlns:phd="http://indivo.org/xml/phr/personalHealthData"
    xmlns="http://www.w3.org/2001/XMLSchema"
    elementFormDefault="unqualified">
 
    <import namespace="http://indivo.org/xml/phr/types" 
    schemaLocation="http://indivo.org/xml/phr/types.xsd"/>
        
    <import namespace="http://indivo.org/xml/phr/personalHealthData" 
    schemaLocation="http://indivo.org/xml/phr/personalHealthData.xsd"/>
 
    <element name="Note" type="note:NoteType"/>
    <complexType name="NoteType">
        <complexContent>
            <extension base="phd:PersonalHealthDataType">
                <sequence>
                    <element name="Type" type="type:CodedValueType" minOccurs="1"/>
                    <element name="Category" type="type:CodedValueType" minOccurs="1"/>
                    <element name="Setting" type="type:CodedValueType" minOccurs="1"/>
                    <element name="Specialty" type="string" minOccurs="0"/>
                    <element name="Text" type="string" minOccurs="0"/>
                    <element name="PrimaryProviderEndorsement" type="type:EndorsementType" minOccurs="0"/>
                    <element name="SecondaryProviderEndorsement" type="type:EndorsementType" minOccurs="0"/>
                </sequence>
            </extension>
        </complexContent>
    </complexType>
    
</schema>