Version 6.3 by Helena K. on 2025/07/03 12:22

Show last authors
1 {{box title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 = 1 Introduction =
6
7 The common namespace defines a collection of constructs that are reused across the various [[components>>doc:sdmx:Glossary.Component.WebHome]] of [[SDMX>>doc:sdmx:Glossary.Statistical data and metadata exchange.WebHome]]. Most important of these are the referencing mechanism. The goal of the reference construct was to define a generic structure that could be processed uniformly regardless of the context where the reference was used. But it was also important that references be required to be complete whenever possible.
8
9 Any object can be referenced either explicitly with a URN or by a set of complete reference fields. To meet the previously stated requirements, and very general mechanism was created based on the URN structure of [[SDMX>>doc:sdmx:Glossary.Statistical data and metadata exchange.WebHome]] objects for these reference fields.
10
11 There was also a requirement that the references be able to be refined to meet particular needs outside of the common namespace. An example of this is in the metadata structure specific schemas. It is a requirement that if a target object is specified as having to come from a particular scheme, that a type based on the reference structure be created that enforced the requirement.
12
13 Typically, this would not have been an issues as all of the [[components>>doc:sdmx:Glossary.Component.WebHome]] which make up the references are of atomic types, and therefore can be expressed as XML [[attributes>>doc:sdmx:Glossary.Attribute.WebHome]] which are easily refined and restricted since the XML Schema design principles in [[SDMX>>doc:sdmx:Glossary.Statistical data and metadata exchange.WebHome]] always treats [[attributes>>doc:sdmx:Glossary.Attribute.WebHome]] as unqualified.
14
15 However, the requirement to allow both a URN and/or a complete set of reference field necessitate that these properties be contained in elements. The fact that they are elements typically would mean that the only way a refinement outside of the namespace could happen was if the element were global and allowed for substitutions. This however would mean that every distinct type of referenced object would have a unique set of elements. This moved away from the requirement that the structure be easy to process regardless of context.
16
17 The solution to this problem was to deviate from the normal [[SDMX>>doc:sdmx:Glossary.Statistical data and metadata exchange.WebHome]] XML Schema design principle of always using qualified elements and allowing for these to be unqualified. Doing so allows other namespace to derive from these types and place further restrictions on what can be referenced. The deviation from this principle was justified in that it met all of the requirements and was not deemed to major of a shift since these properties normally would have been expressed as unqualified [[attributes>>doc:sdmx:Glossary.Attribute.WebHome]] if it weren't for the complete reference requirement.
18
19 == 2 Schema Documentation ==
20
21 == 2.1 Common Namespace ==
22
23 http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
24
25 === 2.1.1 Summary ===
26
27 Referenced Namespaces:
28
29 (% style="width:630.294px" %)
30 |(% style="width:391px" %)**Namespace**|(% style="width:236px" %)**Prefix**
31 |(% style="width:391px" %)http:~/~/www.w3.org/1999/xhtml|(% style="width:236px" %)xhtml
32 |(% style="width:391px" %)http:~/~/www.w3.org/2001/XMLSchema|(% style="width:236px" %)xs
33
34 Contents:
35 6 Global Elements
36 30 Complex Types
37 206 Simple Types
38
39 === 2.1.2 Global Elements ===
40
41 **Name (TextType):** Name is a reusable element, used for providing a human-readable name for an object.
42
43 **Description (TextType):** Description is a reusable element, used for providing a longer human-readable description of an object.
44
45 **Text (TextType):** Text is a reusable element, used for providing a language specific text value for general purposes (i.e. not for a name or description).
46
47 **StructuredText (XHTMLType):** StructuredText is a reusable element, used for providing a language specific text value structured as XHTML.
48
49 **Annotations (AnnotationsType):** Annotations is a reusable element the provides for a collection of annotations. It has been made global so that restrictions of types that extend AnnotatableType may reference it.
50
51 **Link (LinkType):** Allows for the linking of other resources to identifiable objects. For example, if there is reference metadata associated with a structure, a link to the meatadata report can be dynamically inserted in the structure metadata.
52
53 === 2.1.3 Complex Types ===
54
55 ***ValueType*:** ValueType is an abstract class that is the basis for any component value that cannot be simply represented as a space-normalized value (e.g. in an XML attribute). Although its content is mixed, it should be restricted so that only character data or the Text or Structured text is used. See StringValueType, IntValueType, ObserverationalTimeValueType, TextValueType, and StructuredTextValueType for details.
56
57 Content:
58 {text} x (Text\* | StructuredText\*)?
59
60 Element Documentation:
61
62 (% style="width:1009.29px" %)
63 |(% style="width:172px" %)**Name**|(% style="width:176px" %)**Type**|(% style="width:659px" %)**Documentation**
64 |(% style="width:172px" %)Text|(% style="width:176px" %)TextType|(% style="width:659px" %)Text is a reusable element, used for providing a language specific text value for general purposes (i.e. not for a name or description).
65 |(% style="width:172px" %)StructuredText|(% style="width:176px" %)XHTMLType|(% style="width:659px" %)StructuredText is a reusable element, used for providing a language specific text value structured as XHTML.
66
67 **BooleanValueType:** BooleanValueType is a refinement of SimpleValueType limiting the content to be a boolean.
68
69 Derivation:
70
71 ValueType (restriction)
72 BooleanValueType
73 Content:
74
75 **StringValueType:** StringValueType is a refinement of SimpleValueType limiting the content to be a string. This can be further refined with facets, patterns, etc.
76
77 Derivation:
78
79 ValueType (restriction)
80 StringValueType
81
82 Content:
83 **IntValueType:** IntValueType is a refinement of SimpleValueType limiting the content to be an integer. This can be further refined ranges, etc.
84
85 Derivation:
86
87 ValueType (restriction)
88 IntValueType
89
90 Content:
91 **DoubleValueType:** DoubleValueType is a refinement of SimpleValueType limiting the content to be a double. This can be further refined ranges, etc.
92
93 Derivation:
94
95 ValueType (restriction)
96 DoubleValueType
97
98 Content:
99 **ObservationalTimePeriodValueType:** ObservationalTimePeriodValueType is a refinement of SimpleValueType limiting the content to be an observational time period.
100
101 Derivation:
102
103 ValueType (restriction)
104 ObservationalTimePeriodValueType
105
106 Content:
107 **TextValueType:** TextValueType is a restriction of ValueType that allows mutliple Text elements to expressed a text value in multiple languages. The content of this should be restricted in its use to only allow a langue code (xml:lang) to be used once within an element of this type.
108
109 Derivation:
110
111 ValueType (restriction)
112 TextValueType
113
114 Content:
115 Text
116
117 Element Documentation:
118
119 (% style="width:1013.29px" %)
120 |**Name**|**Type**|(% style="width:742px" %)**Documentation**
121 |Text|TextType|(% style="width:742px" %)Text is a reusable element, used for providing a language specific text value for general purposes (i.e. not for a name or description).
122
123 **StructuredTextValueType:** StructuredTextValueType is a restriction of ValueType that allows mutliple StructuredText (XHTML mixed content) elements to expressed a text value in multiple languages. The content of this should be restricted in its use to only allow a langue code (xml:lang) to be used once within an element of this type.
124
125 Derivation:
126
127 ValueType (restriction)
128 StructuredTextValueType
129
130 Content:
131 StructuredText
132
133 Element Documentation:
134
135 (% style="width:1000.29px" %)
136 |**Name**|**Type**|(% style="width:536px" %)**Documentation**
137 |StructuredText|XHTMLType|(% style="width:536px" %)StructuredText is a reusable element, used for providing a language specific text value structured as XHTML.
138
139 **TextType:** TextType provides for a set of language-specific alternates to be provided for any human-readable constructs in the instance.
140
141 Derivation:
142
143 xs:anySimpleType (restriction)
144 xs:string (extension)
145 TextType
146
147 Attributes:
148 xml:lang?
149
150 Content:
151 Attribute Documentation:
152
153 (% style="width:1005.29px" %)
154 |**Name**|**Type**|(% style="width:519px" %)**Documentation**
155 |xml:lang (default: en)|xs:language|(% style="width:519px" %)The xml:lang attribute specifies a language code for the text. If not supplied, the default language is assumed to be English.
156
157 **StatusMessageType:** StatusMessageType describes the structure of an error or warning message. A message contains the text of the message, as well as an optional language indicator and an optional code.
158
159 Attributes:
160 code?
161
162 Content:
163 Text+
164
165 Attribute Documentation:
166
167 (% style="width:1010.29px" %)
168 |**Name**|**Type**|(% style="width:867px" %)**Documentation**
169 |code|xs:string|(% style="width:867px" %)The code attribute holds an optional code identifying the underlying error that generated the message. This should be used if parallel language descriptions of the error are supplied, to distinguish which of the multiple error messages are for the same underlying error.
170
171 Element Documentation:
172
173 (% style="width:1015.29px" %)
174 |**Name**|**Type**|(% style="width:542px" %)**Documentation**
175 |Text|TextType|(% style="width:542px" %)Text contains the text of the message, in parallel language values.
176
177 **EmptyType:** EmptyType is an empty complex type for elements where the presence of the tag indicates all that is necessary.
178
179 Content:
180 {Empty}
181
182 **CodedStatusMessageType:** CodedStatusMessageType describes the structure of an error or warning message which required a code.
183
184 Derivation:
185
186 StatusMessageType (restriction)
187 CodedStatusMessageType
188
189 Attributes:
190 code
191
192 Content:
193 Text+
194
195 Attribute Documentation:
196
197 (% style="width:1011.29px" %)
198 |(% style="width:152px" %)**Name**|(% style="width:182px" %)**Type**|(% style="width:675px" %)**Documentation**
199 |(% style="width:152px" %)code|(% style="width:182px" %)xs:string|(% style="width:675px" %)The code attribute holds an optional code identifying the underlying error that generated the message. This should be used if parallel language descriptions of the error are supplied, to distinguish which of the multiple error messages are for the same underlying error.
200
201 Element Documentation:
202
203 (% style="width:1010.29px" %)
204 |(% style="width:150px" %)**Name**|(% style="width:206px" %)**Type**|(% style="width:652px" %)**Documentation**
205 |(% style="width:150px" %)Text|(% style="width:206px" %)TextType|(% style="width:652px" %)Text contains the text of the message, in parallel language values.
206
207 ***AnnotableType*:** AnnotableType is an abstract base type used for all annotable artefacts. Any type that provides for annotations should extend this type.
208
209 Content:
210 Annotations?
211
212 Element Documentation:
213
214 (% style="width:1014.29px" %)
215 |**Name**|**Type**|(% style="width:683px" %)**Documentation**
216 |Annotations|AnnotationsType|(% style="width:683px" %)Annotations is a reusable element the provides for a collection of annotations. It has been made global so that restrictions of types that extend AnnotatableType may reference it.
217
218 **AnnotationsType:** AnnotationsType provides for a list of annotations to be attached to data and structure messages.
219
220 Content:
221 Annotation+
222
223 Element Documentation:
224
225 (% style="width:1019.29px" %)
226 |(% style="width:230px" %)**Name**|(% style="width:222px" %)**Type**|(% style="width:564px" %)**Documentation**
227 |(% style="width:230px" %)Annotation|(% style="width:222px" %)AnnotationType|(% style="width:564px" %)
228
229 **AnnotationType:** AnnotationType provides for non-documentation notes and annotations to be embedded in data and structure messages. It provides optional fields for providing a title, a type description, a URI, and the text of the annotation.
230
231 Attributes:
232 id?
233
234 Content:
235 AnnotationTitle?, AnnotationType?, AnnotationURL*, AnnotationText*, AnnotationValue?
236
237 Attribute Documentation:
238
239 (% style="width:994.294px" %)
240 |**Name**|**Type**|(% style="width:697px" %)**Documentation**
241 |id|xs:string|(% style="width:697px" %)The id attribute provides a non-standard identification of an annotation. It can be used to disambiguate annotations.
242
243 Element Documentation:
244
245 (% style="width:1005.29px" %)
246 |**Name**|**Type**|(% style="width:710px" %)**Documentation**
247 |AnnotationTitle|xs:string|(% style="width:710px" %)AnnotationTitle provides a title for the annotation.
248 |AnnotationType|xs:string|(% style="width:710px" %)AnnotationType is used to distinguish between annotations designed to support various uses. The types are not enumerated, as these can be specified by the user or creator of the annotations. The definitions and use of annotation types should be documented by their creator.
249 |AnnotationURL|AnnotationURLType|(% style="width:710px" %)AnnotationURL is a URI - typically a URL - which points to an external resource which may contain or supplement the annotation. These can be localised by indicating a language for the resource. If a language is not specified, the resource is assumed to not be localised. If a specific behavior is desired, an annotation type should be defined which specifies the use of this field more exactly.
250 |AnnotationText|TextType|(% style="width:710px" %)AnnotationText holds a language-specific string containing the text of the annotation.
251 |AnnotationValue|xs:string|(% style="width:710px" %)AnnotationValue holds a non-localised value for the annotation.
252
253 **AnnotationURLType:** AnnotationURLType defines an external resource. These can indicate localisation by specifying a language for the resource.
254
255 Derivation:
256
257 xs:anySimpleType (restriction)
258 xs:anyURI (extension)
259 AnnotationURLType
260
261 Attributes:
262 xml:lang?
263
264 Content:
265 Attribute Documentation:
266
267 (% style="width:1004.29px" %)
268 |**Name**|**Type**|(% style="width:639px" %)**Documentation**
269 |xml:lang|xs:language|(% style="width:639px" %)Indicates the language of the resources at the URL, if it is localised. If this does not exist, the resource is not localised.
270
271 **LinkType:**
272
273 Attributes:
274 rel, url, urn?, type?
275
276 Content:
277 {Empty}
278
279 Attribute Documentation:
280
281 (% style="width:1000.29px" %)
282 |(% style="width:147px" %)**Name**|(% style="width:249px" %)**Type**|(% style="width:602px" %)**Documentation**
283 |(% style="width:147px" %)rel|(% style="width:249px" %)xs:string|(% style="width:602px" %)The type of object that is being linked to.
284 |(% style="width:147px" %)url|(% style="width:249px" %)xs:anyURI|(% style="width:602px" %)The url of the object being linked.
285 |(% style="width:147px" %)urn|(% style="width:249px" %)xs:anyURI|(% style="width:602px" %)A SDMX registry urn of the object being linked (if applicable).
286 |(% style="width:147px" %)type|(% style="width:249px" %)xs:string|(% style="width:602px" %)The type of link (e.g. PDF, text, HTML, reference metadata).
287
288 **//IdentifiableType//:** IdentifiableType is an abstract base type for all identifiable objects.
289
290 Derivation:
291
292 AnnotableType (extension)
293 IdentifiableType*
294
295 Attributes:
296 id?, urn?, uri?
297
298 Content:
299 Annotations?, Link
300
301 Attribute Documentation:
302
303 (% style="width:1002.29px" %)
304 |**Name**|**Type**|(% style="width:753px" %)**Documentation**
305 |id|IDType|(% style="width:753px" %)The id is the identifier for the object.
306 |urn|UrnType|(% style="width:753px" %)The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).
307 |uri|xs:anyURI|(% style="width:753px" %)The uri attribute holds a URI that contains a link to a resource with additional information about the object, such as a web page. This uri is not a SDMX message.
308
309 Element Documentation:
310
311 (% style="width:1002.29px" %)
312 |**Name**|**Type**|(% style="width:725px" %)**Documentation**
313 |Annotations|AnnotationsType|(% style="width:725px" %)Annotations is a reusable element the provides for a collection of annotations. It has been made global so that restrictions of types that extend AnnotatableType may reference it.
314 |Link|LinkType|(% style="width:725px" %)Allows for the linking of other resources to identifiable objects. For example, if there is reference metadata associated with a structure, a link to the meatadata report can be dynamically inserted in the structure metadata.
315
316 //**NameableType:**// NameableType is an abstract base type for all nameable objects.
317
318 Derivation:
319
320 AnnotableType (extension)
321 IdentifiableType (extension)
322 NameableType*
323
324 Attributes:
325 id?, urn?, uri?
326
327 Content:
328 Annotations?, Link*, Name+, Description
329
330 Attribute Documentation:
331
332 |**Name**|**Type**|**Documentation**
333 |id|IDType|The id is the identifier for the object.
334 |urn|UrnType|The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).
335 |uri|xs:anyURI|The uri attribute holds a URI that contains a link to a resource with additional information about the object, such as a web page. This uri is not a SDMX message.
336
337 Element Documentation:
338
339 |**Name**|**Type**|**Documentation**
340 |Annotations|AnnotationsType|Annotations is a reusable element the provides for a collection of annotations. It has been made global so that restrictions of types that extend AnnotatableType may reference it.
341 |Link|LinkType|Allows for the linking of other resources to identifiable objects. For example, if there is reference metadata associated with a structure, a link to the meatadata report can be dynamically inserted in the structure metadata.
342 |Name|TextType|Name provides for a human-readable name for the object. This may be provided in multiple, parallel language-equivalent forms.
343 |Description|TextType|Description provides for a longer human-readable description of the object. This may be provided in multiple, parallel language-equivalent forms.
344
345 ***VersionableType*:** VersionableType is an abstract base type for all versionable objects.
346
347 Derivation:
348
349 AnnotableType (extension)
350 IdentifiableType (extension)
351 NameableType (extension)
352 VersionableType*
353
354 Attributes:
355 id?, urn?, uri?, version?, validFrom?, validTo?
356
357 Content:
358 Annotations?, Link*, Name+, Description
359
360 Attribute Documentation:
361
362 |**Name**|**Type**|**Documentation**
363 |id|IDType|The id is the identifier for the object.
364 |urn|UrnType|The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).
365 |uri|xs:anyURI|The uri attribute holds a URI that contains a link to a resource with additional information about the object, such as a web page. This uri is not a SDMX message.
366 |version|VersionType|This version attribute holds a version number (see common:VersionType definition for details). If not supplied, artefact is considered to be un-versioned.
367 |validFrom|xs:dateTime|The validFrom attribute provides the inclusive start date for providing supplemental validity information about the version.
368 |validTo|xs:dateTime|The validTo attribute provides the inclusive end date for providing supplemental validity information about the version.
369
370 Element Documentation:
371
372 |**Name**|**Type**|**Documentation**
373 |Annotations|AnnotationsType|Annotations is a reusable element the provides for a collection of annotations. It has been made global so that restrictions of types that extend AnnotatableType may reference it.
374 |Link|LinkType|Allows for the linking of other resources to identifiable objects. For example, if there is reference metadata associated with a structure, a link to the meatadata report can be dynamically inserted in the structure metadata.
375 |Name|TextType|Name provides for a human-readable name for the object. This may be provided in multiple, parallel language-equivalent forms.
376 |Description|TextType|Description provides for a longer human-readable description of the object. This may be provided in multiple, parallel language-equivalent forms.
377
378 ***MaintainableBaseType*:** MaintainableBaseType is an abstract type that only serves the purpose of forming the base for the actual MaintainableType. The purpose of this type is to restrict the VersionableType to require the id attribute.
379
380 Derivation:
381
382 AnnotableType (extension)
383 IdentifiableType (extension)
384 NameableType (extension)
385 VersionableType (restriction)
386 MaintainableBaseType*
387
388 Attributes:
389 id, urn?, uri?, version?, validFrom?, validTo?
390
391 Content:
392 Annotations?, Link*, Name+, Description
393
394 Attribute Documentation:
395
396 |**Name**|**Type**|**Documentation**
397 |id|IDType|The id is the identifier for the object.
398 |urn|MaintainableUrnType|The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).
399 |uri|xs:anyURI|The uri attribute holds a URI that contains a link to a resource with additional information about the object, such as a web page. This uri is not a SDMX message.
400 |version|VersionType|This version attribute holds a version number (see common:VersionType definition for details). If not supplied, artefact is considered to be un-versioned.
401 |validFrom|xs:dateTime|The validFrom attribute provides the inclusive start date for providing supplemental validity information about the version.
402 |validTo|xs:dateTime|The validTo attribute provides the inclusive end date for providing supplemental validity information about the version.
403
404 Element Documentation:
405
406 |**Name**|**Type**|**Documentation**
407 |Annotations|AnnotationsType|Annotations is a reusable element the provides for a collection of annotations. It has been made global so that restrictions of types that extend AnnotatableType may reference it.
408 |Link|LinkType|Allows for the linking of other resources to identifiable objects. For example, if there is reference metadata associated with a structure, a link to the meatadata report can be dynamically inserted in the structure metadata.
409 |Name|TextType|Name provides for a human-readable name for the object. This may be provided in multiple, parallel language-equivalent forms.
410 |Description|TextType|Description provides for a longer human-readable description of the object. This may be provided in multiple, parallel language-equivalent forms.
411
412 ***MaintainableType*:** MaintainableType is an abstract base type for all maintainable objects.
413
414 Derivation:
415
416 AnnotableType (extension)
417 IdentifiableType (extension)
418 NameableType* (extension)
419 VersionableType (restriction)
420 MaintainableBaseType (extension)
421 MaintainableType*
422
423 Attributes:
424 id, urn?, uri?, version?, validFrom?, validTo?, agencyID, isPartialLanguage?, isExternalReference?, serviceURL?, structureURL?
425
426 Content:
427 Annotations?, Link*, Name+, Description
428
429 Attribute Documentation:
430
431 |**Name**|**Type**|**Documentation**
432 |id|IDType|The id is the identifier for the object.
433 |urn|MaintainableUrnType|The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).
434 |uri|xs:anyURI|The uri attribute holds a URI that contains a link to a resource with additional information about the object, such as a web page. This uri is not a SDMX message.
435 |version|VersionType|This version attribute holds a version number (see common:VersionType definition for details). If not supplied, artefact is considered to be un-versioned.
436 |validFrom|xs:dateTime|The validFrom attribute provides the inclusive start date for providing supplemental validity information about the version.
437 |validTo|xs:dateTime|The validTo attribute provides the inclusive end date for providing supplemental validity information about the version.
438 |agencyID|NestedNCNameIDType|The agencyID must be provided, and identifies the maintenance agency of the object.
439 |isExternalReference (default: false)|xs:boolean|The isExternalReference attribute, if true, indicates that the actual object is not defined the corresponding element, rather its full details are defined elsewhere - indicated by either the registryURL, the repositoryURL, or the structureURL. The purpose of this is so that each structure message does not have to redefine object that are already defined elsewhere. If the isExternalReference attribute is not set, then it is assumed to be false, and the object should contain the full definition of its contents. If more than one of the registryURL, the repositoryURL, and the structureURL are supplied, then the application processing the object can choose the method it finds best suited to retrieve the details of the object.
440 |serviceURL|xs:anyURI|The serviceURL attribute indicates the URL of an SDMX SOAP web service from which the details of the object can be retrieved. Note that this can be a registry or and SDMX structural metadata repository, as they both implement that same web service interface.
441 |structureURL|xs:anyURI|The structureURL attribute indicates the URL of a SDMX-ML structure message (in the same version as the source document) in which the externally referenced object is contained. Note that this may be a URL of an SDMX RESTful web service which will return the referenced object.
442 |isPartialLanguage (default: false)|xs:boolean|The isPartialLanguage attribute, if true, indicates that the object doesn't contain the complete set of all available languages, e.g., when obtained as a response to a GET query that requested specific languages through the HTTP header ‘Accept-Language’.
443
444 Element Documentation:
445
446 |**Name**|**Type**|**Documentation**
447 |Annotations|AnnotationsType|Annotations is a reusable element the provides for a collection of annotations. It has been made global so that restrictions of types that extend AnnotatableType may reference it.
448 |Link|LinkType|Allows for the linking of other resources to identifiable objects. For example, if there is reference metadata associated with a structure, a link to the meatadata report can be dynamically inserted in the structure metadata.
449 |Name|TextType|Name provides for a human-readable name for the object. This may be provided in multiple, parallel language-equivalent forms.
450 |Description|TextType|Description provides for a longer human-readable description of the object. This may be provided in multiple, parallel language-equivalent forms.
451
452 **ReferencePeriodType:** Specifies the inclusive start and end times.
453
454 Attributes:
455 startTime, endTime
456
457 Content:
458 {Empty}
459
460 Attribute Documentation:
461
462 |**Name**|**Type**|**Documentation**
463 |startTime|xs:dateTime|The startTime attributes contains the inclusive start date for the reference period.
464 |endTime|xs:dateTime|The endTime attributes contains the inclusive end date for the reference period.
465
466 **QueryableDataSourceType:** QueryableDataSourceType describes a data source which is accepts an standard SDMX Query message and responds appropriately.
467
468 Attributes:
469 isRESTDatasource, isWebServiceDatasource
470
471 Content:
472 DataURL, WSDLURL?, WADLURL?
473
474 Attribute Documentation:
475
476 |**Name**|**Type**|**Documentation**
477 |isRESTDatasource|xs:boolean|The isRESTDatasource attribute indicates, if true, that the queryable data source is accessible via the REST protocol.
478 |isWebServiceDatasource|xs:boolean|The isWebServiceDatasource attribute indicates, if true, that the queryable data source is accessible via Web Services protocols.
479
480 Element Documentation:
481
482 |**Name**|**Type**|**Documentation**
483 |DataURL|xs:anyURI|DataURL contains the URL of the data source.
484 |WSDLURL|xs:anyURI|WSDLURL provides the location of a WSDL instance on the internet which describes the queryable data source.
485 |WADLURL|xs:anyURI|WADLURL provides the location of a WADL instance on the internet which describes the REST protocol of the queryable data source.
486
487 **XHTMLType:** XHTMLType allows for mixed content of text and XHTML tags. When using this type, one will have to provide a reference to the XHTML schema, since the processing of the tags within this type is strict, meaning that they are validated against the XHTML schema provided.
488
489 Attributes:
490 xml:lang?
491
492 Content:
493 {text} x {any element with namespace of http://www.w3.org/1999/xhtml}
494
495 Attribute Documentation:
496
497 |**Name**|**Type**|**Documentation**
498 |xml:lang (default: en)|xs:language
499
500 ***PayloadStructureType*:** PayloadStructureType is an abstract base type used to define the structural information for data or metadata sets. A reference to the structure is provided (either explicitly or through a reference to a structure usage).
501
502 Attributes:
503 structureID, schemaURL?, namespace?, dimensionAtObservation?, explicitMeasures?, serviceURL?, structureURL?
504
505 Content:
506 (ProvisionAgreement|StructureUsage|Structure)
507
508 Attribute Documentation:
509
510 |**Name**|**Type**|**Documentation**
511 |structureID|xs:ID|The structureID attribute uniquely identifies the structure for the purpose of referencing it from the payload. This is only used in structure specific formats. Although it is required, it is only useful when more than one data set is present in the message.
512 |schemaURL|xs:anyURI|The schemaURL attribute provides a location from which the structure specific schema can be located.
513 |namespace|xs:anyURI|The namespace attribute is used to provide the namespace for structure-specific formats. By communicating this information in the header, it is possible to generate the structure specific schema while processing the message.
514 |dimensionAtObservation|ObservationDimension Type|The dimensionAtObservation is used to reference the dimension at the observation level for data messages. This can also be given the explicit value of "AllDimensions" which denotes that the cross sectional data is in the flat format.
515 |explicitMeasures|xs:boolean|The explicitMeasures indicates whether explicit measures are used in the cross sectional format. This is only applicable for the measure dimension as the dimension at the observation level or the flat structure.
516 |serviceURL|xs:anyURI|The serviceURL attribute indicates the URL of an SDMX SOAP web service from which the details of the object can be retrieved. Note that this can be a registry or and SDMX structural metadata repository, as they both implement that same web service interface.
517 |structureURL|xs:anyURI|The structureURL attribute indicates the URL of a SDMX-ML structure message (in the same version as the source document) in which the externally referenced object is contained. Note that this may be a URL of an SDMX RESTful web service which will return the referenced object.
518
519 Element Documentation:
520
521 |**Name**|**Type**|**Documentation**
522 |ProvisionAgreement|ProvisionAgreementRe ferenceType|ProvisionAgreement references a provision agreement which the data or metadata is reported against.
523 |StructureUsage|StructureUsageRefere nceType|StructureUsage references a flow which the data or metadata is reported against.
524 |Structure|StructureReferenceTy pe|Structure references the structure which defines the structure of the data or metadata set.
525
526 ***DataStructureType*:** DataStructureType is an abstract base type the forms the basis for the structural information for a data set.
527
528 Derivation:
529
530 PayloadStructureType (restriction)
531 DataStructureType*
532
533 Attributes:
534 structureID, schemaURL?, namespace?, dimensionAtObservation?, explicitMeasures?, serviceURL?, structureURL?
535
536 Content:
537 (ProvisionAgreement | StructureUsage | Structure)
538
539 Attribute Documentation:
540
541 |**Name**|**Type**|**Documentation**
542 |structureID|xs:ID|The structureID attribute uniquely identifies the structure for the purpose of referencing it from the payload. This is only used in structure specific formats. Although it is required, it is only useful when more than one data set is present in the message.
543 |schemaURL|xs:anyURI|The schemaURL attribute provides a location from which the structure specific schema can be located.
544 |namespace|xs:anyURI|The namespace attribute is used to provide the namespace for structure-specific formats. By communicating this information in the header, it is possible to generate the structure specific schema while processing the message.
545 |dimensionAtObservation|ObservationDimension Type|The dimensionAtObservation is used to reference the dimension at the observation level for data messages. This can also be given the explicit value of "AllDimensions" which denotes that the cross sectional data is in the flat format.
546 |explicitMeasures|xs:boolean|The explicitMeasures indicates whether explicit measures are used in the cross sectional format. This is only applicable for the measure dimension as the dimension at the observation level or the flat structure.
547 |serviceURL|xs:anyURI|The serviceURL attribute indicates the URL of an SDMX SOAP web service from which the details of the object can be retrieved. Note that this can be a registry or and SDMX structural metadata repository, as they both implement that same web service interface.
548 |structureURL|xs:anyURI|The structureURL attribute indicates the URL of a SDMX-ML structure message (in the same version as the source document) in which the externally referenced object is contained. Note that this may be a URL of an SDMX RESTful web service which will return the referenced object.
549
550 Element Documentation:
551
552 |**Name**|**Type**|**Documentation**
553 |ProvisionAgreement|ProvisionAgreementRe ferenceType|ProvisionAgreement references a provision agreement which the data is reported against.
554 |StructureUsage|DataflowReferenceTyp e|StructureUsage references a dataflow which the data is reported against.
555 |Structure|DataStructureReferen ceType|Structure references the data structure definition which defines the structure of the data.
556
557 **StructureSpecificDataStructureType:** StructureSpecificDataStructureType defines the structural information for a structured data set. In addition to referencing the data structure or dataflow which defines the structure of the data, the namespace for the data structure specific schema as well as which dimension is used at the observation level must be provided. It is also necessary to state whether the format uses explicit measures, although this is technically only applicable is the dimension at the observation level is the measure dimension or the flat data format is used.
558
559 Derivation:
560
561 PayloadStructureType (restriction)
562 DataStructureType (restriction)
563 StructureSpecificDataStructureType
564
565 Attributes:
566 structureID, schemaURL?, namespace, dimensionAtObservation, explicitMeasures?, serviceURL?, structureURL?
567
568 Content:
569 (ProvisionAgreement | StructureUsage | Structure)
570
571 Attribute Documentation:
572
573 |**Name**|**Type**|**Documentation**
574 |structureID|xs:ID|The structureID attribute uniquely identifies the structure for the purpose of referencing it from the payload. This is only used in structure specific formats. Although it is required, it is only useful when more than one data set is present in the message.
575 |schemaURL|xs:anyURI|The schemaURL attribute provides a location from which the structure specific schema can be located.
576 |namespace|xs:anyURI|The namespace attribute is used to provide the namespace for structure-specific formats. By communicating this information in the header, it is possible to generate the structure specific schema while processing the message.
577 |dimensionAtObservation|ObservationDimension Type|The dimensionAtObservation is used to reference the dimension at the observation level for data messages. This can also be given the explicit value of "AllDimensions" which denotes that the cross sectional data is in the flat format.
578 |explicitMeasures (default: false)|xs:boolean|The explicitMeasures indicates whether explicit measures are used in the cross sectional format. This is only applicable for the measure dimension as the dimension at the observation level or the flat structure.
579 |serviceURL|xs:anyURI|The serviceURL attribute indicates the URL of an SDMX SOAP web service from which the details of the object can be retrieved. Note that this can be a registry or and SDMX structural metadata repository, as they both implement that same web service interface.
580 |structureURL|xs:anyURI|The structureURL attribute indicates the URL of a SDMX-ML structure message (in the same version as the source document) in which the externally referenced object is contained. Note that this may be a URL of an SDMX RESTful web service which will return the referenced object.
581
582 Element Documentation:
583
584 |**Name**|**Type**|**Documentation**
585 |ProvisionAgreement|ProvisionAgreementReferenceType|ProvisionAgreement references a provision agreement which the data is reported against.
586 |StructureUsage|DataflowReferenceType|StructureUsage references a dataflow which the data is reported against.
587 |Structure|DataStructureReferen ceType|Structure references the data structure definition which defines the structure of the data.
588
589 ***MetadataStructureType*:** MetadataStructureType is an abstract base type the forms the basis of the structural information for any metadata message. A reference to the metadata structure definition or a metadataflow must be provided. This can be used to determine the structure of the message.
590
591 Derivation:
592
593 PayloadStructureType (restriction)
594 MetadataStructureType*
595
596 Attributes:
597 structureID, schemaURL?, namespace?, serviceURL?, structureURL?
598
599 Content:
600 (ProvisionAgreement | StructureUsage | Structure)
601
602 Attribute Documentation:
603
604 |**Name**|**Type**|**Documentation**
605 |structureID|xs:ID|The structureID attribute uniquely identifies the structure for the purpose of referencing it from the payload. This is only used in structure specific formats. Although it is required, it is only useful when more than one data set is present in the message.
606 |schemaURL|xs:anyURI|The schemaURL attribute provides a location from which the structure specific schema can be located.
607 |namespace|xs:anyURI|The namespace attribute is used to provide the namespace for structure-specific formats. By communicating this information in the header, it is possible to generate the structure specific schema while processing the message.
608 |serviceURL|xs:anyURI|The serviceURL attribute indicates the URL of an SDMX SOAP web service from which the details of the object can be retrieved. Note that this can be a registry or and SDMX structural metadata repository, as they both implement that same web service interface.
609 |structureURL|xs:anyURI|The structureURL attribute indicates the URL of a SDMX-ML structure message (in the same version as the source document) in which the externally referenced object is contained. Note that this may be a URL of an SDMX RESTful web service which will return the referenced object.
610
611 Element Documentation:
612
613 |**Name**|**Type**|**Documentation**
614 |ProvisionAgreement|ProvisionAgreementReferenceType|ProvisionAgreement references a provision agreement which the metadata is reported against.
615 |StructureUsage|MetadataflowReferenceType|StructureUsage references a metadataflow which the metadata is reported against.
616 |Structure|MetadataStructureReferenceType|Structure references the metadata structure definition which defines the structure of the metadata.
617
618 **GenericMetadataStructureType:** GenericMetadataStructureType defines the structural information for a generic metadata message.
619
620 Derivation:
621
622 PayloadStructureType (restriction)
623 MetadataStructureType (restriction)
624 GenericMetadataStructureType
625
626 Attributes:
627 structureID, schemaURL?, serviceURL?, structureURL?
628
629 Content:
630 (ProvisionAgreement | StructureUsage | Structure)
631
632 Attribute Documentation:
633
634 |**Name**|**Type**|**Documentation**
635 |structureID|xs:ID|The structureID attribute uniquely identifies the structure for the purpose of referencing it from the payload. This is only used in structure specific formats. Although it is required, it is only useful when more than one data set is present in the message.
636 |schemaURL|xs:anyURI|The schemaURL attribute provides a location from which the structure specific schema can be located.
637 |serviceURL|xs:anyURI|The serviceURL attribute indicates the URL of an SDMX SOAP web service from which the details of the object can be retrieved. Note that this can be a registry or and SDMX structural metadata repository, as they both implement that same web service interface.
638 |structureURL|xs:anyURI|The structureURL attribute indicates the URL of a SDMX-ML structure message (in the same version as the source document) in which the externally referenced object is contained. Note that this may be a URL of an SDMX RESTful web service which will return the referenced object.
639
640 Element Documentation:
641
642 |**Name**|**Type**|**Documentation**
643 |ProvisionAgreement|ProvisionAgreementReferenceType|ProvisionAgreement references a provision agreement which the metadata is reported against.
644 |StructureUsage|MetadataflowReferenceType|StructureUsage references a metadataflow which the metadata is reported against.
645 |Structure|MetadataStructureReferenceType|Structure references the metadata structure definition which defines the structure of the metadata.
646
647 === 2.1.4 Simple Types ===
648
649 **AlphaNumericType:** AlphaNumericType is a reusable simple type that allows for only mixed-case alphabetical and numeric characters.
650
651 Derived by restriction of xs:string.
652 Regular Expression Pattern: [A-Za-z0-9]+
653
654 **AlphaType:** AlphaType is a reusable simple type that allows for only mixed-case alphabetical characters. This is derived from the AlphaNumericType.
655
656 Derived by restriction of AlphaNumericType.
657 Regular Expression Pattern: [A-Za-z]+
658
659 **NumericType:** NumericType is a reusable simple type that allows for only numeric characters. This is not to be confused with an integer, as this may be used to numeric strings which have leading zeros. These leading zeros are not ignored. This is derived from the AlphaNumericType.
660
661 Derived by restriction of AlphaNumericType.
662 Regular Expression Pattern: [0-9]+
663
664 **ObservationalTimePeriodType:** ObservationalTimePeriodType specifies a distinct time period or point in time in SDMX. The time period can either be a Gregorian calendar period, a standard reporting period, a distinct point in time, or a time range with a specific date and duration.
665
666 Union of:
667 xs:gYear, xs:gYearMonth, xs:date, xs:dateTime, ReportingYearType, ReportingSemesterType, ReportingTrimesterType, ReportingQuarterType, ReportingMonthType, ReportingWeekType, ReportingDayType, TimeRangeType.   
668
669 **StandardTimePeriodType:** StandardTimePeriodType defines the set of standard time periods in SDMX. This includes the reporting time periods and the basic date type (i.e. the calendar time periods and the dateTime format).
670
671 Union of:
672 xs:gYear, xs:gYearMonth, xs:date, xs:dateTime, ReportingYearType, ReportingSemesterType, ReportingTrimesterType, ReportingQuarterType, ReportingMonthType, ReportingWeekType, ReportingDayType.   
673
674 **BasicTimePeriodType:** BasicTimePeriodType contains the basic dates and calendar periods. It is a combination of the Gregorian time periods and the date time type..
675
676 Union of:
677 xs:gYear, xs:gYearMonth, xs:date, xs:dateTime.
678
679 **GregorianTimePeriodType:** GregorianTimePeriodType defines the set of standard calendar periods in SDMX.
680
681 Union of:
682 xs:gYear, xs:gYearMonth, xs:date.
683
684 **ReportingTimePeriodType:** ReportingTimePeriodType defines standard reporting periods in SDMX, which are all in relation to the start day (day-month) of a reporting year which is specified in the specialized reporting year start day attribute. If the reporting year start day is not defined, a day of January 1 is assumed. The reporting year must be epxressed as the year at the beginning of the period. Therfore, if the reproting year runs from April to March, any given reporting year is expressed as the year for April. The general format of a report period can be described as [year]-[period][time zone]?, where the type of period is designated with a single character followed by a number representing the period. Note that all periods allow for an optional time zone offset. See the details of each member type for the specifics of its format.
685
686 Union of:
687 ReportingYearType, ReportingSemesterType, ReportingTrimesterType, ReportingQuarterType, ReportingMonthType, ReportingWeekType, ReportingDayType.
688
689 **BaseReportPeriodType:** BaseReportPeriodType is a simple type which frames the general pattern of a reporting period for validation purposes. This regular expression is only a general validation which is meant to validate the following structure [year]-[period][time zone]?. This type is meant to be derived from for further validation.
690
691 Derived by restriction of xs:string.
692 Regular Expression Pattern: \d{4}\-([ASTQ]\d{1}|[MW]\d{2}|[D]\d{3})(Z|((\+|\-)\d{2}:\d{2}))?
693
694 **ReportPeriodValidTimeZoneType:** ReportPeriodValidTimeZoneType is a derivation of the BaseReportPeriodType which validates that the time zone provided in the base type is valid. The base type will have provided basic validation already. The patterns below validate that the time zone is "Z" or that it is between -14:00 and +14:00, or that there is no time zone provided. This type is meant to be derived from for further validation.
695
696 Derived by restriction of BaseReportPeriodType.
697 Regular Expression Pattern: . +Z.{5}.\*(\+|\-)(14:00|((0[0-9]|1[0-3]):[0-5][0-9])).{5}[^\+\-Z]+
698
699 **ReportingYearType:** ReportingYearType defines a time period of 1 year (P1Y) in relation to a reporting year which has a start day (day-month) specified in the specialized reporting year start day attribute. In the absence of a start day for the reporting year, a day of January 1 is assumed. In this case a reporting year will coincide with a calendar year. The format of a reporting year is YYYY-A1 (e.g. 2000-A1). Note that the period value of 1 is fixed.
700
701 Derived by restriction of ReportPeriodValidTimeZoneType.
702 Regular Expression Pattern: . {5}A1.
703
704 **ReportingSemesterType:** ReportingSemesterType defines a time period of 6 months (P6M) in relation to a reporting year which has a start day (day-month) specified in the specialized reporting year start day attribute. In the absence of a start day for the reporting year, a day of January 1 is assumed. The format of a reporting semester is YYYY-Ss (e.g. 2000-S1), where s is either 1 or 2.
705
706 Derived by restriction of ReportPeriodValidTimeZoneType.
707 Regular Expression Pattern: . {5}S[1-2].
708
709 **ReportingTrimesterType:** ReportingTrimesterType defines a time period of 4 months (P4M) in relation to a reporting year which has a start day (day-month) specified in the specialized reporting year start day attribute. In the absence of a start day for the reporting year, a day of January 1 is assumed. The format of a reporting trimester is YYYY-Tt (e.g. 2000-T1), where s is either 1, 2, or 3.
710
711 Derived by restriction of ReportPeriodValidTimeZoneType.
712 Regular Expression Pattern: . {5}T[1-3].
713
714 **ReportingQuarterType:** ReportingQuarterType defines a time period of 3 months (P3M) in relation to a reporting year which has a start day (day-month) specified in the specialized reporting year start day attribute. In the absence of a start day for the reporting year, a day of January 1 is assumed. The format of a reporting quarter is YYYY-Qq (e.g. 2000-Q1), where q is a value between 1 and 4.
715
716 Derived by restriction of ReportPeriodValidTimeZoneType.
717 Regular Expression Pattern: . {5}Q[1-4].
718
719 **ReportingMonthType:** ReportingMonthType defines a time period of 1 month (P1M) in relation to a reporting year which has a start day (day-month) specified in the specialized reporting year start day attribute. In the absence of a start day for the reporting year, a day of January 1 is assumed. In this case a reporting month will coincide with a calendar month. The format of a reporting month is YYYY-Mmm (e.g. 2000-M01), where mm is a two digit month (i.e. 01-12).
720
721 Derived by restriction of ReportPeriodValidTimeZoneType.
722 Regular Expression Pattern: . {5}M(0[1-9]|1[0-2])*.
723
724 **ReportingWeekType:** ReportingWeekType defines a time period of 7 days (P7D) in relation to a reporting year which has a start day (day-month) specified in the specialized reporting year start day attribute. A standard reporting week is based on the ISO 8601 defintion of a week date, in relation to the reporting period start day. The first week is defined as the week with the first Thursday on or after the reporting year start day. An equivalent definition is the week starting with the Monday nearest in time to the reporting year start day. There are other equivalent defintions, all of which should be adjusted based on the reporting year start day. In the absence of a start day for the reporting year, a day of January 1 is assumed. The format of a reporting week is YYYY-Www (e.g. 2000-W01), where mm is a two digit week (i.e. 01-53).
725
726 Derived by restriction of ReportPeriodValidTimeZoneType.
727 Regular Expression Pattern: . {5}W(0[1-9]|[1-4][0-9]|5[0-3]).
728
729 **ReportingDayType:** ReportingDayType defines a time period of 1 day (P1D) in relation to a reporting year which has a start day (day-month) specified in the specialized reporting year start day attribute. In the absence of a start day for the reporting year, a day of January 1 is assumed. The format of a reporting day is YYYY-Dddd (e.g. 2000-D001), where ddd is a three digit day (i.e. 001-366).
730
731 Derived by restriction of ReportPeriodValidTimeZoneType.
732 Regular Expression Pattern: . {5}D(0[0-9][1-9]|[1-2][0-9][0-9]|3[0-5][0-9]|36[0-6]).
733
734 **BaseTimeRangeType:** BaseTimeRangeType is a simple type which frames the general pattern for a time range in SDMX. A time range pattern is generally described as [xs:date or xs:dateTime]\[xs:duration], where the referenced types are defined by XML Schema. This type is meant to be derived from for further validation.
735
736 Derived by restriction of xs:string.
737 Regular Expression Pattern: \d{4}\-\d{2}\-\d{2}(T\d{2}:\d{2}:\d{2}(\.\d+)?)?(Z|((\+|\-)\d{2}:\d{2}))?/P.+
738
739 **RangeValidMonthDayType:** RangeValidMonthDayType is a derivation of the BaseTimeRangeType which validates that the day provided is valid for the month, without regard to leap years. The base type will have provided basic validation already. The patterns below validate that there are up to 29 days in February, up to 30 days in April, June, September, and November and up to 31 days in January, March, May, July, August, October, and December. This type is meant to be derived from for further validation.
740
741 Derived by restriction of BaseTimeRangeType.
742 Regular Expression Pattern: . {5}02\-(0[1-9]|[1-2][0-9]).+.{5}(04|06|09|11)\-(0[1-9]|[1-2][0-9]|30).+.{5}(01|03|05|07|08|10|12)\-(0[1-9]|[1-2][0-9]|3[0-1]).+
743
744 **RangeValidLeapYearType:** RangeValidLeapYearType is a derivation of the RangeValidMonthDayType which validates that a date of February 29 occurs in a valid leap year (i.e. if the year is divisible 4 and not by 100, unless it is also divisible by 400). This type is meant to be derived from for further validation.
745
746 Derived by restriction of RangeValidMonthDayType.
747 Regular Expression Pattern: ((\d{2}(04|08|12|16|20|24|28|32|36|40|44|48|52|56|60|64|68|72|76|80|84|88|92|96))|((00|04|08|12|16|20|24|28|32|36|40|44|48|52|56|60|64|68|72|76|80|84|88|92|96)00))\-02\-29.+.{5}02\-(([0-1][0-9])|(2[^9])).+.{5}((0[1,3-9])|1[0-2]).+
748
749 **RangeValidTimeType:** RangeValidTimeType is a derivation of the RangeValidLeapYearType which validates that the time (if provided) is validly formatted. The base type will have provided basic validation already. The patterns below validate that the time falls between 00:00:00 and 24:00:00. Note that as the XML dateTime type does, seconds are required. It is also permissible to have fractions of seconds, but only within the boundaries of the range specified. This type is meant to be derived from for further validation.
750
751 Derived by restriction of RangeValidLeapYearType.
752 Regular Expression Pattern: . {10}T(24:00:00(\.[0]+)?|
753
754 (((
755 [0-1][0-9])|(2[0-3])):[0-5][0-9]:[0-5][0-9](\.\d+)?))(/|Z|\+|\-).+[^T]+/.+
756
757 **RangeValidTimeZoneType:** RangeValidMonthDayType is a derivation of the RangeValidTimeType which validates that the time zone provided in the base type is valid. The base type will have provided basic validation already. The patterns below validate that the time zone is "Z" or that it is between -14:00 and +14:00, or that there is no time zone provided. This type is meant to be derived from for further validation.
758
759 Derived by restriction of RangeValidTimeType.
760 Regular Expression Pattern: . +Z/.+.{10}.\*(\+|\-)(14:00|((0[0-9]|1[0-3]):[0-5][0-9]))/.+.{10}[^\+\-Z]+
761
762 **TimeRangeValidDateDurationType:** TimeRangeValidDateDurationType is an abstract derivation of the RangeValidTimeType which validates that duration provided is generally valid, up to the time component.
763
764 Derived by restriction of RangeValidTimeZoneType.
765 Regular Expression Pattern: . +/P(\d+Y)?(\d+M)?(\d+D)?(T.+)?
766
767 **TimeRangeType:** TimeRangeType defines the structure of a time range in SDMX. The pattern of a time range can be generally described as [start date]\[duration], where start date is an date or dateTime type as defined in XML Schema and duration is a time duration as defined in XML Schema. Note that it is permissible for a time zone offset to be provided on the date or date time.
768
769 Derived by restriction of TimeRangeValidDateDurationType.
770 Regular Expression Pattern: . +/P.\*T(\d+H)?(\d+M)?(\d+(.\d+)?S)?.+/P[^T]+
771
772 **NotApplicableType:** NotApplicableType is a reusable simple type that allows for not applicable dimension values to be reported. This is required for datasets against a DSD which includes data from Dataflows, which only use a subset of Dimensions as defined by a Dimension Constraint, or for data-related reference metadata attributes that are not attached to all dimensions.
773
774 Derived by restriction of xs:string.
775 Fixed value: (tilde)
776
777 **DecimalOrNotApplicableType:** Simple type combining xs:decimal and NotApplicableType.
778
779 Union of:
780 xs:decimal, NotApplicableType.
781
782 The following types are derived in a similar manner:
783
784 * DoubleOrNotApplicableType
785 * BooleanOrNotApplicableType
786 * IntOrNotApplicableType
787 * IntegerOrNotApplicableType
788 * LongOrNotApplicableType
789 * ShortOrNotApplicableType
790 * FloatOrNotApplicableType
791 * AlphaOrNotApplicableType
792 * AlphaNumericOrNotApplicableType
793 * NumericOrNotApplicableType
794 * StandardTimePeriodOrNotApplicableType
795 * BasicTimePeriodOrNotApplicableType
796 * ObservationalTimePeriodOrNotApplicableType
797 * GregorianTimePeriodOrNotApplicableType
798 * ReportingTimePeriodOrNotApplicableType
799 * ReportingYearOrNotApplicableType
800 * ReportingSemesterOrNotApplicableType
801 * ReportingTrimesterOrNotApplicableType
802 * ReportingQuarterOrNotApplicableType
803 * ReportingDayOrNotApplicableType
804 * ReportingMonthOrNotApplicableType
805 * ReportingWeekOrNotApplicableType
806 * RangeValidMonthDayOrNotApplicableType
807 * RangeValidTimeOrNotApplicableType
808 * RangeValidTimeZoneOrNotApplicableType
809 * TimeRangeOrNotApplicableType
810
811 **MissingType:** MissingType is a reusable simple type that allows for missing values to be reported. This is required for attributes and measures to report an intentionally missing value of any other type than double or float.
812
813 Derived by restriction of xs:string.
814 Fixed value: #N/A
815
816 **DecimalOrMissingType:** Simple type combining xs:decimal and MissingType.
817
818 Union of:
819 xs:decimal, MissingType.
820
821 The following types are derived in a similar manner:
822
823 * BooleanOrMissingType
824 * IntOrMissingType
825 * IntegerOrMissingType
826 * LongOrMissingType
827 * ShortOrMissingType
828 * AlphaOrMissingType
829 * AlphaNumericOrMissingType
830 * NumericOrMissingType
831 * StandardTimePeriodOrMissingType
832 * BasicTimePeriodOrMissingType
833 * ObservationalTimePeriodOrMissingType
834 * GregorianTimePeriodOrMissingType
835 * ReportingTimePeriodOrMissingType
836 * ReportingYearOrMissingType
837 * ReportingSemesterOrMissingType
838 * ReportingTrimesterOrMissingType
839 * ReportingQuarterOrMissingType
840 * ReportingDayOrMissingType
841 * ReportingMonthOrMissingType
842 * ReportingWeekOrMissingType
843 * RangeValidMonthDayOrMissingType
844 * RangeValidTimeOrMissingType
845 * RangeValidTimeZoneOrMissingType
846 * TimeRangeOrMissingType
847
848 **TimezoneType:** TimezoneType defines the pattern for a time zone. An offset of -14:00 to +14:00 or Z can be specified.
849
850 Derived by restriction of xs:string.
851 Regular Expression Pattern: Z(\+|\-)(14:00|((0[0-9]|1[0-3]):[0-5][0-9]))
852
853 **OccurenceType:** OccurenceType is used to express the maximum occurrence of an object. It combines an integer, equal or greater than 1, and the literal text, "unbounded", for objects which have no upper limit on its occurrence.
854
855 Union of:
856 MaxOccursNumberType, UnboundedCodeType.
857
858 **MaxOccursNumberType:** MaxOccursNumberType is a base type used to restrict an integer to be greater than 1, for the purpose of expressing the maximum number of occurrences of an object.
859
860 Derived by restriction of xs:nonNegativeInteger.
861 Minimum (inclusive): 1
862 Fraction Digits: 0
863
864 **UnboundedCodeType:** UnboundedCodeType provides single textual value of "unbounded", for use in OccurentType.
865
866 Derived by restriction of xs:string.
867
868 Enumerations:
869
870 |**Value**|**Documentation**
871 |unbounded|Object has no upper limit on occurrences.
872
873 **ActionType:** ActionType provides a list of actions, describing the intention of the data transmission from the sender's side. Each action provided at the data or metadata set level applies to the entire data set for which it is given. Note that the actions indicated in the Message Header are optional, and used to summarize specific actions indicated with this data type for all registry interactions. The "Informational" value is used when the message contains information in response to a query, rather than being used to invoke a maintenance activity.
874
875 Derived by restriction of xs:NMTOKEN.
876
877 Enumerations:
878
879 |**Value**|**Documentation**
880 |Append|Append - this is an incremental update for an existing data/metadata set or the provision of new data or documentation (attribute values) formerly absent. If any of the supplied data or metadata is already present, it will not replace that data or metadata. This corresponds to the "Update" value found in version 1.0 of the SDMX Technical Standards.
881 |Replace|Replace - data/metadata is to be replaced, and may also include additional data/metadata to be appended. The replacement occurs at the level of the observation - that is, it is not possible to replace an entire series.
882 |Delete|Delete - data/metadata is to be deleted. Deletion occurs at the lowest level object. For instance, if a delete data message contains a series with no observations, then the entire series will be deleted. If the series contains observations, then only those observations specified will be deleted. The same basic concept applies for attributes. If a series or observation in a delete message contains attributes, then only those attributes will be deleted.
883 |Information|Informational - data/metadata is being exchanged for informational purposes only, and not meant to update a system.
884
885 **WildCardValueType:** WildCardValueType is a single value code list, used to include the '%' character - indicating that an entire field is wild carded.
886
887 Derived by restriction of xs:string.
888
889 Enumerations:
890
891 |**Value**|**Documentation**
892 |%|Indicates a wild card value.
893
894 **CascadeSelectionType:**
895
896 Union of:
897 xs:boolean, ExcludeRootType.
898
899 **ExcludeRootType:** ExcludeRootType is a single enumerated value that indciates that child values should be included, but that the actual root should not.
900
901 Derived by restriction of xs:string.
902
903 Enumerations:
904
905 |**Value**|**Documentation**
906 |excluderoot|
907
908 **ObservationDimensionType:** ObservationDimensionType allows for the dimension at the observation level to be specified by either providing the dimension identifier or using the explicit value "AllDimensions".
909
910 Union of:
911 NCNameIDType, ObsDimensionsCodeType.
912
913 **ObsDimensionsCodeType:** ObsDimensionsCodeType is an enumeration containing the values "TimeDimension" and "AllDimensions"
914
915 Derived by restriction of xs:string.
916
917 Enumerations:
918
919 |**Value**|**Documentation**
920 |AllDimensions|AllDimensions notes that the cross sectional format shall be flat; that is all dimensions should be contained at the observation level.
921 |TIME_PERIOD|TIME_PERIOD refers to the fixed identifier for the time dimension.
922
923 **DataType:** DataTypeType provides an enumerated list of the types of data formats allowed as the for the representation of an object.
924
925 Derived by restriction of xs:NMTOKEN.
926
927 Enumerations:
928
929 |**Value**|**Documentation**
930 |String|A string datatype corresponding to W3C XML Schema's xs:string datatype.
931 |Alpha|A string datatype which only allows for the simple aplhabetic charcter set of A-Z, a-z.
932 |AlphaNumeric|A string datatype which only allows for the simple alphabetic character set of A-Z, a-z plus the simple numeric character set of 0-9.
933 |Numeric|A string datatype which only allows for the simple numeric character set of 0-9. This format is not treated as an integer, and therefore can having leading zeros.
934 |BigInteger|An integer datatype corresponding to W3C XML Schema's xs:integer datatype.
935 |Integer|An integer datatype corresponding to W3C XML Schema's xs:int datatype.
936 |Long|A numeric datatype corresponding to W3C XML Schema's xs:long datatype.
937 |Short|A numeric datatype corresponding to W3C XML Schema's xs:short datatype.
938 |Decimal|A numeric datatype corresponding to W3C XML Schema's xs:decimal datatype.
939 |Float|A numeric datatype corresponding to W3C XML Schema's xs:float datatype.
940 |Double|A numeric datatype corresponding to W3C XML Schema's xs:double datatype.
941 |Boolean|A datatype corresponding to W3C XML Schema's xs:boolean datatype.
942 |URI|A datatype corresponding to W3C XML Schema's xs:anyURI datatype.
943 |Count|A simple incrementing Integer type. The isSequence facet must be set to true, and the interval facet must be set to "1".
944 |InclusiveValueRange|This value indicates that the startValue and endValue attributes provide the inclusive boundaries of a numeric range of type xs:decimal.
945 |ExclusiveValueRange|This value indicates that the startValue and endValue attributes provide the exclusive boundaries of a numeric range, of type xs:decimal.
946 |Incremental|This value indicates that the value increments according to the value provided in the interval facet, and has a true value for the isSequence facet.
947 |ObservationalTimePeriod|Observational time periods are the superset of all time periods in SDMX. It is the union of the standard time periods (i.e. Gregorian time periods, the reporting time periods, and date time) and a time range.
948 |StandardTimePeriod|Standard time periods is a superset of distinct time period in SDMX. It is the union of the basic time periods (i.e. the Gregorian time periods and date time) and the reporting time periods.
949 |BasicTimePeriod|BasicTimePeriod time periods is a superset of the Gregorian time periods and a date time.
950 |GregorianTimePeriod|Gregorian time periods correspond to calendar periods and are represented in ISO-8601 formats. This is the union of the year, year month, and date formats.
951 |GregorianYear|A Gregorian time period corresponding to W3C XML Schema's xs:gYear datatype, which is based on ISO-8601.
952 |GregorianYearMonth|A time datatype corresponding to W3C XML Schema's xs:gYearMonth datatype, which is based on ISO-8601.
953 |GregorianDay|A time datatype corresponding to W3C XML Schema's xs:date datatype, which is based on ISO-8601.
954 |ReportingTimePeriod|Reporting time periods represent periods of a standard length within a reporting year, where to start of the year (defined as a month and day) must be defined elsewhere or it is assumed to be January 1. This is the union of the reporting year, semester, trimester, quarter, month, week, and day.
955 |ReportingYear|A reporting year represents a period of 1 year (P1Y) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingYearType.
956 |ReportingSemester|A reporting semester represents a period of 6 months (P6M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingSemesterType.
957 |ReportingTrimester|A reporting trimester represents a period of 4 months (P4M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingTrimesterType.
958 |ReportingQuarter|A reporting quarter represents a period of 3 months (P3M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingQuarterType.
959 |ReportingMonth|A reporting month represents a period of 1 month (P1M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingMonthType.
960 |ReportingWeek|A reporting week represents a period of 7 days (P7D) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingWeekType.
961 |ReportingDay|A reporting day represents a period of 1 day (P1D) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingDayType.
962 |DateTime|A time datatype corresponding to W3C XML Schema's xs:dateTime datatype.
963 |TimeRange|TimeRange defines a time period by providing a distinct start (date or date time) and a duration.
964 |Month|A time datatype corresponding to W3C XML Schema's xs:gMonth datatype.
965 |MonthDay|A time datatype corresponding to W3C XML Schema's xs:gMonthDay datatype.
966 |Day|A time datatype corresponding to W3C XML Schema's xs:gDay datatype.
967 |Time|A time datatype corresponding to W3C XML Schema's xs:time datatype.
968 |Duration|A time datatype corresponding to W3C XML Schema's xs:duration datatype.
969 |GeospatialInformation|A string used to describe geographical features like points (e.g., locations of places, landmarks, buildings, etc.), lines (e.g., rivers, roads, streets, etc.), or areas (e.g., geographical regions, countries, islands, land lots, etc.). A mix of different features is possible too, e.g., combining polygons and geographical points to describe a country and the location of its capital.
970 |XHTML|This value indicates that the content of the component can contain XHTML markup.
971 |KeyValues|This value indicates that the content of the component will be data key (a set of dimension references and values for the dimensions).
972 |IdentifiableReference|This value indicates that the content of the component will be complete reference (either URN or full set of reference fields) to an Identifiable object in the SDMX Information Model.
973 |DataSetReference|This value indicates that the content of the component will be reference to a data provider, which is actually a formal reference to a data provider and a data set identifier value.
974
975 **BasicComponentDataType:** BasicComponentDataType provides an enumerated list of the types of characters allowed in the textType attribute for all non-target object components.
976
977 Derived by restriction of DataType.
978
979 Enumerations:
980
981 |**Value**|**Documentation**
982 |String|A string datatype corresponding to W3C XML Schema's xs:string datatype.
983 |Alpha|A string datatype which only allows for the simple aplhabetic charcter set of A-Z, a-z.
984 |AlphaNumeric|A string datatype which only allows for the simple alphabetic character set of A-Z, a-z plus the simple numeric character set of 0-9.
985 |Numeric|A string datatype which only allows for the simple numeric character set of 0-9. This format is not treated as an integer, and therefore can having leading zeros.
986 |BigInteger|An integer datatype corresponding to W3C XML Schema's xs:integer datatype.
987 |Integer|An integer datatype corresponding to W3C XML Schema's xs:int datatype.
988 |Long|A numeric datatype corresponding to W3C XML Schema's xs:long datatype.
989 |Short|A numeric datatype corresponding to W3C XML Schema's xs:short datatype.
990 |Decimal|A numeric datatype corresponding to W3C XML Schema's xs:decimal datatype.
991 |Float|A numeric datatype corresponding to W3C XML Schema's xs:float datatype.
992 |Double|A numeric datatype corresponding to W3C XML Schema's xs:double datatype.
993 |Boolean|A datatype corresponding to W3C XML Schema's xs:boolean datatype.
994 |URI|A datatype corresponding to W3C XML Schema's xs:anyURI datatype.
995 |Count|A simple incrementing Integer type. The isSequence facet must be set to true, and the interval facet must be set to "1".
996 |InclusiveValueRange|This value indicates that the startValue and endValue attributes provide the inclusive boundaries of a numeric range of type xs:decimal.
997 |ExclusiveValueRange|This value indicates that the startValue and endValue attributes provide the exclusive boundaries of a numeric range, of type xs:decimal.
998 |Incremental|This value indicates that the value increments according to the value provided in the interval facet, and has a true value for the isSequence facet.
999 |ObservationalTimePeriod|Observational time periods are the superset of all time periods in SDMX. It is the union of the standard time periods (i.e. Gregorian time periods, the reporting time periods, and date time) and a time range.
1000 |StandardTimePeriod|Standard time periods is a superset of distinct time period in SDMX. It is the union of the basic time periods (i.e. the Gregorian time periods and date time) and the reporting time periods.
1001 |BasicTimePeriod|BasicTimePeriod time periods is a superset of the Gregorian time periods and a date time.
1002 |GregorianTimePeriod|Gregorian time periods correspond to calendar periods and are represented in ISO-8601 formats. This is the union of the year, year month, and date formats.
1003 |GregorianYear|A Gregorian time period corresponding to W3C XML Schema's xs:gYear datatype, which is based on ISO-8601.
1004 |GregorianYearMonth|A time datatype corresponding to W3C XML Schema's xs:gYearMonth datatype, which is based on ISO-8601.
1005 |GregorianDay|A time datatype corresponding to W3C XML Schema's xs:date datatype, which is based on ISO-8601.
1006 |ReportingTimePeriod|Reporting time periods represent periods of a standard length within a reporting year, where to start of the year (defined as a month and day) must be defined elsewhere or it is assumed to be January 1. This is the union of the reporting year, semester, trimester, quarter, month, week, and day.
1007 |ReportingYear|A reporting year represents a period of 1 year (P1Y) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingYearType.
1008 |ReportingSemester|A reporting semester represents a period of 6 months (P6M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingSemesterType.
1009 |ReportingTrimester|A reporting trimester represents a period of 4 months (P4M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingTrimesterType.
1010 |ReportingQuarter|A reporting quarter represents a period of 3 months (P3M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingQuarterType.
1011 |ReportingMonth|A reporting month represents a period of 1 month (P1M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingMonthType.
1012 |ReportingWeek|A reporting week represents a period of 7 days (P7D) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingWeekType.
1013 |ReportingDay|A reporting day represents a period of 1 day (P1D) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingDayType.
1014 |DateTime|A time datatype corresponding to W3C XML Schema's xs:dateTime datatype.
1015 |TimeRange|TimeRange defines a time period by providing a distinct start (date or date time) and a duration.
1016 |Month|A time datatype corresponding to W3C XML Schema's xs:gMonth datatype.
1017 |MonthDay|A time datatype corresponding to W3C XML Schema's xs:gMonthDay datatype.
1018 |Day|A time datatype corresponding to W3C XML Schema's xs:gDay datatype.
1019 |Time|A time datatype corresponding to W3C XML Schema's xs:time datatype.
1020 |Duration|A time datatype corresponding to W3C XML Schema's xs:duration datatype.
1021 |GeospatialInformation|A string used to describe geographical features like points (e.g., locations of places, landmarks, buildings, etc.), lines (e.g., rivers, roads, streets, etc.), or areas (e.g., geographical regions, countries, islands, land lots, etc.). A mix of different features is possible too, e.g., combining polygons and geographical points to describe a country and the location of its capital.
1022 |XHTML|This value indicates that the content of the component can contain XHTML markup.
1023
1024 **SimpleDataType:** SimpleDataType restricts BasicComponentDataType to specify the allowable data types for a data structure definition component. The XHTML representation is removed as a possible type.
1025
1026 Derived by restriction of BasicComponentDataType.
1027
1028 Enumerations:
1029
1030 |**Value**|**Documentation**
1031 |String|A string datatype corresponding to W3C XML Schema's xs:string datatype.
1032 |Alpha|A string datatype which only allows for the simple aplhabetic charcter set of A-Z, a-z.
1033 |AlphaNumeric|A string datatype which only allows for the simple alphabetic character set of A-Z, a-z plus the simple numeric character set of 0-9.
1034 |Numeric|A string datatype which only allows for the simple numeric character set of 0-9. This format is not treated as an integer, and therefore can having leading zeros.
1035 |BigInteger|An integer datatype corresponding to W3C XML Schema's xs:integer datatype.
1036 |Integer|An integer datatype corresponding to W3C XML Schema's xs:int datatype.
1037 |Long|A numeric datatype corresponding to W3C XML Schema's xs:long datatype.
1038 |Short|A numeric datatype corresponding to W3C XML Schema's xs:short datatype.
1039 |Decimal|A numeric datatype corresponding to W3C XML Schema's xs:decimal datatype.
1040 |Float|A numeric datatype corresponding to W3C XML Schema's xs:float datatype.
1041 |Double|A numeric datatype corresponding to W3C XML Schema's xs:double datatype.
1042 |Boolean|A datatype corresponding to W3C XML Schema's xs:boolean datatype.
1043 |URI|A datatype corresponding to W3C XML Schema's xs:anyURI datatype.
1044 |Count|A simple incrementing Integer type. The isSequence facet must be set to true, and the interval facet must be set to "1".
1045 |InclusiveValueRange|This value indicates that the startValue and endValue attributes provide the inclusive boundaries of a numeric range of type xs:decimal.
1046 |ExclusiveValueRange|This value indicates that the startValue and endValue attributes provide the exclusive boundaries of a numeric range, of type xs:decimal.
1047 |Incremental|This value indicates that the value increments according to the value provided in the interval facet, and has a true value for the isSequence facet.
1048 |ObservationalTimePeriod|Observational time periods are the superset of all time periods in SDMX. It is the union of the standard time periods (i.e. Gregorian time periods, the reporting time periods, and date time) and a time range.
1049 |StandardTimePeriod|Standard time periods is a superset of distinct time period in SDMX. It is the union of the basic time periods (i.e. the Gregorian time periods and date time) and the reporting time periods.
1050 |BasicTimePeriod|BasicTimePeriod time periods is a superset of the Gregorian time periods and a date time.
1051 |GregorianTimePeriod|Gregorian time periods correspond to calendar periods and are represented in ISO-8601 formats. This is the union of the year, year month, and date formats.
1052 |GregorianYear|A Gregorian time period corresponding to W3C XML Schema's xs:gYear datatype, which is based on ISO-8601.
1053 |GregorianYearMonth|A time datatype corresponding to W3C XML Schema's xs:gYearMonth datatype, which is based on ISO-8601.
1054 |GregorianDay|A time datatype corresponding to W3C XML Schema's xs:date datatype, which is based on ISO-8601.
1055 |ReportingTimePeriod|Reporting time periods represent periods of a standard length within a reporting year, where to start of the year (defined as a month and day) must be defined elsewhere or it is assumed to be January 1. This is the union of the reporting year, semester, trimester, quarter, month, week, and day.
1056 |ReportingYear|A reporting year represents a period of 1 year (P1Y) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingYearType.
1057 |ReportingSemester|A reporting semester represents a period of 6 months (P6M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingSemesterType.
1058 |ReportingTrimester|A reporting trimester represents a period of 4 months (P4M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingTrimesterType.
1059 |ReportingQuarter|A reporting quarter represents a period of 3 months (P3M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingQuarterType.
1060 |ReportingMonth|A reporting month represents a period of 1 month (P1M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingMonthType.
1061 |ReportingWeek|A reporting week represents a period of 7 days (P7D) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingWeekType.
1062 |ReportingDay|A reporting day represents a period of 1 day (P1D) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingDayType.
1063 |DateTime|A time datatype corresponding to W3C XML Schema's xs:dateTime datatype.
1064 |TimeRange|TimeRange defines a time period by providing a distinct start (date or date time) and a duration.
1065 |Month|A time datatype corresponding to W3C XML Schema's xs:gMonth datatype.
1066 |MonthDay|A time datatype corresponding to W3C XML Schema's xs:gMonthDay datatype.
1067 |Day|A time datatype corresponding to W3C XML Schema's xs:gDay datatype.
1068 |Time|A time datatype corresponding to W3C XML Schema's xs:time datatype.
1069 |Duration|A time datatype corresponding to W3C XML Schema's xs:duration datatype.
1070 |GeospatialInformation|A string used to describe geographical features like points (e.g., locations of places, landmarks, buildings, etc.), lines (e.g., rivers, roads, streets, etc.), or areas (e.g., geographical regions, countries, islands, land lots, etc.). A mix of different features is possible too, e.g., combining polygons and geographical points to describe a country and the location of its capital.
1071
1072 **TimeDataType:** TimeDataType restricts SimpleDataType to specify the allowable data types for representing a time value.
1073
1074 Derived by restriction of SimpleDataType.
1075
1076 Enumerations:
1077
1078 |**Value**|**Documentation**
1079 |ObservationalTimePeriod|Observational time periods are the superset of all time periods in SDMX. It is the union of the standard time periods (i.e. Gregorian time periods, the reporting time periods, and date time) and a time range.
1080 |StandardTimePeriod|Standard time periods is a superset of distinct time period in SDMX. It is the union of the basic time periods (i.e. the Gregorian time periods and date time) and the reporting time periods.
1081 |BasicTimePeriod|BasicTimePeriod time periods is a superset of the Gregorian time periods and a date time.
1082 |GregorianTimePeriod|Gregorian time periods correspond to calendar periods and are represented in ISO-8601 formats. This is the union of the year, year month, and date formats.
1083 |GregorianYear|A Gregorian time period corresponding to W3C XML Schema's xs:gYear datatype, which is based on ISO-8601.
1084 |GregorianYearMonth|A time datatype corresponding to W3C XML Schema's xs:gYearMonth datatype, which is based on ISO-8601.
1085 |GregorianDay|A time datatype corresponding to W3C XML Schema's xs:date datatype, which is based on ISO-8601.
1086 |ReportingTimePeriod|Reporting time periods represent periods of a standard length within a reporting year, where to start of the year (defined as a month and day) must be defined elsewhere or it is assumed to be January 1. This is the union of the reporting year, semester, trimester, quarter, month, week, and day.
1087 |ReportingYear|A reporting year represents a period of 1 year (P1Y) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingYearType.
1088 |ReportingSemester|A reporting semester represents a period of 6 months (P6M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingSemesterType.
1089 |ReportingTrimester|A reporting trimester represents a period of 4 months (P4M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingTrimesterType.
1090 |ReportingQuarter|A reporting quarter represents a period of 3 months (P3M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingQuarterType.
1091 |ReportingMonth|A reporting month represents a period of 1 month (P1M) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingMonthType.
1092 |ReportingWeek|A reporting week represents a period of 7 days (P7D) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingWeekType.
1093 |ReportingDay|A reporting day represents a period of 1 day (P1D) from the start date of the reporting year. This is expressed as using the SDMX specific ReportingDayType.
1094 |DateTime|A time datatype corresponding to W3C XML Schema's xs:dateTime datatype.
1095 |TimeRange|TimeRange defines a time period by providing a distinct start (date or date time) and a duration.
1096
1097 **UrnPrefixPart:** This is validates the first part of the URN (urn:sdmx.org.infomodel.<package>.<class=). It is intended to be further restricted.
1098
1099 Derived by restriction of xs:string.
1100 Regular Expression Pattern: urn:sdmx:org\.sdmx\.infomodel\.[a-z]+\.[A-Za-z]+=[^=]+
1101
1102 **UrnClassesPart:** This refines the prefix to make specific restrictions of package and class values. Note that only one of the patterns must match. It is intended to be further restricted.
1103
1104 Derived by restriction of UrnPrefixPart.
1105 Regular Expression Pattern: . +\.base\.Agency=.+.+\.base\.AgencyScheme=.+.+\.base\.Any=.+.+\.base\.DataConsumer=.+.+\.base\.DataConsumerScheme=.+.+\.base\.DataProvider=.+.+\.base\.DataProviderScheme=.+.+\.base\.MetadataProvider=.+.+\.base\.MetadataProviderScheme=.+.+\.base\.OrganisationUnit=.+.+\.base\.OrganisationUnitScheme=.+.+\.categoryscheme\.Categorisation=.+.+\.categoryscheme\.Category=.+.+\.categoryscheme\.CategoryScheme=.+.+\.categoryscheme\.ReportingCategory=.+.+\.categoryscheme\.ReportingTaxonomy=.+.+\.codelist\.Code=.+.+\.codelist\.Codelist=.+.+\.codelist\.HierarchicalCode=.+.+\.codelist\.Hierarchy=.+.+\.codelist\.HierarchyAssociation=.+.+\.codelist\.Level=.+.+\.codelist\.ValueList=.+.+\.conceptscheme\.Concept=.+.+\.conceptscheme\.ConceptScheme=.+.+\.datastructure\.AttributeDescriptor=.+.+\.datastructure\.DataAttribute=.+.+\.datastructure\.Dataflow=.+.+\.datastructure\.DataStructure=.+.+\.datastructure\.Dimension=.+.+\.datastructure\.DimensionDescriptor=.+.+\.datastructure\.GroupDimensionDescriptor=.+.+\.datastructure\.Measure=.+.+\.datastructure\.MeasureDescriptor=.+.+\.datastructure\.TimeDimension=.+.+\.metadatastructure\.MetadataAttribute=.+.+\.metadatastructure\.Metadataflow=.+.+\.metadatastructure\.MetadataSet=.+.+\.metadatastructure\.MetadataStructure=.+.+\.process\.Process=.+.+\.process\.ProcessStep=.+.+\.process\.Transition=.+.+\.registry\.DataConstraint=.+.+\.registry\.MetadataConstraint=.+.+\.registry\.MetadataProvisionAgreement=.+.+\.registry\.ProvisionAgreement=.+.+\.structuremapping\.CategorySchemeMap=.+.+\.structuremapping\.ConceptSchemeMap=.+.+\.structuremapping\.DatePatternMap=.+.+\.structuremapping\.EpochMap=.+.+\.structuremapping\.FrequencyFormatMapping=.+.+\.structuremapping\.OrganisationSchemeMap=.+.+\.structuremapping\.ReportingTaxonomyMap=.+.+\.structuremapping\.RepresentationMap=.+.+\.structuremapping\.StructureMap=.+.+\.transformation\.CustomType=.+.+\.transformation\.CustomTypeScheme=.+.+\.transformation\.NamePersonalisation=.+.+\.transformation\.NamePersonalisationScheme=.+.+\.transformation\.Ruleset=.+.+\.transformation\.RulesetScheme=.+.+\.transformation\.Transformation=.+.+\.transformation\.TransformationScheme=.+.+\.transformation\.UserDefinedOperator=.+.+\.transformation\.UserDefinedOperatorScheme=.+.+\.transformation\.VtlCodelistMapping=.+.+\.transformation\.VtlConceptMapping=.+.+\.transformation\.VtlDataflowMapping=.+.+\.transformation\.VtlMappingScheme=.+
1106
1107 **UrnAgencyPart:** This restricts the prefix and classes patterns to validate the agency part of the URN (=<agency_id>:).
1108
1109 Derived by restriction of UrnClassesPart.
1110 Regular Expression Pattern: . +=([A-Za-z][A-Za-z0-9_\-]*(\.[A-Za-z][A-Za-z0-9_\-]*)*):[^:]+
1111
1112 **WildcardUrnAgencyPart:** This restricts the prefix and classes patterns to validate the agency part of a wildcarded URN reference (=<agency_id>:).
1113
1114 Derived by restriction of UrnClassesPart.
1115 Regular Expression Pattern: . +=([A-Za-z][A-Za-z0-9_\-]*(\.[A-Za-z][A-Za-z0-9_\-]*)*):[^:]+.+=\*:[^:]+
1116
1117 **UrnMaintainableIdPart:** This refines the prefix, classes, and agnecy patterns to validate the maintainable ID part of the URN (:<maintainable_id(<version_number>)). Note that it does not restrict the version part as it is intended to be further restricted.
1118
1119 Derived by restriction of UrnAgencyPart.
1120 Regular Expression Pattern: . +:([A-Za-z0-9_@$\-]+)\([0-9A-Za-z\-\.\+]+\)[^(\(\))]
1121
1122 **WildcardUrnMaintainableIdPart:** This refines the prefix, classes, and agnecy patterns to validate the maintainable ID part of a wildcarded URN reference (:<maintainable_id(<version_number>)). Note that it does not restrict the version part as it is intended to be further restricted.
1123
1124 Derived by restriction of WildcardUrnAgencyPart.
1125 Regular Expression Pattern: . +:([A-Za-z0-9_@$\-]+)\([0-9A-Za-z\-\.\+\*]+\)[^(\(\))]*.+:\*\([0-9A-Za-z\-\.\+\*]+\)[^(\(\))]
1126
1127 **UrnVersionPart:** This refines the prefix, classes, agency, and maintainable id patterns to validate the version number part of the URN ((<version_number)). It accounts for both legacy and semantic versioning, but not wildarding (for referencing). It is meant to be further refined, although all parts after this are optional.
1128
1129 Derived by restriction of UrnMaintainableIdPart.
1130 Regular Expression Pattern: . +\((0|[1-9]\d*)(\.(0|[1-9]\d*))?\).*.+\((0|[1-9]\d*)(\.(0|[1-9]\d*)){2}(\-(([A-Za-z\-]|([A-Za-z\-][A-Za-z0-9\-]+)|([A-Za-z0-9\-]+[A-Za-z\-][A-Za-z0-9\-]*))|(0|[1-9][0-9]*))(\.(([A-Za-z\-]|([A-Za-z\-][A-Za-z0-9\-]+)|([A-Za-z0-9\-]+[A-Za-z\-][A-Za-z0-9\-]*))|(0|[1-9][0-9]*
1131 )))
1132
1133 *)?\).
1134
1135 **UrnReferenceVersionPart:** This refines the prefix, classes, agency, and maintainable id patterns to validate the version number part of a URN reference ((<version_number)). It accounts for both legacy and semantic versioning (including late binding). It is meant to be further refined, although all parts after this are optional.
1136
1137 Derived by restriction of UrnMaintainableIdPart.
1138 Regular Expression Pattern: . +\((0|[1-9]\d*)(\.(0|[1-9]\d*))?\).*.+\((0|[1-9]\d*)(\.(0|[1-9]\d*)){2}(\-(([A-Za-z\-]|([A-Za-z\-][A-Za-z0-9\-]+)|([A-Za-z0-9\-]+[A-Za-z\-][A-Za-z0-9\-]*))|(0|[1-9][0-9]*))(\.(([A-Za-z\-]|([A-Za-z\-][A-Za-z0-9\-]+)|([A-Za-z0-9\-]+[A-Za-z\-][A-Za-z0-9\-]*))|(0|[1-9][0-9]*~)~)~)*)?\).*.+\
1139
1140 (((
1141 0|[1-9]\d*)\+?)(\.((0|[1-9]\d*
1142 )))
1143
1144 {2}\).*.+\
1145
1146 (((
1147 0|[1-9]\d*))(\.((0|[1-9]\d*)\+?))(\.((0|[1-9]\d*
1148 )))
1149
1150 \).*.+\
1151
1152 (((
1153 0|[1-9]\d*)\+?)(\.((0|[1-9]\d*
1154 )))
1155
1156 (\.((0|[1-9]\d*)\+?))\).
1157
1158 **WildcardUrnVersionPart:** This refines the prefix, classes, agency, and maintainable id patterns to validate the version number part of a wildcarded URN reference ((<version_number)). It accounts for both legacy and semantic versioning (including late binding). It is meant to be further refined, although all parts after this are optional.
1159
1160 Derived by restriction of WildcardUrnMaintainableIdPart.
1161 Regular Expression Pattern: . +\((0|[1-9]\d*)(\.(0|[1-9]\d*))?\).*.+\((0|[1-9]\d*)(\.(0|[1-9]\d*)){2}(\-(([A-Za-z\-]|([A-Za-z\-][A-Za-z0-9\-]+)|([A-Za-z0-9\-]+[A-Za-z\-][A-Za-z0-9\-]*))|(0|[1-9][0-9]*))(\.(([A-Za-z\-]|([A-Za-z\-][A-Za-z0-9\-]+)|([A-Za-z0-9\-]+[A-Za-z\-][A-Za-z0-9\-]*))|(0|[1-9][0-9]*~)~)~)*)?\).*.+\
1162
1163 (((
1164 0|[1-9]\d*)\+?)(\.((0|[1-9]\d*
1165 )))
1166
1167 {2}\).*.+\
1168
1169 (((
1170 0|[1-9]\d*))(\.((0|[1-9]\d*)\+?))(\.((0|[1-9]\d*
1171 )))
1172
1173 \).*.+\
1174
1175 (((
1176 0|[1-9]\d*)\+?)(\.((0|[1-9]\d*
1177 )))
1178
1179 (\.((0|[1-9]\d*)\+?))\).*.+\(\*\).
1180
1181 **UrnType:** The completes the refinement of the prefix, classes, agency, maintainable id, and version number patterns to validate the last, and optional, nested component part of the URN (e.g. (<version_number>)<containerobject-id>.<object-id>\*). The nested patterns provide a complete validation of the URN pattern.
1182
1183 Derived by restriction of UrnVersionPart.
1184 Regular Expression Pattern: . +\)(\.[A-Za-z0-9_@$\-]+(\.[A-Za-z0-9_@$\-]+)*)?
1185
1186 **UrnReferenceType:** The completes the refinement of the prefix, classes, agency, maintainable id, and version number patterns to validate the last, and optional, nested component part of a URN reference (e.g. (<version_number>)<containerobject-id>.<object-id>\*). The nested patterns provide a complete validation of the URN pattern.
1187
1188 Derived by restriction of UrnReferenceVersionPart.
1189 Regular Expression Pattern: . +\)(\.[A-Za-z0-9_@$\-]+(\.[A-Za-z0-9_@$\-]+)*)?
1190
1191 **WildcardUrnType:** The completes the refinement of the prefix, classes, agency, maintainable id, and version number patterns to validate the last, and optional, nested component part of a wildcarded URN reference (e.g. (<version_number>)<containerobject-id>.<object-id>\*). The nested patterns provide a complete validation of the URN pattern.
1192
1193 Derived by restriction of WildcardUrnVersionPart.
1194 Regular Expression Pattern: . +\)(\.[A-Za-z0-9_@$\-]+(\.[A-Za-z0-9_@$\-]+)*)?.+\)(\.\*(\.\*)*)?
1195
1196 **MaintainableUrnType:** Restricts the URN so that the pattern ends after the version part.
1197
1198 Derived by restriction of UrnType.
1199 Regular Expression Pattern: . +\)
1200
1201 **MaintainableUrnReferenceType:** Restricts the URN reference so that the pattern ends after the version part.
1202
1203 Derived by restriction of UrnReferenceType.
1204 Regular Expression Pattern: . +\)
1205
1206 **ComponentUrnType:** Restricts the URN so that the pattern ends after the first component part.
1207
1208 Derived by restriction of UrnType.
1209 Regular Expression Pattern: . +\)\.[A-Za-z0-9_@$\-]+
1210
1211 **ComponentUrnReferenceType:** Restricts the URN reference so that the pattern ends after the first component part.
1212
1213 Derived by restriction of UrnReferenceType.
1214 Regular Expression Pattern: . +\)\.[A-Za-z0-9_@$\-]+
1215
1216 **AgencyUrnType:** Urn type for an agency.
1217
1218 Derived by restriction of ComponentUrnType.
1219 Regular Expression Pattern: . +\.base\.Agency=.+:AGENCIES\(1\.0\).+
1220
1221 **AgencySchemeUrnType:** Urn type for an agency scheme.
1222
1223 Derived by restriction of MaintainableUrnType.
1224 Regular Expression Pattern: . +\.base\.AgencyScheme=.+:AGENCIES\(1\.0\)
1225
1226 **DataConsumerUrnType:** Urn type for a data consumer.
1227
1228 Derived by restriction of ComponentUrnType.
1229 Regular Expression Pattern: . +\.base\.DataConsumer=.+:DATA_CONSUMERS\(1\.0\).+
1230
1231 **DataConsumerSchemeUrnType:** Urn type for a data consumer scheme.
1232
1233 Derived by restriction of MaintainableUrnType.
1234 Regular Expression Pattern: . +\.base\.DataConsumerScheme=.+:DATA_CONSUMERS\(1\.0\)
1235
1236 **DataProviderUrnType:** Urn type for a data provider.
1237
1238 Derived by restriction of ComponentUrnType.
1239 Regular Expression Pattern: . +\.base\.DataProvider=.+:DATA_PROVIDERS\(1\.0\).+
1240
1241 **DataProviderSchemeUrnType:** Urn type for a data provider scheme.
1242
1243 Derived by restriction of MaintainableUrnType.
1244 Regular Expression Pattern: . +\.base\.DataProviderScheme=.+:DATA_PROVIDERS\(1\.0\)
1245
1246 **MetadataProviderUrnType:** Urn type for a metadata provider.
1247
1248 Derived by restriction of ComponentUrnType.
1249 Regular Expression Pattern: . +\.base\.MetadataProvider=.+:METADATA_PROVIDERS\(1\.0\).+
1250
1251 **MetadataProviderSchemeUrnType:** Urn type for a metadata provider scheme.
1252
1253 Derived by restriction of MaintainableUrnType.
1254 Regular Expression Pattern: . +\.base\.MetadataProviderScheme=.+:METADATA_PROVIDERS\(1\.0\)
1255
1256 **OrganisationUnitUrnType:** Urn type for an organisation unit.
1257
1258 Derived by restriction of ComponentUrnType.
1259 Regular Expression Pattern: . +\.base\.OrganisationUnit=.+\(1\.0\).+
1260
1261 **OrganisationUnitSchemeUrnType:** Urn type for an organisation unit scheme.
1262
1263 Derived by restriction of MaintainableUrnType.
1264 Regular Expression Pattern: . +\.base\.OrganisationUnitScheme=.+\(1\.0\)
1265
1266 **CategorisationUrnType:** Urn type for a categorisation.
1267
1268 Derived by restriction of MaintainableUrnType.
1269 Regular Expression Pattern: . +\.categoryscheme\.Categorisation=.+
1270
1271 **CategoryUrnType:** Urn type for a category.
1272
1273 Derived by restriction of UrnType.
1274 Regular Expression Pattern: . +\.categoryscheme\.Category=.+
1275
1276 **CategorySchemeUrnType:** Urn type for a category scheme.
1277
1278 Derived by restriction of MaintainableUrnType.
1279 Regular Expression Pattern: . +\.categoryscheme\.CategoryScheme=.+
1280
1281 **ReportingCategoryUrnType:** Urn type for a reporting category.
1282
1283 Derived by restriction of UrnType.
1284 Regular Expression Pattern: . +\.categoryscheme\.ReportingCategory=.+
1285
1286 **ReportingTaxonomyUrnType:** Urn type for a reporting taxonomy.
1287
1288 Derived by restriction of MaintainableUrnType.
1289 Regular Expression Pattern: . +\.categoryscheme\.ReportingTaxonomy=.+
1290
1291 **CodeUrnType:** Urn type for a code.
1292
1293 Derived by restriction of ComponentUrnType.
1294 Regular Expression Pattern: . +\.codelist\.Code=.+
1295
1296 **CodelistUrnType:** Urn type for a codelist.
1297
1298 Derived by restriction of MaintainableUrnType.
1299 Regular Expression Pattern: . +\.codelist\.Codelist=.+
1300
1301 **HierarchicalCodeUrnType:** Urn type for a hierarchical code.
1302
1303 Derived by restriction of UrnType.
1304 Regular Expression Pattern: . +\.codelist\.HierarchicalCode=.+
1305
1306 **HierarchyUrnType:** Urn type for a hierarchy.
1307
1308 Derived by restriction of MaintainableUrnType.
1309 Regular Expression Pattern: . +\.codelist\.Hierarchy=.+
1310
1311 **HierarchyAssociationUrnType:** Urn type for a hierarchy association.
1312
1313 Derived by restriction of MaintainableUrnType.
1314 Regular Expression Pattern: . +\.codelist\.HierarchyAssociation=.+
1315
1316 **LevelUrnType:** Urn type for a level.
1317
1318 Derived by restriction of ComponentUrnType.
1319 Regular Expression Pattern: . +\.codelist\.Level=.+
1320
1321 **ValueListUrnType:** Urn type for a value list.
1322
1323 Derived by restriction of MaintainableUrnType.
1324 Regular Expression Pattern: . +\.codelist\.ValueList=.+
1325
1326 **ConceptUrnType:** Urn type for a concept.
1327
1328 Derived by restriction of ComponentUrnType.
1329 Regular Expression Pattern: . +\.conceptscheme\.Concept=.+
1330
1331 **ConceptSchemeUrnType:** Urn type for a concept scheme.
1332
1333 Derived by restriction of MaintainableUrnType.
1334 Regular Expression Pattern: . +\.conceptscheme\.ConceptScheme=.+
1335
1336 **AttributeDescriptorUrnType:** Urn type for an attribute descriptor.
1337
1338 Derived by restriction of ComponentUrnType.
1339 Regular Expression Pattern: . +\.datastructure\.AttributeDescriptor=.+
1340
1341 **DataAttributeUrnType:** Urn type for a data attribute.
1342
1343 Derived by restriction of ComponentUrnType.
1344 Regular Expression Pattern: . +\.datastructure\.DataAttribute=.+
1345
1346 **DataflowUrnType:** Urn type for a dataflow.
1347
1348 Derived by restriction of MaintainableUrnType.
1349 Regular Expression Pattern: . +\.datastructure\.Dataflow=.+
1350
1351 **DataStructureUrnType:** Urn type for a data structure.
1352
1353 Derived by restriction of MaintainableUrnType.
1354 Regular Expression Pattern: . +\.datastructure\.DataStructure=.+
1355
1356 **DimensionUrnType:** Urn type for a dimension.
1357
1358 Derived by restriction of ComponentUrnType.
1359 Regular Expression Pattern: . +\.datastructure\.Dimension=.+
1360
1361 **DimensionDescriptorUrnType:** Urn type for a dimension descriptor.
1362
1363 Derived by restriction of ComponentUrnType.
1364 Regular Expression Pattern: . +\.datastructure\.DimensionDescriptor=.+
1365
1366 **GroupDimensionDescriptorUrnType:** Urn type for a group dimension descriptor.
1367
1368 Derived by restriction of ComponentUrnType.
1369 Regular Expression Pattern: . +\.datastructure\.GroupDimensionDescriptor=.+
1370
1371 **MeasureUrnType:** Urn type for a measure.
1372
1373 Derived by restriction of ComponentUrnType.
1374 Regular Expression Pattern: . +\.datastructure\.Measure=.+
1375
1376 **MeasureDescriptorUrnType:** Urn type for a measure descriptor.
1377
1378 Derived by restriction of ComponentUrnType.
1379 Regular Expression Pattern: . +\.datastructure\.MeasureDescriptor=.+
1380
1381 **TimeDimensionUrnType:** Urn type for a time dimension.
1382
1383 Derived by restriction of ComponentUrnType.
1384 Regular Expression Pattern: . +\.datastructure\.TimeDimension=.+
1385
1386 **MetadataAttributeUrnType:** Urn type for a metadata attibute.
1387
1388 Derived by restriction of UrnType.
1389 Regular Expression Pattern: . +\.metadatastructure\.MetadataAttribute=.+
1390
1391 **MetadataflowUrnType:** Urn type for a metadataflow.
1392
1393 Derived by restriction of MaintainableUrnType.
1394 Regular Expression Pattern: . +\.metadatastructure\.Metadataflow=.+
1395
1396 **MetadataSetUrnType:** Urn type for a metadata set.
1397
1398 Derived by restriction of MaintainableUrnType.
1399 Regular Expression Pattern: . +\.metadatastructure\.MetadataSet=.+
1400
1401 **MetadataStructureUrnType:** Urn type for a metadata structure.
1402
1403 Derived by restriction of MaintainableUrnType.
1404 Regular Expression Pattern: . +\.metadatastructure\.MetadataStructure=.+
1405
1406 **ProcessUrnType:** Urn type for a process.
1407
1408 Derived by restriction of MaintainableUrnType.
1409 Regular Expression Pattern: . +\.process\.Process=.+
1410
1411 **ProcessStepUrnType:** Urn type for a process step.
1412
1413 Derived by restriction of UrnType.
1414 Regular Expression Pattern: . +\.process\.ProcessStep=.+
1415
1416 **TransitionUrnType:** Urn type for a transition.
1417
1418 Derived by restriction of UrnType.
1419 Regular Expression Pattern: .+\.process\.Transition=.+
1420
1421 **DataConstraintUrnType:** Urn type for a data constraint.
1422
1423 Derived by restriction of MaintainableUrnType.
1424 Regular Expression Pattern: . +\.registry\.DataConstraint=.+
1425
1426 **MetadataConstraintUrnType:** Urn type for a metadata constraint.
1427
1428 Derived by restriction of MaintainableUrnType.
1429 Regular Expression Pattern: . +\.registry\.MetadataConstraint=.+
1430
1431 **MetadataProvisionAgreementUrnType:** Urn type for a metadata provision agreement.
1432
1433 Derived by restriction of MaintainableUrnType.
1434 Regular Expression Pattern: . +\.registry\.MetadataProvisionAgreement=.+
1435
1436 **ProvisionAgreementUrnType:** Urn type for a provision agreement.
1437
1438 Derived by restriction of MaintainableUrnType.
1439 Regular Expression Pattern: . +\.registry\.ProvisionAgreement=.+
1440
1441 **CategorySchemeMapUrnType:** Urn type for a category scheme map.
1442
1443 Derived by restriction of MaintainableUrnType.
1444 Regular Expression Pattern: . +\.structuremapping\.CategorySchemeMap=.+
1445
1446 **ConceptSchemeMapUrnType:** Urn type for a concept scheme map.
1447
1448 Derived by restriction of MaintainableUrnType.
1449 Regular Expression Pattern: . +\.structuremapping\.ConceptSchemeMap=.+
1450
1451 **DatePatternMapUrnType:** Urn type for a date pattern map.
1452
1453 Derived by restriction of ComponentUrnType.
1454 Regular Expression Pattern: . +\.structuremapping\.DatePatternMap=.+
1455
1456 **EpochMapUrnType:** Urn type for a epoch map.
1457
1458 Derived by restriction of ComponentUrnType.
1459 Regular Expression Pattern: . +\.structuremapping\.EpochMap=.+
1460
1461 **FrequencyFormatMappingUrnType:** Urn type for a frequency format mapping.
1462
1463 Derived by restriction of ComponentUrnType.
1464 Regular Expression Pattern: . +\.structuremapping\.FrequencyFormatMapping=.+
1465
1466 **OrganisationSchemeMapUrnType:** Urn type for a organisation scheme map.
1467
1468 Derived by restriction of MaintainableUrnType.
1469 Regular Expression Pattern: . +\.structuremapping\.OrganisationSchemeMap=.+
1470
1471 **ReportingTaxonomyMapUrnType:** Urn type for a reporting taxonomy map.
1472
1473 Derived by restriction of MaintainableUrnType.
1474 Regular Expression Pattern: . +\.structuremapping\.ReportingTaxonomyMap=.+
1475
1476 **RepresentationMapUrnType:** Urn type for a representation map.
1477
1478 Derived by restriction of MaintainableUrnType.
1479 Regular Expression Pattern: . +\.structuremapping\.RepresentationMap=.+
1480
1481 **StructureMapUrnType:** Urn type for a structure map.
1482
1483 Derived by restriction of MaintainableUrnType.
1484 Regular Expression Pattern: . +\.structuremapping\.StructureMap=.+
1485
1486 **CustomTypeUrnType:** Urn type for a custom type.
1487
1488 Derived by restriction of ComponentUrnType.
1489 Regular Expression Pattern: . +\.transformation\.CustomType=.+
1490
1491 **CustomTypeSchemeUrnType:** Urn type for a custom type scheme.
1492
1493 Derived by restriction of MaintainableUrnType.
1494 Regular Expression Pattern: . +\.transformation\.CustomTypeScheme=.+
1495
1496 **NamePersonalisationUrnType:** Urn type for a name personalisation.
1497
1498 Derived by restriction of ComponentUrnType.
1499 Regular Expression Pattern: . +\.transformation\.NamePersonalisation=.+
1500
1501 **NamePersonalisationSchemeUrnType:** Urn type for a name personalisation scheme.
1502
1503 Derived by restriction of MaintainableUrnType.
1504 Regular Expression Pattern: . +\.transformation\.NamePersonalisationScheme=.+
1505
1506 **RulesetUrnType:** Urn type for a ruleset.
1507
1508 Derived by restriction of ComponentUrnType.
1509 Regular Expression Pattern: . +\.transformation\.Ruleset=.+
1510
1511 **RulesetSchemeUrnType:** Urn type for a ruleste scheme.
1512
1513 Derived by restriction of MaintainableUrnType.
1514 Regular Expression Pattern: . +\.transformation\.RulesetScheme=.+
1515
1516 **TransformationUrnType:** Urn type for a transformation.
1517
1518 Derived by restriction of ComponentUrnType.
1519 Regular Expression Pattern: . +\.transformation\.Transformation=.+
1520
1521 **TransformationSchemeUrnType:** Urn type for a transformation scheme.
1522
1523 Derived by restriction of MaintainableUrnType.
1524 Regular Expression Pattern: . +\.transformation\.TransformationScheme=.+
1525
1526 **UserDefinedOperatorUrnType:** Urn type for a user defined operator.
1527
1528 Derived by restriction of ComponentUrnType.
1529 Regular Expression Pattern: . +\.transformation\.UserDefinedOperator=.+
1530
1531 **UserDefinedOperatorSchemeUrnType:** Urn type for a user defined operator scheme.
1532
1533 Derived by restriction of MaintainableUrnType.
1534 Regular Expression Pattern: . +\.transformation\.UserDefinedOperatorScheme=.+
1535
1536 **VtlMappingUrnType:** Urn type for a VTL mapping.
1537
1538 Derived by restriction of ComponentUrnType.
1539 Regular Expression Pattern: . +\.transformation\.VtlCodelistMapping=.+.+\.transformation\.VtlConceptMapping=.+.+\.transformation\.VtlDataflowMapping=.+
1540
1541 **VtlMappingSchemeUrnType:** Urn type for a VTL mapping scheme.
1542
1543 Derived by restriction of MaintainableUrnType.
1544 Regular Expression Pattern: . +\.transformation\.VtlMappingScheme=.+
1545
1546 **StructureOrUsageReferenceType:** A reference type for a structure or structure usage.
1547
1548 Derived by restriction of MaintainableUrnReferenceType.
1549 Regular Expression Pattern: . +\.datastructure\.DataStructure=.+.+\.datastructure\.Dataflow=.+.+\.metadatastructure\.MetadataStructure=.+.+\.metadatastructure\.Metadataflow=.+
1550
1551 **StructureUsageReferenceType:** A reference type for structure usage.
1552
1553 Derived by restriction of StructureOrUsageReferenceType.
1554 Regular Expression Pattern: . +\.datastructure\.Dataflow=.+.+\.metadatastructure\.Metadataflow=.+
1555
1556 **StructureReferenceType:** A reference type for a structure.
1557
1558 Derived by restriction of StructureOrUsageReferenceType.
1559 Regular Expression Pattern: . +\.datastructure\.DataStructure=.+.+\.metadatastructure\.MetadataStructure=.+
1560
1561 **AnyCodelistReferenceType:** A reference type for a codelist or value list.
1562
1563 Derived by restriction of MaintainableUrnReferenceType.
1564 Regular Expression Pattern: . +\.codelist\.Codelist=.+.+\.codelist\.ValueList=.+
1565
1566 **OrganisationSchemeReferenceType:** A reference type for any type of organisation scheme.
1567
1568 Derived by restriction of MaintainableUrnReferenceType.
1569 Regular Expression Pattern: . +\.base\.AgencyScheme=.+:AGENCIES\(.+\).+\.base\.DataConsumerScheme=.+:DATA_CONSUMERS\(.+\).+\.base\.DataProviderScheme=.+:DATA_PROVIDERS\(.+\).+\.base\.MetadataProviderScheme=.+:METADATA_PROVIDERS\(.+\).+\.base\.OrganisationUnitScheme=.+
1570
1571 **OrganisationReferenceType:** A reference type for any type of organisation.
1572
1573 Derived by restriction of ComponentUrnReferenceType.
1574 Regular Expression Pattern: . +\.base\.Agency=.+:AGENCIES\(.+\).+.+\.base\.DataConsumer=.+:DATA_CONSUMERS\(.+\).+.+\.base\.DataProvider=.+:DATA_PROVIDERS\(.+\).+.+\.base\.MetadataProvider=.+:METADATA_PROVIDERS\(.+\).+.+\.base\.OrganisationUnit=.+
1575
1576 **ConstraintReferenceType:** A reference for any type of constraint.
1577
1578 Derived by restriction of MaintainableUrnReferenceType.
1579 Regular Expression Pattern: . +\.registry\.DataConstraint=.+.+\.registry\.MetadataConstraint=.+
1580
1581 **AgencyReferenceType:** A reference type for an agency.
1582
1583 Derived by restriction of OrganisationReferenceType.
1584 Regular Expression Pattern: . +\.base\.Agency=.+:AGENCIES\(.+\).+
1585
1586 **AgencySchemeReferenceType:** A reference type for an agency scheme.
1587
1588 Derived by restriction of OrganisationSchemeReferenceType.
1589 Regular Expression Pattern: . +\.base\.AgencyScheme=.+:AGENCIES\(.+\)
1590
1591 **DataConsumerReferenceType:** A reference type for a data consumer.
1592
1593 Derived by restriction of OrganisationReferenceType.
1594 Regular Expression Pattern: . +\.base\.DataConsumer=.+:DATA_CONSUMERS\(.+\).+
1595
1596 **DataConsumerSchemeReferenceType:** A reference type for a data consumer scheme.
1597
1598 Derived by restriction of OrganisationSchemeReferenceType.
1599 Regular Expression Pattern: . +\.base\.DataConsumerScheme=.+:DATA_CONSUMERS\(.+\)
1600
1601 **DataProviderReferenceType:** A reference type for a data provider.
1602
1603 Derived by restriction of OrganisationReferenceType.
1604 Regular Expression Pattern: . +\.base\.DataProvider=.+:DATA_PROVIDERS\(.+\).+
1605
1606 **DataProviderSchemeReferenceType:** A reference type for a data provider scheme.
1607
1608 Derived by restriction of OrganisationSchemeReferenceType.
1609 Regular Expression Pattern: . +\.base\.DataProviderScheme=.+:DATA_PROVIDERS\(.+\)
1610
1611 **MetadataProviderReferenceType:** A reference type for a metadata provider.
1612
1613 Derived by restriction of OrganisationReferenceType.
1614 Regular Expression Pattern: . +\.base\.MetadataProvider=.+:METADATA_PROVIDERS\(.+\).+
1615
1616 **MetadataProviderSchemeReferenceType:** A reference type for a metadata provider scheme.
1617
1618 Derived by restriction of OrganisationSchemeReferenceType.
1619 Regular Expression Pattern: . +\.base\.MetadataProviderScheme=.+:METADATA_PROVIDERS\(.+\)
1620
1621 **OrganisationUnitReferenceType:** A reference type for an organisation unit.
1622
1623 Derived by restriction of OrganisationReferenceType.
1624 Regular Expression Pattern: . +\.base\.OrganisationUnit=.+
1625
1626 **OrganisationUnitSchemeReferenceType:** A reference type for an organisation unit scheme.
1627
1628 Derived by restriction of OrganisationSchemeReferenceType.
1629 Regular Expression Pattern: . +\.base\.OrganisationUnitScheme=.+
1630
1631 **CategorisationReferenceType:** A reference type for a categorisation.
1632
1633 Derived by restriction of MaintainableUrnReferenceType.
1634 Regular Expression Pattern: . +\.categoryscheme\.Categorisation=.+
1635
1636 **CategoryReferenceType:** A reference type for a category.
1637
1638 Derived by restriction of UrnReferenceType.
1639 Regular Expression Pattern: . +\.categoryscheme\.Category=.+
1640
1641 **CategorySchemeReferenceType:** A reference type for a cateogry scheme.
1642
1643 Derived by restriction of MaintainableUrnReferenceType.
1644 Regular Expression Pattern: . +\.categoryscheme\.CategoryScheme=.+
1645
1646 **ReportingCategoryReferenceType:** A reference type for a reporting category.
1647
1648 Derived by restriction of UrnReferenceType.
1649 Regular Expression Pattern: . +\.categoryscheme\.ReportingCategory=.+
1650
1651 **ReportingTaxonomyReferenceType:** A reference type for a reporting taxonomy.
1652
1653 Derived by restriction of MaintainableUrnReferenceType.
1654 Regular Expression Pattern: . +\.categoryscheme\.ReportingTaxonomy=.+
1655
1656 **CodeReferenceType:** A reference type for a code.
1657
1658 Derived by restriction of ComponentUrnReferenceType.
1659 Regular Expression Pattern: . +\.codelist\.Code=.+
1660
1661 **CodelistReferenceType:** A reference type for a codelist.
1662
1663 Derived by restriction of AnyCodelistReferenceType.
1664 Regular Expression Pattern: . +\.codelist\.Codelist=.+
1665
1666 **HierarchicalCodeReferenceType:** A reference type for a hierarchical code.
1667
1668 Derived by restriction of UrnReferenceType.
1669 Regular Expression Pattern: . +\.codelist\.HierarchicalCode=.+
1670
1671 **HierarchyReferenceType:** A reference type for a hierarchy.
1672
1673 Derived by restriction of MaintainableUrnReferenceType.
1674 Regular Expression Pattern: . +\.codelist\.Hierarchy=.+
1675
1676 **HierarchyAssociationReferenceType:** A reference type for a hierarchy association.
1677
1678 Derived by restriction of MaintainableUrnReferenceType.
1679 Regular Expression Pattern: . +\.codelist\.HierarchyAssociation=.+
1680
1681 **LevelReferenceType:** A reference type for a level.
1682
1683 Derived by restriction of ComponentUrnReferenceType.
1684 Regular Expression Pattern: . +\.codelist\.Level=.+
1685
1686 **ValueListReferenceType:** A reference type for a value list.
1687
1688 Derived by restriction of AnyCodelistReferenceType.
1689 Regular Expression Pattern: . +\.codelist\.ValueList=.+
1690
1691 **ConceptReferenceType:** A reference type for a concept.
1692
1693 Derived by restriction of ComponentUrnReferenceType.
1694 Regular Expression Pattern: . +\.conceptscheme\.Concept=.+
1695
1696 **ConceptSchemeReferenceType:** A reference type for a concept scheme.
1697
1698 Derived by restriction of MaintainableUrnReferenceType.
1699 Regular Expression Pattern: . +\.conceptscheme\.ConceptScheme=.+
1700
1701 **AttributeDescriptorReferenceType:** A reference type for an attribute descriptor.
1702
1703 Derived by restriction of ComponentUrnReferenceType.
1704 Regular Expression Pattern: . +\.datastructure\.AttributeDescriptor=.+
1705
1706 **DataAttributeReferenceType:** A reference type for a data attribute.
1707
1708 Derived by restriction of ComponentUrnReferenceType.
1709 Regular Expression Pattern: . +\.datastructure\.DataAttribute=.+
1710
1711 **DataflowReferenceType:** A reference type for a dataflow.
1712
1713 Derived by restriction of StructureUsageReferenceType.
1714 Regular Expression Pattern: . +\.datastructure\.Dataflow=.+
1715
1716 **DataStructureReferenceType:** A reference type for a data structure.
1717
1718 Derived by restriction of StructureReferenceType.
1719 Regular Expression Pattern: . +\.datastructure\.DataStructure=.+
1720
1721 **DimensionReferenceType:** A reference type for a dimension.
1722
1723 Derived by restriction of ComponentUrnReferenceType.
1724 Regular Expression Pattern: . +\.datastructure\.Dimension=.+
1725
1726 **DimensionDescriptorReferenceType:** A reference type for a dimension descriptor.
1727
1728 Derived by restriction of ComponentUrnReferenceType.
1729 Regular Expression Pattern: . +\.datastructure\.DimensionDescriptor=.+
1730
1731 **GroupDimensionDescriptorReferenceType:** A reference type for a group dimension descriptor.
1732
1733 Derived by restriction of ComponentUrnReferenceType.
1734 Regular Expression Pattern: . +\.datastructure\.GroupDimensionDescriptor=.+
1735
1736 **MeasureReferenceType:** A reference type for a measure.
1737
1738 Derived by restriction of ComponentUrnReferenceType.
1739 Regular Expression Pattern: . +\.datastructure\.Measure=.+
1740
1741 **MeasureDescriptorReferenceType:** A reference type for a measure descriptor.
1742
1743 Derived by restriction of ComponentUrnReferenceType.
1744 Regular Expression Pattern: . +\.datastructure\.MeasureDescriptor=.+
1745
1746 **TimeDimensionReferenceType:** A reference type for a time dimension.
1747
1748 Derived by restriction of ComponentUrnReferenceType.
1749 Regular Expression Pattern: . +\.datastructure\.TimeDimension=.+
1750
1751 **MetadataAttributeReferenceType:** A reference type for a metadata attribute.
1752
1753 Derived by restriction of UrnReferenceType.
1754 Regular Expression Pattern: . +\.metadatastructure\.MetadataAttribute=.+
1755
1756 **MetadataflowReferenceType:** A reference type for a metadataflow.
1757
1758 Derived by restriction of StructureUsageReferenceType.
1759 Regular Expression Pattern: . +\.metadatastructure\.Metadataflow=.+
1760
1761 **MetadataSetReferenceType:** A reference type for a metadata set.
1762
1763 Derived by restriction of StructureReferenceType.
1764 Regular Expression Pattern: . +\.metadatastructure\.MetadataSet=.+
1765
1766 **MetadataStructureReferenceType:** A reference type for a metadata structure.
1767
1768 Derived by restriction of StructureReferenceType.
1769 Regular Expression Pattern: . +\.metadatastructure\.MetadataStructure=.+
1770
1771 **ProcessReferenceType:** A reference type for a process.
1772
1773 Derived by restriction of MaintainableUrnReferenceType.
1774 Regular Expression Pattern: . +\.process\.Process=.+
1775
1776 **ProcessStepReferenceType:** A reference type for a process step.
1777
1778 Derived by restriction of UrnReferenceType.
1779 Regular Expression Pattern: . +\.process\.ProcessStep=.+
1780
1781 **TransitionReferenceType:** A reference type for a transition.
1782
1783 Derived by restriction of UrnReferenceType.
1784 Regular Expression Pattern: . +\.process\.Transition=.+
1785
1786 **DataConstraintReferenceType:** A reference type for a data constraint.
1787
1788 Derived by restriction of ConstraintReferenceType.
1789 Regular Expression Pattern: . +\.registry\.DataConstraint=.+
1790
1791 **MetadataConstraintReferenceType:** A reference type for a metadata constraint.
1792
1793 Derived by restriction of ConstraintReferenceType.
1794 Regular Expression Pattern: . +\.registry\.MetadataConstraint=.+
1795
1796 **MetadataProvisionAgreementReferenceType:** A reference type for a metadata provision agreement.
1797
1798 Derived by restriction of MaintainableUrnReferenceType.
1799 Regular Expression Pattern: . +\.registry\.MetadataProvisionAgreement=.+
1800
1801 **ProvisionAgreementReferenceType:** A reference type for a provision agreement.
1802
1803 Derived by restriction of MaintainableUrnReferenceType.
1804 Regular Expression Pattern: . +\.registry\.ProvisionAgreement=.+
1805
1806 **CategorySchemeMapReferenceType:** A reference type for a category scheme map.
1807
1808 Derived by restriction of MaintainableUrnReferenceType.
1809 Regular Expression Pattern: . +\.structuremapping\.CategorySchemeMap=.+
1810
1811 **ConceptSchemeMapReferenceType:** A reference type for a concept scheme map.
1812
1813 Derived by restriction of MaintainableUrnReferenceType.
1814 Regular Expression Pattern: . +\.structuremapping\.ConceptSchemeMap=.+
1815
1816 **DatePatternMapReferenceType:** A reference type for a date pattern map.
1817
1818 Derived by restriction of ComponentUrnReferenceType.
1819 Regular Expression Pattern: . +\.structuremapping\.DatePatternMap=.+
1820
1821 **EpochMapReferenceType:** A reference type for an epoch map.
1822
1823 Derived by restriction of ComponentUrnReferenceType.
1824 Regular Expression Pattern: . +\.structuremapping\.EpochMap=.+
1825
1826 **FrequencyFormatMappingReferenceType:** A reference type for a frequnecy format mapping.
1827
1828 Derived by restriction of ComponentUrnReferenceType.
1829 Regular Expression Pattern: . +\.structuremapping\.FrequencyFormatMapping=.+
1830
1831 **OrganisationSchemeMapReferenceType:** A reference type for a organisation scheme map.
1832
1833 Derived by restriction of MaintainableUrnReferenceType.
1834 Regular Expression Pattern: . +\.structuremapping\.OrganisationSchemeMap=.+
1835
1836 **ReportingTaxonomyMapReferenceType:** A reference type for a reporting taxonomy map.
1837
1838 Derived by restriction of MaintainableUrnReferenceType.
1839 Regular Expression Pattern: . +\.structuremapping\.ReportingTaxonomyMap=.+
1840
1841 **RepresentationMapReferenceType:** A reference type for a representation map.
1842
1843 Derived by restriction of MaintainableUrnReferenceType.
1844 Regular Expression Pattern: . +\.structuremapping\.RepresentationMap=.+
1845
1846 **StructureMapReferenceType:** A reference type for a structure map.
1847
1848 Derived by restriction of MaintainableUrnReferenceType.
1849 Regular Expression Pattern: . +\.structuremapping\.StructureMap=.+
1850
1851 **CustomTypeReferenceType:** A reference type for a custom type.
1852
1853 Derived by restriction of ComponentUrnReferenceType.
1854 Regular Expression Pattern: . +\.transformation\.CustomType=.+
1855
1856 **CustomTypeSchemeReferenceType:** A reference type for a custom type scheme.
1857
1858 Derived by restriction of MaintainableUrnReferenceType.
1859 Regular Expression Pattern: . +\.transformation\.CustomTypeScheme=.+
1860
1861 **NamePersonalisationReferenceType:** A reference type for a name personalisation.
1862
1863 Derived by restriction of ComponentUrnReferenceType.
1864 Regular Expression Pattern: . +\.transformation\.NamePersonalisation=.+
1865
1866 **NamePersonalisationSchemeReferenceType:** A reference type for a name personalisation scheme.
1867
1868 Derived by restriction of MaintainableUrnReferenceType.
1869 Regular Expression Pattern: . +\.transformation\.NamePersonalisationScheme=.+
1870
1871 **RulesetReferenceType:** A reference type for a ruleset.
1872
1873 Derived by restriction of ComponentUrnReferenceType.
1874 Regular Expression Pattern: . +\.transformation\.Ruleset=.+
1875
1876 **RulesetSchemeReferenceType:** A reference type for a ruleset scheme.
1877
1878 Derived by restriction of MaintainableUrnReferenceType.
1879 Regular Expression Pattern: . +\.transformation\.RulesetScheme=.+
1880
1881 **TransformationReferenceType:** A reference type for a transformation.
1882
1883 Derived by restriction of ComponentUrnReferenceType.
1884 Regular Expression Pattern: . +\.transformation\.Transformation=.+
1885
1886 **TransformationSchemeReferenceType:** A reference type for a transformation scheme.
1887
1888 Derived by restriction of MaintainableUrnReferenceType.
1889 Regular Expression Pattern: . +\.transformation\.TransformationScheme=.+
1890
1891 **UserDefinedOperatorReferenceType:** A reference type for a user defined operator.
1892
1893 Derived by restriction of ComponentUrnReferenceType.
1894 Regular Expression Pattern: . +\.transformation\.UserDefinedOperator=.+
1895
1896 **UserDefinedOperatorSchemeReferenceType:** A reference type for a user defined operator scheme.
1897
1898 Derived by restriction of MaintainableUrnReferenceType.
1899 Regular Expression Pattern: . +\.transformation\.UserDefinedOperatorScheme=.+
1900
1901 **VtlMappingReferenceType:** A reference type for a VTL mapping.
1902
1903 Derived by restriction of ComponentUrnReferenceType.
1904 Regular Expression Pattern: . +\.transformation\.VtlCodelistMapping=.+.+\.transformation\.VtlConceptMapping=.+.+\.transformation\.VtlDataflowMapping=.+
1905
1906 **VtlMappingSchemeReferenceType:** A reference type for a VTL mapping scheme.
1907
1908 Derived by restriction of MaintainableUrnReferenceType.
1909 Regular Expression Pattern: . +\.transformation\.VtlMappingScheme=.+
1910
1911 **VersionReferenceType:** VersionReferenceType defines the structure of version number in a reference. When semantic versioning is used, the major, minor, or patch version parts can be wildcarded using "+" as an extension. For example, 2+.3.1 means the currently latest available version >= 2.3.1 (even if not backwards compatible). Note that wildcarded semantic version references cannot be combined with version extended reference (e.g. 2.3+.1-draft is not permissable). Version-extended (e.g. 1.3.1-draft) and legacy version numbers (e.g. 1 or 1.0) are also supported.
1912
1913 Union of:
1914
1915 LegacyVersionNumberType, SemanticVersionNumberType, SemanticVersionReferenceType.
1916
1917 **SemanticVersionReferenceType:** SemanticVersionReferenceType is a simple type for referencing semantic version numbers. It allows for the wildcarding of only one the major, minor, or patch version parts using "+".
1918
1919 Derived by restriction of xs:string.
1920 Regular Expression Pattern: ((0|[1-9]\d*)\+?)(\.((0|[1-9]\d*~)~)~){2}((0|[1-9]\d*))(\.((0|[1-9]\d*)\+?))(\.((0|[1-9]\d*~)~)~)((0|[1-9]\d*)\+?)(\.((0|[1-9]\d*~)~)~)(\.((0|[1-9]\d*)\+?))
1921
1922 **WildcardVersionType:** WildcardVersionType combines the VersionType and WildcardType to allow a reference to either a specific version of an object, or to wildcard the version in the reference by specifying the '*' value.
1923
1924 Union of:
1925
1926 LegacyVersionNumberType, SemanticVersionNumberType, SemanticVersionReferenceType, WildcardType.
1927
1928 **WildcardType:** WildcardType is a single value code list, used to include the '*' character - indicating that the identification component is wildcarded.
1929
1930 Derived by restriction of xs:string.
1931
1932 Enumerations:
1933
1934 |**Value**|**Documentation**
1935
1936 |\*|Indicates that any value of the identifier component is allowed.|
1937
1938 **NestedIDType:** NestedIDType is the least restrictive form of an identifier used throughout all SDMX-ML messages. It allows for a hierarchical identifier, with each portion separated by the '.' character. For the identifier portions, valid characters include A-Z, a-z, @, 0-9, \_, -, $.
1939
1940 Derived by restriction of xs:string.
1941 Regular Expression Pattern: [A-Za-z0-9_@$\-]+(\.[A-Za-z0-9_@$\-]+)
1942
1943 **TwoLevelIDType:** TwoLevelIDType defines an identifier with exactly two levels.
1944
1945 Derived by restriction of NestedIDType.
1946 Regular Expression Pattern: [A-Za-z0-9_@$\-]+\.[A-Za-z0-9_@$\-]+
1947
1948 **IDType:** IDType provides a type which is used for restricting the characters in codes and IDs throughout all SDMX-ML messages. Valid characters include A-Z, a-z, @, 0-9, \_, -, $.
1949
1950 Derived by restriction of NestedIDType.
1951 Regular Expression Pattern: [A-Za-z0-9_@$\-]+
1952
1953 **NCNameIDType:** NCNameIDType restricts the IDType, so that the id may be used to generate valid XML components. IDs created from this type conform to the W3C XML Schema NCNAME type, and therefore can be used as element or attribute names.
1954
1955 Derived by restriction of IDType.
1956 Regular Expression Pattern: [A-Za-z][A-Za-z0-9_\-]
1957
1958 **NestedNCNameIDType:** NestedNCNameIDType restricts the NestedIDType, so that the id may be used to generate valid XML components. IDs created from this type conform to the W3C XML Schema NCNAME type, and therefore can be used as element or attribute names.
1959
1960 Derived by restriction of NestedIDType.
1961 Regular Expression Pattern: [A-Za-z][A-Za-z0-9_\-]*(\.[A-Za-z][A-Za-z0-9_\-]*)
1962
1963 **SingleNCNameIDType:** SingleNCNameIDType restricts the NestedNCNameIDType to allow only one level. Note that this is the same pattern as the NCNameIDType, but can be used when the base type to be restricted is a nested NCNameIDType (where as the NCNameIDType could only restrict the IDType).
1964
1965 Derived by restriction of NestedNCNameIDType.
1966 Regular Expression Pattern: [A-Za-z][A-Za-z0-9_\-]
1967
1968 **VersionType:** VersionType is used to communicate version information. Semantic versioning, based on 3 or 4 version parts (major.minor.patch[-extension]) is supported. The legency SDMX version format is also support.
1969
1970 Union of:
1971 LegacyVersionNumberType, SemanticVersionNumberType.
1972
1973 **SemanticVersionNumberType:** SemanticVersionNumberType is a simple type for validating semantic version in the format (major.minor.patch[-extension]).
1974
1975 Derived by restriction of xs:string.
1976 Regular Expression Pattern: (0|[1-9]\d*)(\.(0|[1-9]\d*)){2}(\-(([A-Za-z\-]|([A-Za-z\-][A-Za-z0-9\-]+)|([A-Za-z0-9\-]+[A-Za-z\-][A-Za-z0-9\-]*))|(0|[1-9][0-9]*))(\.(([A-Za-z\-]|([A-Za-z\-][A-Za-z0-9\-]+)|([A-Za-z0-9\-]+[A-Za-z\-][A-Za-z0-9\-]*))|(0|[1-9][0-9]*~)~)~)*)?
1977
1978 **LegacyVersionNumberType:** LegacyVersionNumberType describes the version number format previously supported in SDMX. The format is restricted to allow for simple incrementing and sorting of version number. The version consists of a set of maximum 2 numeric components, separated by the '.' character. When processing version, each numeric component (the number preceding and following any '.' character) should be parsed as an integer. Thus, a version of 1.3 and 1.03 would be equivalent, as both the '3' component and the '03' component would parse to an integer value of 3.
1979
1980 Derived by restriction of xs:string.
1981 Regular Expression Pattern: (0|[1-9]\d*)(\.(0|[1-9]\d*))?
© Semantic R&D Group, 2026