View Schema

View PHR Schema

procedure.xsd

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://indivo.org/xml/phr/procedure"
    xmlns:con="http://indivo.org/xml/phr/contact"
    xmlns:proc="http://indivo.org/xml/phr/procedure"
    xmlns:phd="http://indivo.org/xml/phr/personalHealthData"
    xmlns:type="http://indivo.org/xml/phr/types"
    xmlns="http://www.w3.org/2001/XMLSchema"
    elementFormDefault="unqualified">
 
    <import namespace="http://indivo.org/xml/phr/personalHealthData" 
    schemaLocation="http://indivo.org/xml/phr/personalHealthData.xsd"/>
    
    <import namespace="http://indivo.org/xml/phr/contact" 
    schemaLocation="http://indivo.org/xml/phr/contact.xsd"/>
 
    <import namespace="http://indivo.org/xml/phr/types" 
    schemaLocation="http://indivo.org/xml/phr/types.xsd"/>
    
    <element name="Procedure" type="proc:ProcedureType"/>
    <complexType name="ProcedureType">
        <complexContent>
            <extension base="phd:PersonalHealthDataType">
                <sequence>
                    <element name="Name" type="string" minOccurs="0"/>
                    <element name="PrimaryProvider" type="con:ConciseContactInformationType" minOccurs="0"/>
                    <element name="Location" type="con:ConciseContactInformationType" minOccurs="0"/>            
                    <element name="SecondaryProvider" type="con:ConciseContactInformationType" minOccurs="0"/>
                    <element name="Code" type="type:CodedValueType" minOccurs="0" maxOccurs="unbounded"/>
                </sequence>
            </extension>
        </complexContent>
    </complexType>
</schema>