Skip Headers
Oracle® Health Sciences Information Gateway Secure Health Email Installation and Configuration Guide
Release 1.2

E22884-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
PDF · Mobi · ePub

F XDS Registry Request XML Schema Reference

This appendix provides a reference to the XDS Registry Request XML Schema and an example of an XDS registry request.

This appendix includes the following section:

F.1 XDS Registry Request XML Schema

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://hsgbu.oracle.com/direct/XdsRegistry/1" xmlns:tns="http://hsgbu.oracle.com/direct/XdsRegistry/1" elementFormDefault="qualified" attributeFormDefault="unqualified">
 <xs:element name="XdsRegistryRequest">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="XdsSubmissionSets" type="tns:XdsSubmissionSetsType" maxOccurs="1" />
   </xs:sequence>
  </xs:complexType>
 </xs:element>
 
 <xs:complexType name="XdsSubmissionSetsType">
  <xs:sequence>
   <xs:element name="XdsSubmissionSet" type="tns:XdsSubmissionSetType" maxOccurs="unbounded" />
  </xs:sequence>
 </xs:complexType>
 
 <xs:complexType name="XdsSubmissionSetType">
  <xs:sequence>
   <xs:element name="XdsDocumentEntry" type="tns:XdsDocumentEntryType" minOccurs="0" maxOccurs="unbounded" />
  </xs:sequence>
  <xs:attribute name="id" type="tns:OID" use="required" />
  <xs:attribute name="recommendedRegistry" type="xs:string" use="optional" />
 </xs:complexType>
 
 <xs:complexType name="XdsDocumentEntryType">
  <xs:attribute name="id" type="tns:OID" use="required" />
 </xs:complexType>
 
 <xs:simpleType name="OID">
  <xs:restriction base="xs:string">
   <xs:whiteSpace value="collapse"/>
  </xs:restriction>
 </xs:simpleType>
</xs:schema>

Example of XDS Registry Request

<?xml version="1.0" encoding="UTF-8"?>
<XdsRegistryRequest xmlns="http://hsgbu.oracle.com/direct/XdsRegistry/1">
 <XdsSubmissionSets>
  <XdsSubmissionSet id="1.3.6.1.4.1.21367.2100.1.2.3.1305228382703.7569" />
 </XdsSubmissionSets>
</XdsRegistryRequest>