source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/NhincAuditLogDteEJB/src/conf/xml-resources/web-services/NhincAuditLogDTE/schemas/docs.oasis-open.org/wsn/t-1.xsd@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 8.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
4OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification, can be obtained from the OASIS Executive Director.
5
6OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director.
7
8Copyright (C) OASIS Open (2004-2006). All Rights Reserved.
9
10This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
11
12The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns.
13
14This document and the information contained herein is provided on an "AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
15
16-->
17
18
19<xsd:schema
20 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
21 xmlns:wstop = "http://docs.oasis-open.org/wsn/t-1"
22 targetNamespace = "http://docs.oasis-open.org/wsn/t-1"
23 elementFormDefault="qualified" attributeFormDefault="unqualified">
24
25<!-- =============== utility type definitions ==================== -->
26 <xsd:complexType name="Documentation" mixed="true">
27 <xsd:sequence>
28 <xsd:any processContents="lax" minOccurs="0"
29 maxOccurs="unbounded" namespace="##any"/>
30 </xsd:sequence>
31 </xsd:complexType>
32
33 <xsd:complexType name="ExtensibleDocumented" abstract="true"
34 mixed="false">
35 <xsd:sequence>
36 <xsd:element name="documentation" type="wstop:Documentation"
37 minOccurs="0" />
38 </xsd:sequence>
39 <xsd:anyAttribute namespace="##other" processContents="lax" />
40</xsd:complexType>
41
42<xsd:complexType name="QueryExpressionType" mixed="true">
43 <xsd:sequence>
44 <xsd:any minOccurs="0" maxOccurs="1" processContents="lax" />
45 </xsd:sequence>
46 <xsd:attribute name="Dialect" type="xsd:anyURI" use="required"/>
47</xsd:complexType>
48
49<!-- ================== Topic-Namespace Related ================ -->
50 <xsd:complexType name="TopicNamespaceType">
51 <xsd:complexContent>
52 <xsd:extension base="wstop:ExtensibleDocumented">
53 <xsd:sequence>
54 <xsd:element name="Topic"
55 minOccurs="0" maxOccurs="unbounded">
56 <xsd:complexType>
57 <xsd:complexContent>
58 <xsd:extension base="wstop:TopicType">
59 <xsd:attribute name="parent" type="wstop:ConcreteTopicExpression" />
60 </xsd:extension>
61 </xsd:complexContent>
62 </xsd:complexType>
63 </xsd:element>
64 <xsd:any namespace="##other"
65 minOccurs="0" maxOccurs="unbounded"
66 processContents="lax"/>
67 </xsd:sequence>
68 <xsd:attribute name="name" type="xsd:NCName"/>
69 <xsd:attribute name="targetNamespace" type="xsd:anyURI"
70 use="required"/>
71 <xsd:attribute name="final" type="xsd:boolean"
72 default="false"/>
73 </xsd:extension>
74 </xsd:complexContent>
75 </xsd:complexType>
76
77 <xsd:element name="TopicNamespace" type="wstop:TopicNamespaceType">
78 <xsd:unique name="rootTopicUniqueness">
79 <xsd:selector xpath="wstop:Topic"/>
80 <xsd:field xpath="@name"/>
81 </xsd:unique>
82 </xsd:element>
83
84 <xsd:attribute name="topicNamespaceLocation" type="xsd:anyURI"/>
85
86
87
88<!-- ===================== Topic Related ========================= -->
89
90 <xsd:complexType name="TopicType">
91 <xsd:complexContent>
92 <xsd:extension base="wstop:ExtensibleDocumented">
93 <xsd:sequence>
94 <xsd:element name="MessagePattern"
95 type="wstop:QueryExpressionType"
96 minOccurs="0" maxOccurs="1" />
97 <xsd:element name="Topic" type="wstop:TopicType"
98 minOccurs="0" maxOccurs="unbounded">
99 <xsd:unique name="childTopicUniqueness">
100 <xsd:selector xpath="wstop:topic"/>
101 <xsd:field xpath="@name"/>
102 </xsd:unique>
103 </xsd:element>
104 <xsd:any namespace="##other" minOccurs="0"
105 maxOccurs="unbounded"/>
106 </xsd:sequence>
107 <xsd:attribute name="name" use="required" type="xsd:NCName"/>
108 <xsd:attribute name="messageTypes">
109 <xsd:simpleType>
110 <xsd:list itemType="xsd:QName"/>
111 </xsd:simpleType>
112 </xsd:attribute>
113 <xsd:attribute name="final" type="xsd:boolean"
114 default="false"/>
115 </xsd:extension>
116 </xsd:complexContent>
117 </xsd:complexType>
118
119<!-- ================ Topic Set Related =================== -->
120
121 <xsd:complexType name="TopicSetType">
122 <xsd:complexContent>
123 <xsd:extension base="wstop:ExtensibleDocumented">
124 <xsd:sequence>
125 <xsd:any namespace="##other"
126 minOccurs="0" maxOccurs="unbounded"
127 processContents="lax"/>
128 </xsd:sequence>
129 </xsd:extension>
130 </xsd:complexContent>
131 </xsd:complexType>
132
133 <xsd:element name="TopicSet" type="wstop:TopicSetType"/>
134<xsd:attribute name="topic" type="xsd:boolean" default="false"/>
135
136<!-- ================ Topic Expression Related =================== -->
137
138 <xsd:simpleType name="FullTopicExpression">
139 <xsd:restriction base="xsd:token">
140 <xsd:annotation>
141 <xsd:documentation>
142 TopicPathExpression ::= TopicPath ( '|' TopicPath )*
143 TopicPath ::= RootTopic ChildTopicExpression*
144 RootTopic ::= NamespacePrefix? ('//')? (NCName | '*')
145 NamespacePrefix ::= NCName ':'
146 ChildTopicExpression ::= '/' '/'? (QName | NCName | '*'| '.')
147
148 </xsd:documentation>
149 </xsd:annotation>
150 <xsd:pattern value=
151 "([\i-[:]][\c-[:]]*:)?(//)?([\i-[:]][\c-[:]]*|\*)((/|//)(([\i-[:]][\c-[:]]*:)?[\i-[:]][\c-[:]]*|\*|[.]))*(\|([\i-[:]][\c-[:]]*:)?(//)?([\i-[:]][\c-[:]]*|\*)((/|//)(([\i-[:]][\c-[:]]*:)?[\i-[:]][\c-[:]]*|\*|[.]))*)*">
152 </xsd:pattern>
153 </xsd:restriction>
154 </xsd:simpleType>
155
156 <xsd:simpleType name="ConcreteTopicExpression">
157 <xsd:restriction base="xsd:token">
158 <xsd:annotation>
159 <xsd:documentation>
160 The pattern allows strings matching the following EBNF:
161 ConcreteTopicPath ::= RootTopic ChildTopic*
162 RootTopic ::= QName
163 ChildTopic ::= '/' (QName | NCName)
164
165 </xsd:documentation>
166 </xsd:annotation>
167 <xsd:pattern value=
168"(([\i-[:]][\c-[:]]*:)?[\i-[:]][\c-[:]]*)(/([\i-[:]][\c-[:]]*:)?[\i-[:]][\c-[:]]*)*" >
169 </xsd:pattern>
170 </xsd:restriction>
171 </xsd:simpleType>
172
173 <xsd:simpleType name="SimpleTopicExpression">
174 <xsd:restriction base="xsd:QName">
175 <xsd:annotation>
176 <xsd:documentation>
177 The pattern allows strings matching the following EBNF:
178 RootTopic ::= QName
179
180 </xsd:documentation>
181 </xsd:annotation>
182 </xsd:restriction>
183 </xsd:simpleType>
184
185</xsd:schema>
Note: See TracBrowser for help on using the repository browser.