Version 6.2 by Helena K. on 2025/07/03 12:21

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 |**Name**|**Type**|**Documentation**
304 |id|IDType|The id is the identifier for the object.
305 |urn|UrnType|The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).
306 |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.
307
308 Element Documentation:
309
310 |**Name**|**Type**|**Documentation**
311 |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.
312 |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.
313
314 ***NameableType*:** NameableType is an abstract base type for all nameable objects.
315
316 Derivation:
317
318 AnnotableType (extension)
319 IdentifiableType (extension)
320 NameableType*
321
322 Attributes:
323 id?, urn?, uri?
324
325 Content:
326 Annotations?, Link*, Name+, Description
327
328 Attribute Documentation:
329
330 |**Name**|**Type**|**Documentation**
331 |id|IDType|The id is the identifier for the object.
332 |urn|UrnType|The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).
333 |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.
334
335 Element Documentation:
336
337 |**Name**|**Type**|**Documentation**
338 |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.
339 |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.
340 |Name|TextType|Name provides for a human-readable name for the object. This may be provided in multiple, parallel language-equivalent forms.
341 |Description|TextType|Description provides for a longer human-readable description of the object. This may be provided in multiple, parallel language-equivalent forms.
342
343 ***VersionableType*:** VersionableType is an abstract base type for all versionable objects.
344
345 Derivation:
346
347 AnnotableType (extension)
348 IdentifiableType (extension)
349 NameableType (extension)
350 VersionableType*
351
352 Attributes:
353 id?, urn?, uri?, version?, validFrom?, validTo?
354
355 Content:
356 Annotations?, Link*, Name+, Description
357
358 Attribute Documentation:
359
360 |**Name**|**Type**|**Documentation**
361 |id|IDType|The id is the identifier for the object.
362 |urn|UrnType|The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).
363 |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.
364 |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.
365 |validFrom|xs:dateTime|The validFrom attribute provides the inclusive start date for providing supplemental validity information about the version.
366 |validTo|xs:dateTime|The validTo attribute provides the inclusive end date for providing supplemental validity information about the version.
367
368 Element Documentation:
369
370 |**Name**|**Type**|**Documentation**
371 |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.
372 |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.
373 |Name|TextType|Name provides for a human-readable name for the object. This may be provided in multiple, parallel language-equivalent forms.
374 |Description|TextType|Description provides for a longer human-readable description of the object. This may be provided in multiple, parallel language-equivalent forms.
375
376 ***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.
377
378 Derivation:
379
380 AnnotableType (extension)
381 IdentifiableType (extension)
382 NameableType (extension)
383 VersionableType (restriction)
384 MaintainableBaseType*
385
386 Attributes:
387 id, urn?, uri?, version?, validFrom?, validTo?
388
389 Content:
390 Annotations?, Link*, Name+, Description
391
392 Attribute Documentation:
393
394 |**Name**|**Type**|**Documentation**
395 |id|IDType|The id is the identifier for the object.
396 |urn|MaintainableUrnType|The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).
397 |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.
398 |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.
399 |validFrom|xs:dateTime|The validFrom attribute provides the inclusive start date for providing supplemental validity information about the version.
400 |validTo|xs:dateTime|The validTo attribute provides the inclusive end date for providing supplemental validity information about the version.
401
402 Element Documentation:
403
404 |**Name**|**Type**|**Documentation**
405 |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.
406 |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.
407 |Name|TextType|Name provides for a human-readable name for the object. This may be provided in multiple, parallel language-equivalent forms.
408 |Description|TextType|Description provides for a longer human-readable description of the object. This may be provided in multiple, parallel language-equivalent forms.
409
410 ***MaintainableType*:** MaintainableType is an abstract base type for all maintainable objects.
411
412 Derivation:
413
414 AnnotableType (extension)
415 IdentifiableType (extension)
416 NameableType* (extension)
417 VersionableType (restriction)
418 MaintainableBaseType (extension)
419 MaintainableType*
420
421 Attributes:
422 id, urn?, uri?, version?, validFrom?, validTo?, agencyID, isPartialLanguage?, isExternalReference?, serviceURL?, structureURL?
423
424 Content:
425 Annotations?, Link*, Name+, Description
426
427 Attribute Documentation:
428
429 |**Name**|**Type**|**Documentation**
430 |id|IDType|The id is the identifier for the object.
431 |urn|MaintainableUrnType|The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).
432 |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.
433 |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.
434 |validFrom|xs:dateTime|The validFrom attribute provides the inclusive start date for providing supplemental validity information about the version.
435 |validTo|xs:dateTime|The validTo attribute provides the inclusive end date for providing supplemental validity information about the version.
436 |agencyID|NestedNCNameIDType|The agencyID must be provided, and identifies the maintenance agency of the object.
437 |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.
438 |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.
439 |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.
440 |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’.
441
442 Element Documentation:
443
444 |**Name**|**Type**|**Documentation**
445 |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.
446 |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.
447 |Name|TextType|Name provides for a human-readable name for the object. This may be provided in multiple, parallel language-equivalent forms.
448 |Description|TextType|Description provides for a longer human-readable description of the object. This may be provided in multiple, parallel language-equivalent forms.
449
450 **ReferencePeriodType:** Specifies the inclusive start and end times.
451
452 Attributes:
453 startTime, endTime
454
455 Content:
456 {Empty}
457
458 Attribute Documentation:
459
460 |**Name**|**Type**|**Documentation**
461 |startTime|xs:dateTime|The startTime attributes contains the inclusive start date for the reference period.
462 |endTime|xs:dateTime|The endTime attributes contains the inclusive end date for the reference period.
463
464 **QueryableDataSourceType:** QueryableDataSourceType describes a data source which is accepts an standard SDMX Query message and responds appropriately.
465
466 Attributes:
467 isRESTDatasource, isWebServiceDatasource
468
469 Content:
470 DataURL, WSDLURL?, WADLURL?
471
472 Attribute Documentation:
473
474 |**Name**|**Type**|**Documentation**
475 |isRESTDatasource|xs:boolean|The isRESTDatasource attribute indicates, if true, that the queryable data source is accessible via the REST protocol.
476 |isWebServiceDatasource|xs:boolean|The isWebServiceDatasource attribute indicates, if true, that the queryable data source is accessible via Web Services protocols.
477
478 Element Documentation:
479
480 |**Name**|**Type**|**Documentation**
481 |DataURL|xs:anyURI|DataURL contains the URL of the data source.
482 |WSDLURL|xs:anyURI|WSDLURL provides the location of a WSDL instance on the internet which describes the queryable data source.
483 |WADLURL|xs:anyURI|WADLURL provides the location of a WADL instance on the internet which describes the REST protocol of the queryable data source.
484
485 **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.
486
487 Attributes:
488 xml:lang?
489
490 Content:
491 {text} x {any element with namespace of http://www.w3.org/1999/xhtml}
492
493 Attribute Documentation:
494
495 |**Name**|**Type**|**Documentation**
496 |xml:lang (default: en)|xs:language
497
498 ***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).
499
500 Attributes:
501 structureID, schemaURL?, namespace?, dimensionAtObservation?, explicitMeasures?, serviceURL?, structureURL?
502
503 Content:
504 (ProvisionAgreement|StructureUsage|Structure)
505
506 Attribute Documentation:
507
508 |**Name**|**Type**|**Documentation**
509 |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.
510 |schemaURL|xs:anyURI|The schemaURL attribute provides a location from which the structure specific schema can be located.
511 |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.
512 |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.
513 |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.
514 |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.
515 |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.
516
517 Element Documentation:
518
519 |**Name**|**Type**|**Documentation**
520 |ProvisionAgreement|ProvisionAgreementRe ferenceType|ProvisionAgreement references a provision agreement which the data or metadata is reported against.
521 |StructureUsage|StructureUsageRefere nceType|StructureUsage references a flow which the data or metadata is reported against.
522 |Structure|StructureReferenceTy pe|Structure references the structure which defines the structure of the data or metadata set.
523
524 ***DataStructureType*:** DataStructureType is an abstract base type the forms the basis for the structural information for a data set.
525
526 Derivation:
527
528 PayloadStructureType (restriction)
529 DataStructureType*
530
531 Attributes:
532 structureID, schemaURL?, namespace?, dimensionAtObservation?, explicitMeasures?, serviceURL?, structureURL?
533
534 Content:
535 (ProvisionAgreement | StructureUsage | Structure)
536
537 Attribute Documentation:
538
539 |**Name**|**Type**|**Documentation**
540 |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.
541 |schemaURL|xs:anyURI|The schemaURL attribute provides a location from which the structure specific schema can be located.
542 |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.
543 |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.
544 |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.
545 |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.
546 |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.
547
548 Element Documentation:
549
550 |**Name**|**Type**|**Documentation**
551 |ProvisionAgreement|ProvisionAgreementRe ferenceType|ProvisionAgreement references a provision agreement which the data is reported against.
552 |StructureUsage|DataflowReferenceTyp e|StructureUsage references a dataflow which the data is reported against.
553 |Structure|DataStructureReferen ceType|Structure references the data structure definition which defines the structure of the data.
554
555 **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.
556
557 Derivation:
558
559 PayloadStructureType (restriction)
560 DataStructureType (restriction)
561 StructureSpecificDataStructureType
562
563 Attributes:
564 structureID, schemaURL?, namespace, dimensionAtObservation, explicitMeasures?, serviceURL?, structureURL?
565
566 Content:
567 (ProvisionAgreement | StructureUsage | Structure)
568
569 Attribute Documentation:
570
571 |**Name**|**Type**|**Documentation**
572 |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.
573 |schemaURL|xs:anyURI|The schemaURL attribute provides a location from which the structure specific schema can be located.
574 |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.
575 |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.
576 |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.
577 |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.
578 |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.
579
580 Element Documentation:
581
582 |**Name**|**Type**|**Documentation**
583 |ProvisionAgreement|ProvisionAgreementReferenceType|ProvisionAgreement references a provision agreement which the data is reported against.
584 |StructureUsage|DataflowReferenceType|StructureUsage references a dataflow which the data is reported against.
585 |Structure|DataStructureReferen ceType|Structure references the data structure definition which defines the structure of the data.
586
587 ***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.
588
589 Derivation:
590
591 PayloadStructureType (restriction)
592 MetadataStructureType*
593
594 Attributes:
595 structureID, schemaURL?, namespace?, serviceURL?, structureURL?
596
597 Content:
598 (ProvisionAgreement | StructureUsage | Structure)
599
600 Attribute Documentation:
601
602 |**Name**|**Type**|**Documentation**
603 |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.
604 |schemaURL|xs:anyURI|The schemaURL attribute provides a location from which the structure specific schema can be located.
605 |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.
606 |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.
607 |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.
608
609 Element Documentation:
610
611 |**Name**|**Type**|**Documentation**
612 |ProvisionAgreement|ProvisionAgreementReferenceType|ProvisionAgreement references a provision agreement which the metadata is reported against.
613 |StructureUsage|MetadataflowReferenceType|StructureUsage references a metadataflow which the metadata is reported against.
614 |Structure|MetadataStructureReferenceType|Structure references the metadata structure definition which defines the structure of the metadata.
615
616 **GenericMetadataStructureType:** GenericMetadataStructureType defines the structural information for a generic metadata message.
617
618 Derivation:
619
620 PayloadStructureType (restriction)
621 MetadataStructureType (restriction)
622 GenericMetadataStructureType
623
624 Attributes:
625 structureID, schemaURL?, serviceURL?, structureURL?
626
627 Content:
628 (ProvisionAgreement | StructureUsage | Structure)
629
630 Attribute Documentation:
631
632 |**Name**|**Type**|**Documentation**
633 |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.
634 |schemaURL|xs:anyURI|The schemaURL attribute provides a location from which the structure specific schema can be located.
635 |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.
636 |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.
637
638 Element Documentation:
639
640 |**Name**|**Type**|**Documentation**
641 |ProvisionAgreement|ProvisionAgreementReferenceType|ProvisionAgreement references a provision agreement which the metadata is reported against.
642 |StructureUsage|MetadataflowReferenceType|StructureUsage references a metadataflow which the metadata is reported against.
643 |Structure|MetadataStructureReferenceType|Structure references the metadata structure definition which defines the structure of the metadata.
644
645 === 2.1.4 Simple Types ===
646
647 **AlphaNumericType:** AlphaNumericType is a reusable simple type that allows for only mixed-case alphabetical and numeric characters.
648
649 Derived by restriction of xs:string.
650 Regular Expression Pattern: [A-Za-z0-9]+
651
652 **AlphaType:** AlphaType is a reusable simple type that allows for only mixed-case alphabetical characters. This is derived from the AlphaNumericType.
653
654 Derived by restriction of AlphaNumericType.
655 Regular Expression Pattern: [A-Za-z]+
656
657 **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.
658
659 Derived by restriction of AlphaNumericType.
660 Regular Expression Pattern: [0-9]+
661
662 **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.
663
664 Union of:
665 xs:gYear, xs:gYearMonth, xs:date, xs:dateTime, ReportingYearType, ReportingSemesterType, ReportingTrimesterType, ReportingQuarterType, ReportingMonthType, ReportingWeekType, ReportingDayType, TimeRangeType.   
666
667 **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).
668
669 Union of:
670 xs:gYear, xs:gYearMonth, xs:date, xs:dateTime, ReportingYearType, ReportingSemesterType, ReportingTrimesterType, ReportingQuarterType, ReportingMonthType, ReportingWeekType, ReportingDayType.   
671
672 **BasicTimePeriodType:** BasicTimePeriodType contains the basic dates and calendar periods. It is a combination of the Gregorian time periods and the date time type..
673
674 Union of:
675 xs:gYear, xs:gYearMonth, xs:date, xs:dateTime.
676
677 **GregorianTimePeriodType:** GregorianTimePeriodType defines the set of standard calendar periods in SDMX.
678
679 Union of:
680 xs:gYear, xs:gYearMonth, xs:date.
681
682 **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.
683
684 Union of:
685 ReportingYearType, ReportingSemesterType, ReportingTrimesterType, ReportingQuarterType, ReportingMonthType, ReportingWeekType, ReportingDayType.
686
687 **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.
688
689 Derived by restriction of xs:string.
690 Regular Expression Pattern: \d{4}\-([ASTQ]\d{1}|[MW]\d{2}|[D]\d{3})(Z|((\+|\-)\d{2}:\d{2}))?
691
692 **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.
693
694 Derived by restriction of BaseReportPeriodType.
695 Regular Expression Pattern: . +Z.{5}.\*(\+|\-)(14:00|((0[0-9]|1[0-3]):[0-5][0-9])).{5}[^\+\-Z]+
696
697 **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.
698
699 Derived by restriction of ReportPeriodValidTimeZoneType.
700 Regular Expression Pattern: . {5}A1.
701
702 **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.
703
704 Derived by restriction of ReportPeriodValidTimeZoneType.
705 Regular Expression Pattern: . {5}S[1-2].
706
707 **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.
708
709 Derived by restriction of ReportPeriodValidTimeZoneType.
710 Regular Expression Pattern: . {5}T[1-3].
711
712 **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.
713
714 Derived by restriction of ReportPeriodValidTimeZoneType.
715 Regular Expression Pattern: . {5}Q[1-4].
716
717 **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).
718
719 Derived by restriction of ReportPeriodValidTimeZoneType.
720 Regular Expression Pattern: . {5}M(0[1-9]|1[0-2])*.
721
722 **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).
723
724 Derived by restriction of ReportPeriodValidTimeZoneType.
725 Regular Expression Pattern: . {5}W(0[1-9]|[1-4][0-9]|5[0-3]).
726
727 **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).
728
729 Derived by restriction of ReportPeriodValidTimeZoneType.
730 Regular Expression Pattern: . {5}D(0[0-9][1-9]|[1-2][0-9][0-9]|3[0-5][0-9]|36[0-6]).
731
732 **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.
733
734 Derived by restriction of xs:string.
735 Regular Expression Pattern: \d{4}\-\d{2}\-\d{2}(T\d{2}:\d{2}:\d{2}(\.\d+)?)?(Z|((\+|\-)\d{2}:\d{2}))?/P.+
736
737 **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.
738
739 Derived by restriction of BaseTimeRangeType.
740 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]).+
741
742 **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.
743
744 Derived by restriction of RangeValidMonthDayType.
745 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]).+
746
747 **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.
748
749 Derived by restriction of RangeValidLeapYearType.
750 Regular Expression Pattern: . {10}T(24:00:00(\.[0]+)?|
751
752 (((
753 [0-1][0-9])|(2[0-3])):[0-5][0-9]:[0-5][0-9](\.\d+)?))(/|Z|\+|\-).+[^T]+/.+
754
755 **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.
756
757 Derived by restriction of RangeValidTimeType.
758 Regular Expression Pattern: . +Z/.+.{10}.\*(\+|\-)(14:00|((0[0-9]|1[0-3]):[0-5][0-9]))/.+.{10}[^\+\-Z]+
759
760 **TimeRangeValidDateDurationType:** TimeRangeValidDateDurationType is an abstract derivation of the RangeValidTimeType which validates that duration provided is generally valid, up to the time component.
761
762 Derived by restriction of RangeValidTimeZoneType.
763 Regular Expression Pattern: . +/P(\d+Y)?(\d+M)?(\d+D)?(T.+)?
764
765 **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.
766
767 Derived by restriction of TimeRangeValidDateDurationType.
768 Regular Expression Pattern: . +/P.\*T(\d+H)?(\d+M)?(\d+(.\d+)?S)?.+/P[^T]+
769
770 **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.
771
772 Derived by restriction of xs:string.
773 Fixed value: (tilde)
774
775 **DecimalOrNotApplicableType:** Simple type combining xs:decimal and NotApplicableType.
776
777 Union of:
778 xs:decimal, NotApplicableType.
779
780 The following types are derived in a similar manner:
781
782 * DoubleOrNotApplicableType
783 * BooleanOrNotApplicableType
784 * IntOrNotApplicableType
785 * IntegerOrNotApplicableType
786 * LongOrNotApplicableType
787 * ShortOrNotApplicableType
788 * FloatOrNotApplicableType
789 * AlphaOrNotApplicableType
790 * AlphaNumericOrNotApplicableType
791 * NumericOrNotApplicableType
792 * StandardTimePeriodOrNotApplicableType
793 * BasicTimePeriodOrNotApplicableType
794 * ObservationalTimePeriodOrNotApplicableType
795 * GregorianTimePeriodOrNotApplicableType
796 * ReportingTimePeriodOrNotApplicableType
797 * ReportingYearOrNotApplicableType
798 * ReportingSemesterOrNotApplicableType
799 * ReportingTrimesterOrNotApplicableType
800 * ReportingQuarterOrNotApplicableType
801 * ReportingDayOrNotApplicableType
802 * ReportingMonthOrNotApplicableType
803 * ReportingWeekOrNotApplicableType
804 * RangeValidMonthDayOrNotApplicableType
805 * RangeValidTimeOrNotApplicableType
806 * RangeValidTimeZoneOrNotApplicableType
807 * TimeRangeOrNotApplicableType
808
809 **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.
810
811 Derived by restriction of xs:string.
812 Fixed value: #N/A
813
814 **DecimalOrMissingType:** Simple type combining xs:decimal and MissingType.
815
816 Union of:
817 xs:decimal, MissingType.
818
819 The following types are derived in a similar manner:
820
821 * BooleanOrMissingType
822 * IntOrMissingType
823 * IntegerOrMissingType
824 * LongOrMissingType
825 * ShortOrMissingType
826 * AlphaOrMissingType
827 * AlphaNumericOrMissingType
828 * NumericOrMissingType
829 * StandardTimePeriodOrMissingType
830 * BasicTimePeriodOrMissingType
831 * ObservationalTimePeriodOrMissingType
832 * GregorianTimePeriodOrMissingType
833 * ReportingTimePeriodOrMissingType
834 * ReportingYearOrMissingType
835 * ReportingSemesterOrMissingType
836 * ReportingTrimesterOrMissingType
837 * ReportingQuarterOrMissingType
838 * ReportingDayOrMissingType
839 * ReportingMonthOrMissingType
840 * ReportingWeekOrMissingType
841 * RangeValidMonthDayOrMissingType
842 * RangeValidTimeOrMissingType
843 * RangeValidTimeZoneOrMissingType
844 * TimeRangeOrMissingType
845
846 **TimezoneType:** TimezoneType defines the pattern for a time zone. An offset of -14:00 to +14:00 or Z can be specified.
847
848 Derived by restriction of xs:string.
849 Regular Expression Pattern: Z(\+|\-)(14:00|((0[0-9]|1[0-3]):[0-5][0-9]))
850
851 **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.
852
853 Union of:
854 MaxOccursNumberType, UnboundedCodeType.
855
856 **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.
857
858 Derived by restriction of xs:nonNegativeInteger.
859 Minimum (inclusive): 1
860 Fraction Digits: 0
861
862 **UnboundedCodeType:** UnboundedCodeType provides single textual value of "unbounded", for use in OccurentType.
863
864 Derived by restriction of xs:string.
865
866 Enumerations:
867
868 |**Value**|**Documentation**
869 |unbounded|Object has no upper limit on occurrences.
870
871 **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.
872
873 Derived by restriction of xs:NMTOKEN.
874
875 Enumerations:
876
877 |**Value**|**Documentation**
878 |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.
879 |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.
880 |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.
881 |Information|Informational - data/metadata is being exchanged for informational purposes only, and not meant to update a system.
882
883 **WildCardValueType:** WildCardValueType is a single value code list, used to include the '%' character - indicating that an entire field is wild carded.
884
885 Derived by restriction of xs:string.
886
887 Enumerations:
888
889 |**Value**|**Documentation**
890 |%|Indicates a wild card value.
891
892 **CascadeSelectionType:**
893
894 Union of:
895 xs:boolean, ExcludeRootType.
896
897 **ExcludeRootType:** ExcludeRootType is a single enumerated value that indciates that child values should be included, but that the actual root should not.
898
899 Derived by restriction of xs:string.
900
901 Enumerations:
902
903 |**Value**|**Documentation**
904 |excluderoot|
905
906 **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".
907
908 Union of:
909 NCNameIDType, ObsDimensionsCodeType.
910
911 **ObsDimensionsCodeType:** ObsDimensionsCodeType is an enumeration containing the values "TimeDimension" and "AllDimensions"
912
913 Derived by restriction of xs:string.
914
915 Enumerations:
916
917 |**Value**|**Documentation**
918 |AllDimensions|AllDimensions notes that the cross sectional format shall be flat; that is all dimensions should be contained at the observation level.
919 |TIME_PERIOD|TIME_PERIOD refers to the fixed identifier for the time dimension.
920
921 **DataType:** DataTypeType provides an enumerated list of the types of data formats allowed as the for the representation of an object.
922
923 Derived by restriction of xs:NMTOKEN.
924
925 Enumerations:
926
927 |**Value**|**Documentation**
928 |String|A string datatype corresponding to W3C XML Schema's xs:string datatype.
929 |Alpha|A string datatype which only allows for the simple aplhabetic charcter set of A-Z, a-z.
930 |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.
931 |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.
932 |BigInteger|An integer datatype corresponding to W3C XML Schema's xs:integer datatype.
933 |Integer|An integer datatype corresponding to W3C XML Schema's xs:int datatype.
934 |Long|A numeric datatype corresponding to W3C XML Schema's xs:long datatype.
935 |Short|A numeric datatype corresponding to W3C XML Schema's xs:short datatype.
936 |Decimal|A numeric datatype corresponding to W3C XML Schema's xs:decimal datatype.
937 |Float|A numeric datatype corresponding to W3C XML Schema's xs:float datatype.
938 |Double|A numeric datatype corresponding to W3C XML Schema's xs:double datatype.
939 |Boolean|A datatype corresponding to W3C XML Schema's xs:boolean datatype.
940 |URI|A datatype corresponding to W3C XML Schema's xs:anyURI datatype.
941 |Count|A simple incrementing Integer type. The isSequence facet must be set to true, and the interval facet must be set to "1".
942 |InclusiveValueRange|This value indicates that the startValue and endValue attributes provide the inclusive boundaries of a numeric range of type xs:decimal.
943 |ExclusiveValueRange|This value indicates that the startValue and endValue attributes provide the exclusive boundaries of a numeric range, of type xs:decimal.
944 |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.
945 |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.
946 |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.
947 |BasicTimePeriod|BasicTimePeriod time periods is a superset of the Gregorian time periods and a date time.
948 |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.
949 |GregorianYear|A Gregorian time period corresponding to W3C XML Schema's xs:gYear datatype, which is based on ISO-8601.
950 |GregorianYearMonth|A time datatype corresponding to W3C XML Schema's xs:gYearMonth datatype, which is based on ISO-8601.
951 |GregorianDay|A time datatype corresponding to W3C XML Schema's xs:date datatype, which is based on ISO-8601.
952 |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.
953 |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.
954 |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.
955 |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.
956 |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.
957 |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.
958 |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.
959 |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.
960 |DateTime|A time datatype corresponding to W3C XML Schema's xs:dateTime datatype.
961 |TimeRange|TimeRange defines a time period by providing a distinct start (date or date time) and a duration.
962 |Month|A time datatype corresponding to W3C XML Schema's xs:gMonth datatype.
963 |MonthDay|A time datatype corresponding to W3C XML Schema's xs:gMonthDay datatype.
964 |Day|A time datatype corresponding to W3C XML Schema's xs:gDay datatype.
965 |Time|A time datatype corresponding to W3C XML Schema's xs:time datatype.
966 |Duration|A time datatype corresponding to W3C XML Schema's xs:duration datatype.
967 |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.
968 |XHTML|This value indicates that the content of the component can contain XHTML markup.
969 |KeyValues|This value indicates that the content of the component will be data key (a set of dimension references and values for the dimensions).
970 |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.
971 |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.
972
973 **BasicComponentDataType:** BasicComponentDataType provides an enumerated list of the types of characters allowed in the textType attribute for all non-target object components.
974
975 Derived by restriction of DataType.
976
977 Enumerations:
978
979 |**Value**|**Documentation**
980 |String|A string datatype corresponding to W3C XML Schema's xs:string datatype.
981 |Alpha|A string datatype which only allows for the simple aplhabetic charcter set of A-Z, a-z.
982 |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.
983 |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.
984 |BigInteger|An integer datatype corresponding to W3C XML Schema's xs:integer datatype.
985 |Integer|An integer datatype corresponding to W3C XML Schema's xs:int datatype.
986 |Long|A numeric datatype corresponding to W3C XML Schema's xs:long datatype.
987 |Short|A numeric datatype corresponding to W3C XML Schema's xs:short datatype.
988 |Decimal|A numeric datatype corresponding to W3C XML Schema's xs:decimal datatype.
989 |Float|A numeric datatype corresponding to W3C XML Schema's xs:float datatype.
990 |Double|A numeric datatype corresponding to W3C XML Schema's xs:double datatype.
991 |Boolean|A datatype corresponding to W3C XML Schema's xs:boolean datatype.
992 |URI|A datatype corresponding to W3C XML Schema's xs:anyURI datatype.
993 |Count|A simple incrementing Integer type. The isSequence facet must be set to true, and the interval facet must be set to "1".
994 |InclusiveValueRange|This value indicates that the startValue and endValue attributes provide the inclusive boundaries of a numeric range of type xs:decimal.
995 |ExclusiveValueRange|This value indicates that the startValue and endValue attributes provide the exclusive boundaries of a numeric range, of type xs:decimal.
996 |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.
997 |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.
998 |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.
999 |BasicTimePeriod|BasicTimePeriod time periods is a superset of the Gregorian time periods and a date time.
1000 |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.
1001 |GregorianYear|A Gregorian time period corresponding to W3C XML Schema's xs:gYear datatype, which is based on ISO-8601.
1002 |GregorianYearMonth|A time datatype corresponding to W3C XML Schema's xs:gYearMonth datatype, which is based on ISO-8601.
1003 |GregorianDay|A time datatype corresponding to W3C XML Schema's xs:date datatype, which is based on ISO-8601.
1004 |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.
1005 |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.
1006 |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.
1007 |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.
1008 |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.
1009 |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.
1010 |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.
1011 |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.
1012 |DateTime|A time datatype corresponding to W3C XML Schema's xs:dateTime datatype.
1013 |TimeRange|TimeRange defines a time period by providing a distinct start (date or date time) and a duration.
1014 |Month|A time datatype corresponding to W3C XML Schema's xs:gMonth datatype.
1015 |MonthDay|A time datatype corresponding to W3C XML Schema's xs:gMonthDay datatype.
1016 |Day|A time datatype corresponding to W3C XML Schema's xs:gDay datatype.
1017 |Time|A time datatype corresponding to W3C XML Schema's xs:time datatype.
1018 |Duration|A time datatype corresponding to W3C XML Schema's xs:duration datatype.
1019 |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.
1020 |XHTML|This value indicates that the content of the component can contain XHTML markup.
1021
1022 **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.
1023
1024 Derived by restriction of BasicComponentDataType.
1025
1026 Enumerations:
1027
1028 |**Value**|**Documentation**
1029 |String|A string datatype corresponding to W3C XML Schema's xs:string datatype.
1030 |Alpha|A string datatype which only allows for the simple aplhabetic charcter set of A-Z, a-z.
1031 |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.
1032 |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.
1033 |BigInteger|An integer datatype corresponding to W3C XML Schema's xs:integer datatype.
1034 |Integer|An integer datatype corresponding to W3C XML Schema's xs:int datatype.
1035 |Long|A numeric datatype corresponding to W3C XML Schema's xs:long datatype.
1036 |Short|A numeric datatype corresponding to W3C XML Schema's xs:short datatype.
1037 |Decimal|A numeric datatype corresponding to W3C XML Schema's xs:decimal datatype.
1038 |Float|A numeric datatype corresponding to W3C XML Schema's xs:float datatype.
1039 |Double|A numeric datatype corresponding to W3C XML Schema's xs:double datatype.
1040 |Boolean|A datatype corresponding to W3C XML Schema's xs:boolean datatype.
1041 |URI|A datatype corresponding to W3C XML Schema's xs:anyURI datatype.
1042 |Count|A simple incrementing Integer type. The isSequence facet must be set to true, and the interval facet must be set to "1".
1043 |InclusiveValueRange|This value indicates that the startValue and endValue attributes provide the inclusive boundaries of a numeric range of type xs:decimal.
1044 |ExclusiveValueRange|This value indicates that the startValue and endValue attributes provide the exclusive boundaries of a numeric range, of type xs:decimal.
1045 |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.
1046 |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.
1047 |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.
1048 |BasicTimePeriod|BasicTimePeriod time periods is a superset of the Gregorian time periods and a date time.
1049 |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.
1050 |GregorianYear|A Gregorian time period corresponding to W3C XML Schema's xs:gYear datatype, which is based on ISO-8601.
1051 |GregorianYearMonth|A time datatype corresponding to W3C XML Schema's xs:gYearMonth datatype, which is based on ISO-8601.
1052 |GregorianDay|A time datatype corresponding to W3C XML Schema's xs:date datatype, which is based on ISO-8601.
1053 |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.
1054 |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.
1055 |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.
1056 |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.
1057 |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.
1058 |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.
1059 |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.
1060 |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.
1061 |DateTime|A time datatype corresponding to W3C XML Schema's xs:dateTime datatype.
1062 |TimeRange|TimeRange defines a time period by providing a distinct start (date or date time) and a duration.
1063 |Month|A time datatype corresponding to W3C XML Schema's xs:gMonth datatype.
1064 |MonthDay|A time datatype corresponding to W3C XML Schema's xs:gMonthDay datatype.
1065 |Day|A time datatype corresponding to W3C XML Schema's xs:gDay datatype.
1066 |Time|A time datatype corresponding to W3C XML Schema's xs:time datatype.
1067 |Duration|A time datatype corresponding to W3C XML Schema's xs:duration datatype.
1068 |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.
1069
1070 **TimeDataType:** TimeDataType restricts SimpleDataType to specify the allowable data types for representing a time value.
1071
1072 Derived by restriction of SimpleDataType.
1073
1074 Enumerations:
1075
1076 |**Value**|**Documentation**
1077 |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.
1078 |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.
1079 |BasicTimePeriod|BasicTimePeriod time periods is a superset of the Gregorian time periods and a date time.
1080 |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.
1081 |GregorianYear|A Gregorian time period corresponding to W3C XML Schema's xs:gYear datatype, which is based on ISO-8601.
1082 |GregorianYearMonth|A time datatype corresponding to W3C XML Schema's xs:gYearMonth datatype, which is based on ISO-8601.
1083 |GregorianDay|A time datatype corresponding to W3C XML Schema's xs:date datatype, which is based on ISO-8601.
1084 |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.
1085 |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.
1086 |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.
1087 |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.
1088 |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.
1089 |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.
1090 |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.
1091 |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.
1092 |DateTime|A time datatype corresponding to W3C XML Schema's xs:dateTime datatype.
1093 |TimeRange|TimeRange defines a time period by providing a distinct start (date or date time) and a duration.
1094
1095 **UrnPrefixPart:** This is validates the first part of the URN (urn:sdmx.org.infomodel.<package>.<class=). It is intended to be further restricted.
1096
1097 Derived by restriction of xs:string.
1098 Regular Expression Pattern: urn:sdmx:org\.sdmx\.infomodel\.[a-z]+\.[A-Za-z]+=[^=]+
1099
1100 **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.
1101
1102 Derived by restriction of UrnPrefixPart.
1103 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=.+
1104
1105 **UrnAgencyPart:** This restricts the prefix and classes patterns to validate the agency part of the URN (=<agency_id>:).
1106
1107 Derived by restriction of UrnClassesPart.
1108 Regular Expression Pattern: . +=([A-Za-z][A-Za-z0-9_\-]*(\.[A-Za-z][A-Za-z0-9_\-]*)*):[^:]+
1109
1110 **WildcardUrnAgencyPart:** This restricts the prefix and classes patterns to validate the agency part of a wildcarded URN reference (=<agency_id>:).
1111
1112 Derived by restriction of UrnClassesPart.
1113 Regular Expression Pattern: . +=([A-Za-z][A-Za-z0-9_\-]*(\.[A-Za-z][A-Za-z0-9_\-]*)*):[^:]+.+=\*:[^:]+
1114
1115 **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.
1116
1117 Derived by restriction of UrnAgencyPart.
1118 Regular Expression Pattern: . +:([A-Za-z0-9_@$\-]+)\([0-9A-Za-z\-\.\+]+\)[^(\(\))]
1119
1120 **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.
1121
1122 Derived by restriction of WildcardUrnAgencyPart.
1123 Regular Expression Pattern: . +:([A-Za-z0-9_@$\-]+)\([0-9A-Za-z\-\.\+\*]+\)[^(\(\))]*.+:\*\([0-9A-Za-z\-\.\+\*]+\)[^(\(\))]
1124
1125 **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.
1126
1127 Derived by restriction of UrnMaintainableIdPart.
1128 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]*
1129 )))
1130
1131 *)?\).
1132
1133 **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.
1134
1135 Derived by restriction of UrnMaintainableIdPart.
1136 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]*~)~)~)*)?\).*.+\
1137
1138 (((
1139 0|[1-9]\d*)\+?)(\.((0|[1-9]\d*
1140 )))
1141
1142 {2}\).*.+\
1143
1144 (((
1145 0|[1-9]\d*))(\.((0|[1-9]\d*)\+?))(\.((0|[1-9]\d*
1146 )))
1147
1148 \).*.+\
1149
1150 (((
1151 0|[1-9]\d*)\+?)(\.((0|[1-9]\d*
1152 )))
1153
1154 (\.((0|[1-9]\d*)\+?))\).
1155
1156 **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.
1157
1158 Derived by restriction of WildcardUrnMaintainableIdPart.
1159 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]*~)~)~)*)?\).*.+\
1160
1161 (((
1162 0|[1-9]\d*)\+?)(\.((0|[1-9]\d*
1163 )))
1164
1165 {2}\).*.+\
1166
1167 (((
1168 0|[1-9]\d*))(\.((0|[1-9]\d*)\+?))(\.((0|[1-9]\d*
1169 )))
1170
1171 \).*.+\
1172
1173 (((
1174 0|[1-9]\d*)\+?)(\.((0|[1-9]\d*
1175 )))
1176
1177 (\.((0|[1-9]\d*)\+?))\).*.+\(\*\).
1178
1179 **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.
1180
1181 Derived by restriction of UrnVersionPart.
1182 Regular Expression Pattern: . +\)(\.[A-Za-z0-9_@$\-]+(\.[A-Za-z0-9_@$\-]+)*)?
1183
1184 **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.
1185
1186 Derived by restriction of UrnReferenceVersionPart.
1187 Regular Expression Pattern: . +\)(\.[A-Za-z0-9_@$\-]+(\.[A-Za-z0-9_@$\-]+)*)?
1188
1189 **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.
1190
1191 Derived by restriction of WildcardUrnVersionPart.
1192 Regular Expression Pattern: . +\)(\.[A-Za-z0-9_@$\-]+(\.[A-Za-z0-9_@$\-]+)*)?.+\)(\.\*(\.\*)*)?
1193
1194 **MaintainableUrnType:** Restricts the URN so that the pattern ends after the version part.
1195
1196 Derived by restriction of UrnType.
1197 Regular Expression Pattern: . +\)
1198
1199 **MaintainableUrnReferenceType:** Restricts the URN reference so that the pattern ends after the version part.
1200
1201 Derived by restriction of UrnReferenceType.
1202 Regular Expression Pattern: . +\)
1203
1204 **ComponentUrnType:** Restricts the URN so that the pattern ends after the first component part.
1205
1206 Derived by restriction of UrnType.
1207 Regular Expression Pattern: . +\)\.[A-Za-z0-9_@$\-]+
1208
1209 **ComponentUrnReferenceType:** Restricts the URN reference so that the pattern ends after the first component part.
1210
1211 Derived by restriction of UrnReferenceType.
1212 Regular Expression Pattern: . +\)\.[A-Za-z0-9_@$\-]+
1213
1214 **AgencyUrnType:** Urn type for an agency.
1215
1216 Derived by restriction of ComponentUrnType.
1217 Regular Expression Pattern: . +\.base\.Agency=.+:AGENCIES\(1\.0\).+
1218
1219 **AgencySchemeUrnType:** Urn type for an agency scheme.
1220
1221 Derived by restriction of MaintainableUrnType.
1222 Regular Expression Pattern: . +\.base\.AgencyScheme=.+:AGENCIES\(1\.0\)
1223
1224 **DataConsumerUrnType:** Urn type for a data consumer.
1225
1226 Derived by restriction of ComponentUrnType.
1227 Regular Expression Pattern: . +\.base\.DataConsumer=.+:DATA_CONSUMERS\(1\.0\).+
1228
1229 **DataConsumerSchemeUrnType:** Urn type for a data consumer scheme.
1230
1231 Derived by restriction of MaintainableUrnType.
1232 Regular Expression Pattern: . +\.base\.DataConsumerScheme=.+:DATA_CONSUMERS\(1\.0\)
1233
1234 **DataProviderUrnType:** Urn type for a data provider.
1235
1236 Derived by restriction of ComponentUrnType.
1237 Regular Expression Pattern: . +\.base\.DataProvider=.+:DATA_PROVIDERS\(1\.0\).+
1238
1239 **DataProviderSchemeUrnType:** Urn type for a data provider scheme.
1240
1241 Derived by restriction of MaintainableUrnType.
1242 Regular Expression Pattern: . +\.base\.DataProviderScheme=.+:DATA_PROVIDERS\(1\.0\)
1243
1244 **MetadataProviderUrnType:** Urn type for a metadata provider.
1245
1246 Derived by restriction of ComponentUrnType.
1247 Regular Expression Pattern: . +\.base\.MetadataProvider=.+:METADATA_PROVIDERS\(1\.0\).+
1248
1249 **MetadataProviderSchemeUrnType:** Urn type for a metadata provider scheme.
1250
1251 Derived by restriction of MaintainableUrnType.
1252 Regular Expression Pattern: . +\.base\.MetadataProviderScheme=.+:METADATA_PROVIDERS\(1\.0\)
1253
1254 **OrganisationUnitUrnType:** Urn type for an organisation unit.
1255
1256 Derived by restriction of ComponentUrnType.
1257 Regular Expression Pattern: . +\.base\.OrganisationUnit=.+\(1\.0\).+
1258
1259 **OrganisationUnitSchemeUrnType:** Urn type for an organisation unit scheme.
1260
1261 Derived by restriction of MaintainableUrnType.
1262 Regular Expression Pattern: . +\.base\.OrganisationUnitScheme=.+\(1\.0\)
1263
1264 **CategorisationUrnType:** Urn type for a categorisation.
1265
1266 Derived by restriction of MaintainableUrnType.
1267 Regular Expression Pattern: . +\.categoryscheme\.Categorisation=.+
1268
1269 **CategoryUrnType:** Urn type for a category.
1270
1271 Derived by restriction of UrnType.
1272 Regular Expression Pattern: . +\.categoryscheme\.Category=.+
1273
1274 **CategorySchemeUrnType:** Urn type for a category scheme.
1275
1276 Derived by restriction of MaintainableUrnType.
1277 Regular Expression Pattern: . +\.categoryscheme\.CategoryScheme=.+
1278
1279 **ReportingCategoryUrnType:** Urn type for a reporting category.
1280
1281 Derived by restriction of UrnType.
1282 Regular Expression Pattern: . +\.categoryscheme\.ReportingCategory=.+
1283
1284 **ReportingTaxonomyUrnType:** Urn type for a reporting taxonomy.
1285
1286 Derived by restriction of MaintainableUrnType.
1287 Regular Expression Pattern: . +\.categoryscheme\.ReportingTaxonomy=.+
1288
1289 **CodeUrnType:** Urn type for a code.
1290
1291 Derived by restriction of ComponentUrnType.
1292 Regular Expression Pattern: . +\.codelist\.Code=.+
1293
1294 **CodelistUrnType:** Urn type for a codelist.
1295
1296 Derived by restriction of MaintainableUrnType.
1297 Regular Expression Pattern: . +\.codelist\.Codelist=.+
1298
1299 **HierarchicalCodeUrnType:** Urn type for a hierarchical code.
1300
1301 Derived by restriction of UrnType.
1302 Regular Expression Pattern: . +\.codelist\.HierarchicalCode=.+
1303
1304 **HierarchyUrnType:** Urn type for a hierarchy.
1305
1306 Derived by restriction of MaintainableUrnType.
1307 Regular Expression Pattern: . +\.codelist\.Hierarchy=.+
1308
1309 **HierarchyAssociationUrnType:** Urn type for a hierarchy association.
1310
1311 Derived by restriction of MaintainableUrnType.
1312 Regular Expression Pattern: . +\.codelist\.HierarchyAssociation=.+
1313
1314 **LevelUrnType:** Urn type for a level.
1315
1316 Derived by restriction of ComponentUrnType.
1317 Regular Expression Pattern: . +\.codelist\.Level=.+
1318
1319 **ValueListUrnType:** Urn type for a value list.
1320
1321 Derived by restriction of MaintainableUrnType.
1322 Regular Expression Pattern: . +\.codelist\.ValueList=.+
1323
1324 **ConceptUrnType:** Urn type for a concept.
1325
1326 Derived by restriction of ComponentUrnType.
1327 Regular Expression Pattern: . +\.conceptscheme\.Concept=.+
1328
1329 **ConceptSchemeUrnType:** Urn type for a concept scheme.
1330
1331 Derived by restriction of MaintainableUrnType.
1332 Regular Expression Pattern: . +\.conceptscheme\.ConceptScheme=.+
1333
1334 **AttributeDescriptorUrnType:** Urn type for an attribute descriptor.
1335
1336 Derived by restriction of ComponentUrnType.
1337 Regular Expression Pattern: . +\.datastructure\.AttributeDescriptor=.+
1338
1339 **DataAttributeUrnType:** Urn type for a data attribute.
1340
1341 Derived by restriction of ComponentUrnType.
1342 Regular Expression Pattern: . +\.datastructure\.DataAttribute=.+
1343
1344 **DataflowUrnType:** Urn type for a dataflow.
1345
1346 Derived by restriction of MaintainableUrnType.
1347 Regular Expression Pattern: . +\.datastructure\.Dataflow=.+
1348
1349 **DataStructureUrnType:** Urn type for a data structure.
1350
1351 Derived by restriction of MaintainableUrnType.
1352 Regular Expression Pattern: . +\.datastructure\.DataStructure=.+
1353
1354 **DimensionUrnType:** Urn type for a dimension.
1355
1356 Derived by restriction of ComponentUrnType.
1357 Regular Expression Pattern: . +\.datastructure\.Dimension=.+
1358
1359 **DimensionDescriptorUrnType:** Urn type for a dimension descriptor.
1360
1361 Derived by restriction of ComponentUrnType.
1362 Regular Expression Pattern: . +\.datastructure\.DimensionDescriptor=.+
1363
1364 **GroupDimensionDescriptorUrnType:** Urn type for a group dimension descriptor.
1365
1366 Derived by restriction of ComponentUrnType.
1367 Regular Expression Pattern: . +\.datastructure\.GroupDimensionDescriptor=.+
1368
1369 **MeasureUrnType:** Urn type for a measure.
1370
1371 Derived by restriction of ComponentUrnType.
1372 Regular Expression Pattern: . +\.datastructure\.Measure=.+
1373
1374 **MeasureDescriptorUrnType:** Urn type for a measure descriptor.
1375
1376 Derived by restriction of ComponentUrnType.
1377 Regular Expression Pattern: . +\.datastructure\.MeasureDescriptor=.+
1378
1379 **TimeDimensionUrnType:** Urn type for a time dimension.
1380
1381 Derived by restriction of ComponentUrnType.
1382 Regular Expression Pattern: . +\.datastructure\.TimeDimension=.+
1383
1384 **MetadataAttributeUrnType:** Urn type for a metadata attibute.
1385
1386 Derived by restriction of UrnType.
1387 Regular Expression Pattern: . +\.metadatastructure\.MetadataAttribute=.+
1388
1389 **MetadataflowUrnType:** Urn type for a metadataflow.
1390
1391 Derived by restriction of MaintainableUrnType.
1392 Regular Expression Pattern: . +\.metadatastructure\.Metadataflow=.+
1393
1394 **MetadataSetUrnType:** Urn type for a metadata set.
1395
1396 Derived by restriction of MaintainableUrnType.
1397 Regular Expression Pattern: . +\.metadatastructure\.MetadataSet=.+
1398
1399 **MetadataStructureUrnType:** Urn type for a metadata structure.
1400
1401 Derived by restriction of MaintainableUrnType.
1402 Regular Expression Pattern: . +\.metadatastructure\.MetadataStructure=.+
1403
1404 **ProcessUrnType:** Urn type for a process.
1405
1406 Derived by restriction of MaintainableUrnType.
1407 Regular Expression Pattern: . +\.process\.Process=.+
1408
1409 **ProcessStepUrnType:** Urn type for a process step.
1410
1411 Derived by restriction of UrnType.
1412 Regular Expression Pattern: . +\.process\.ProcessStep=.+
1413
1414 **TransitionUrnType:** Urn type for a transition.
1415
1416 Derived by restriction of UrnType.
1417 Regular Expression Pattern: .+\.process\.Transition=.+
1418
1419 **DataConstraintUrnType:** Urn type for a data constraint.
1420
1421 Derived by restriction of MaintainableUrnType.
1422 Regular Expression Pattern: . +\.registry\.DataConstraint=.+
1423
1424 **MetadataConstraintUrnType:** Urn type for a metadata constraint.
1425
1426 Derived by restriction of MaintainableUrnType.
1427 Regular Expression Pattern: . +\.registry\.MetadataConstraint=.+
1428
1429 **MetadataProvisionAgreementUrnType:** Urn type for a metadata provision agreement.
1430
1431 Derived by restriction of MaintainableUrnType.
1432 Regular Expression Pattern: . +\.registry\.MetadataProvisionAgreement=.+
1433
1434 **ProvisionAgreementUrnType:** Urn type for a provision agreement.
1435
1436 Derived by restriction of MaintainableUrnType.
1437 Regular Expression Pattern: . +\.registry\.ProvisionAgreement=.+
1438
1439 **CategorySchemeMapUrnType:** Urn type for a category scheme map.
1440
1441 Derived by restriction of MaintainableUrnType.
1442 Regular Expression Pattern: . +\.structuremapping\.CategorySchemeMap=.+
1443
1444 **ConceptSchemeMapUrnType:** Urn type for a concept scheme map.
1445
1446 Derived by restriction of MaintainableUrnType.
1447 Regular Expression Pattern: . +\.structuremapping\.ConceptSchemeMap=.+
1448
1449 **DatePatternMapUrnType:** Urn type for a date pattern map.
1450
1451 Derived by restriction of ComponentUrnType.
1452 Regular Expression Pattern: . +\.structuremapping\.DatePatternMap=.+
1453
1454 **EpochMapUrnType:** Urn type for a epoch map.
1455
1456 Derived by restriction of ComponentUrnType.
1457 Regular Expression Pattern: . +\.structuremapping\.EpochMap=.+
1458
1459 **FrequencyFormatMappingUrnType:** Urn type for a frequency format mapping.
1460
1461 Derived by restriction of ComponentUrnType.
1462 Regular Expression Pattern: . +\.structuremapping\.FrequencyFormatMapping=.+
1463
1464 **OrganisationSchemeMapUrnType:** Urn type for a organisation scheme map.
1465
1466 Derived by restriction of MaintainableUrnType.
1467 Regular Expression Pattern: . +\.structuremapping\.OrganisationSchemeMap=.+
1468
1469 **ReportingTaxonomyMapUrnType:** Urn type for a reporting taxonomy map.
1470
1471 Derived by restriction of MaintainableUrnType.
1472 Regular Expression Pattern: . +\.structuremapping\.ReportingTaxonomyMap=.+
1473
1474 **RepresentationMapUrnType:** Urn type for a representation map.
1475
1476 Derived by restriction of MaintainableUrnType.
1477 Regular Expression Pattern: . +\.structuremapping\.RepresentationMap=.+
1478
1479 **StructureMapUrnType:** Urn type for a structure map.
1480
1481 Derived by restriction of MaintainableUrnType.
1482 Regular Expression Pattern: . +\.structuremapping\.StructureMap=.+
1483
1484 **CustomTypeUrnType:** Urn type for a custom type.
1485
1486 Derived by restriction of ComponentUrnType.
1487 Regular Expression Pattern: . +\.transformation\.CustomType=.+
1488
1489 **CustomTypeSchemeUrnType:** Urn type for a custom type scheme.
1490
1491 Derived by restriction of MaintainableUrnType.
1492 Regular Expression Pattern: . +\.transformation\.CustomTypeScheme=.+
1493
1494 **NamePersonalisationUrnType:** Urn type for a name personalisation.
1495
1496 Derived by restriction of ComponentUrnType.
1497 Regular Expression Pattern: . +\.transformation\.NamePersonalisation=.+
1498
1499 **NamePersonalisationSchemeUrnType:** Urn type for a name personalisation scheme.
1500
1501 Derived by restriction of MaintainableUrnType.
1502 Regular Expression Pattern: . +\.transformation\.NamePersonalisationScheme=.+
1503
1504 **RulesetUrnType:** Urn type for a ruleset.
1505
1506 Derived by restriction of ComponentUrnType.
1507 Regular Expression Pattern: . +\.transformation\.Ruleset=.+
1508
1509 **RulesetSchemeUrnType:** Urn type for a ruleste scheme.
1510
1511 Derived by restriction of MaintainableUrnType.
1512 Regular Expression Pattern: . +\.transformation\.RulesetScheme=.+
1513
1514 **TransformationUrnType:** Urn type for a transformation.
1515
1516 Derived by restriction of ComponentUrnType.
1517 Regular Expression Pattern: . +\.transformation\.Transformation=.+
1518
1519 **TransformationSchemeUrnType:** Urn type for a transformation scheme.
1520
1521 Derived by restriction of MaintainableUrnType.
1522 Regular Expression Pattern: . +\.transformation\.TransformationScheme=.+
1523
1524 **UserDefinedOperatorUrnType:** Urn type for a user defined operator.
1525
1526 Derived by restriction of ComponentUrnType.
1527 Regular Expression Pattern: . +\.transformation\.UserDefinedOperator=.+
1528
1529 **UserDefinedOperatorSchemeUrnType:** Urn type for a user defined operator scheme.
1530
1531 Derived by restriction of MaintainableUrnType.
1532 Regular Expression Pattern: . +\.transformation\.UserDefinedOperatorScheme=.+
1533
1534 **VtlMappingUrnType:** Urn type for a VTL mapping.
1535
1536 Derived by restriction of ComponentUrnType.
1537 Regular Expression Pattern: . +\.transformation\.VtlCodelistMapping=.+.+\.transformation\.VtlConceptMapping=.+.+\.transformation\.VtlDataflowMapping=.+
1538
1539 **VtlMappingSchemeUrnType:** Urn type for a VTL mapping scheme.
1540
1541 Derived by restriction of MaintainableUrnType.
1542 Regular Expression Pattern: . +\.transformation\.VtlMappingScheme=.+
1543
1544 **StructureOrUsageReferenceType:** A reference type for a structure or structure usage.
1545
1546 Derived by restriction of MaintainableUrnReferenceType.
1547 Regular Expression Pattern: . +\.datastructure\.DataStructure=.+.+\.datastructure\.Dataflow=.+.+\.metadatastructure\.MetadataStructure=.+.+\.metadatastructure\.Metadataflow=.+
1548
1549 **StructureUsageReferenceType:** A reference type for structure usage.
1550
1551 Derived by restriction of StructureOrUsageReferenceType.
1552 Regular Expression Pattern: . +\.datastructure\.Dataflow=.+.+\.metadatastructure\.Metadataflow=.+
1553
1554 **StructureReferenceType:** A reference type for a structure.
1555
1556 Derived by restriction of StructureOrUsageReferenceType.
1557 Regular Expression Pattern: . +\.datastructure\.DataStructure=.+.+\.metadatastructure\.MetadataStructure=.+
1558
1559 **AnyCodelistReferenceType:** A reference type for a codelist or value list.
1560
1561 Derived by restriction of MaintainableUrnReferenceType.
1562 Regular Expression Pattern: . +\.codelist\.Codelist=.+.+\.codelist\.ValueList=.+
1563
1564 **OrganisationSchemeReferenceType:** A reference type for any type of organisation scheme.
1565
1566 Derived by restriction of MaintainableUrnReferenceType.
1567 Regular Expression Pattern: . +\.base\.AgencyScheme=.+:AGENCIES\(.+\).+\.base\.DataConsumerScheme=.+:DATA_CONSUMERS\(.+\).+\.base\.DataProviderScheme=.+:DATA_PROVIDERS\(.+\).+\.base\.MetadataProviderScheme=.+:METADATA_PROVIDERS\(.+\).+\.base\.OrganisationUnitScheme=.+
1568
1569 **OrganisationReferenceType:** A reference type for any type of organisation.
1570
1571 Derived by restriction of ComponentUrnReferenceType.
1572 Regular Expression Pattern: . +\.base\.Agency=.+:AGENCIES\(.+\).+.+\.base\.DataConsumer=.+:DATA_CONSUMERS\(.+\).+.+\.base\.DataProvider=.+:DATA_PROVIDERS\(.+\).+.+\.base\.MetadataProvider=.+:METADATA_PROVIDERS\(.+\).+.+\.base\.OrganisationUnit=.+
1573
1574 **ConstraintReferenceType:** A reference for any type of constraint.
1575
1576 Derived by restriction of MaintainableUrnReferenceType.
1577 Regular Expression Pattern: . +\.registry\.DataConstraint=.+.+\.registry\.MetadataConstraint=.+
1578
1579 **AgencyReferenceType:** A reference type for an agency.
1580
1581 Derived by restriction of OrganisationReferenceType.
1582 Regular Expression Pattern: . +\.base\.Agency=.+:AGENCIES\(.+\).+
1583
1584 **AgencySchemeReferenceType:** A reference type for an agency scheme.
1585
1586 Derived by restriction of OrganisationSchemeReferenceType.
1587 Regular Expression Pattern: . +\.base\.AgencyScheme=.+:AGENCIES\(.+\)
1588
1589 **DataConsumerReferenceType:** A reference type for a data consumer.
1590
1591 Derived by restriction of OrganisationReferenceType.
1592 Regular Expression Pattern: . +\.base\.DataConsumer=.+:DATA_CONSUMERS\(.+\).+
1593
1594 **DataConsumerSchemeReferenceType:** A reference type for a data consumer scheme.
1595
1596 Derived by restriction of OrganisationSchemeReferenceType.
1597 Regular Expression Pattern: . +\.base\.DataConsumerScheme=.+:DATA_CONSUMERS\(.+\)
1598
1599 **DataProviderReferenceType:** A reference type for a data provider.
1600
1601 Derived by restriction of OrganisationReferenceType.
1602 Regular Expression Pattern: . +\.base\.DataProvider=.+:DATA_PROVIDERS\(.+\).+
1603
1604 **DataProviderSchemeReferenceType:** A reference type for a data provider scheme.
1605
1606 Derived by restriction of OrganisationSchemeReferenceType.
1607 Regular Expression Pattern: . +\.base\.DataProviderScheme=.+:DATA_PROVIDERS\(.+\)
1608
1609 **MetadataProviderReferenceType:** A reference type for a metadata provider.
1610
1611 Derived by restriction of OrganisationReferenceType.
1612 Regular Expression Pattern: . +\.base\.MetadataProvider=.+:METADATA_PROVIDERS\(.+\).+
1613
1614 **MetadataProviderSchemeReferenceType:** A reference type for a metadata provider scheme.
1615
1616 Derived by restriction of OrganisationSchemeReferenceType.
1617 Regular Expression Pattern: . +\.base\.MetadataProviderScheme=.+:METADATA_PROVIDERS\(.+\)
1618
1619 **OrganisationUnitReferenceType:** A reference type for an organisation unit.
1620
1621 Derived by restriction of OrganisationReferenceType.
1622 Regular Expression Pattern: . +\.base\.OrganisationUnit=.+
1623
1624 **OrganisationUnitSchemeReferenceType:** A reference type for an organisation unit scheme.
1625
1626 Derived by restriction of OrganisationSchemeReferenceType.
1627 Regular Expression Pattern: . +\.base\.OrganisationUnitScheme=.+
1628
1629 **CategorisationReferenceType:** A reference type for a categorisation.
1630
1631 Derived by restriction of MaintainableUrnReferenceType.
1632 Regular Expression Pattern: . +\.categoryscheme\.Categorisation=.+
1633
1634 **CategoryReferenceType:** A reference type for a category.
1635
1636 Derived by restriction of UrnReferenceType.
1637 Regular Expression Pattern: . +\.categoryscheme\.Category=.+
1638
1639 **CategorySchemeReferenceType:** A reference type for a cateogry scheme.
1640
1641 Derived by restriction of MaintainableUrnReferenceType.
1642 Regular Expression Pattern: . +\.categoryscheme\.CategoryScheme=.+
1643
1644 **ReportingCategoryReferenceType:** A reference type for a reporting category.
1645
1646 Derived by restriction of UrnReferenceType.
1647 Regular Expression Pattern: . +\.categoryscheme\.ReportingCategory=.+
1648
1649 **ReportingTaxonomyReferenceType:** A reference type for a reporting taxonomy.
1650
1651 Derived by restriction of MaintainableUrnReferenceType.
1652 Regular Expression Pattern: . +\.categoryscheme\.ReportingTaxonomy=.+
1653
1654 **CodeReferenceType:** A reference type for a code.
1655
1656 Derived by restriction of ComponentUrnReferenceType.
1657 Regular Expression Pattern: . +\.codelist\.Code=.+
1658
1659 **CodelistReferenceType:** A reference type for a codelist.
1660
1661 Derived by restriction of AnyCodelistReferenceType.
1662 Regular Expression Pattern: . +\.codelist\.Codelist=.+
1663
1664 **HierarchicalCodeReferenceType:** A reference type for a hierarchical code.
1665
1666 Derived by restriction of UrnReferenceType.
1667 Regular Expression Pattern: . +\.codelist\.HierarchicalCode=.+
1668
1669 **HierarchyReferenceType:** A reference type for a hierarchy.
1670
1671 Derived by restriction of MaintainableUrnReferenceType.
1672 Regular Expression Pattern: . +\.codelist\.Hierarchy=.+
1673
1674 **HierarchyAssociationReferenceType:** A reference type for a hierarchy association.
1675
1676 Derived by restriction of MaintainableUrnReferenceType.
1677 Regular Expression Pattern: . +\.codelist\.HierarchyAssociation=.+
1678
1679 **LevelReferenceType:** A reference type for a level.
1680
1681 Derived by restriction of ComponentUrnReferenceType.
1682 Regular Expression Pattern: . +\.codelist\.Level=.+
1683
1684 **ValueListReferenceType:** A reference type for a value list.
1685
1686 Derived by restriction of AnyCodelistReferenceType.
1687 Regular Expression Pattern: . +\.codelist\.ValueList=.+
1688
1689 **ConceptReferenceType:** A reference type for a concept.
1690
1691 Derived by restriction of ComponentUrnReferenceType.
1692 Regular Expression Pattern: . +\.conceptscheme\.Concept=.+
1693
1694 **ConceptSchemeReferenceType:** A reference type for a concept scheme.
1695
1696 Derived by restriction of MaintainableUrnReferenceType.
1697 Regular Expression Pattern: . +\.conceptscheme\.ConceptScheme=.+
1698
1699 **AttributeDescriptorReferenceType:** A reference type for an attribute descriptor.
1700
1701 Derived by restriction of ComponentUrnReferenceType.
1702 Regular Expression Pattern: . +\.datastructure\.AttributeDescriptor=.+
1703
1704 **DataAttributeReferenceType:** A reference type for a data attribute.
1705
1706 Derived by restriction of ComponentUrnReferenceType.
1707 Regular Expression Pattern: . +\.datastructure\.DataAttribute=.+
1708
1709 **DataflowReferenceType:** A reference type for a dataflow.
1710
1711 Derived by restriction of StructureUsageReferenceType.
1712 Regular Expression Pattern: . +\.datastructure\.Dataflow=.+
1713
1714 **DataStructureReferenceType:** A reference type for a data structure.
1715
1716 Derived by restriction of StructureReferenceType.
1717 Regular Expression Pattern: . +\.datastructure\.DataStructure=.+
1718
1719 **DimensionReferenceType:** A reference type for a dimension.
1720
1721 Derived by restriction of ComponentUrnReferenceType.
1722 Regular Expression Pattern: . +\.datastructure\.Dimension=.+
1723
1724 **DimensionDescriptorReferenceType:** A reference type for a dimension descriptor.
1725
1726 Derived by restriction of ComponentUrnReferenceType.
1727 Regular Expression Pattern: . +\.datastructure\.DimensionDescriptor=.+
1728
1729 **GroupDimensionDescriptorReferenceType:** A reference type for a group dimension descriptor.
1730
1731 Derived by restriction of ComponentUrnReferenceType.
1732 Regular Expression Pattern: . +\.datastructure\.GroupDimensionDescriptor=.+
1733
1734 **MeasureReferenceType:** A reference type for a measure.
1735
1736 Derived by restriction of ComponentUrnReferenceType.
1737 Regular Expression Pattern: . +\.datastructure\.Measure=.+
1738
1739 **MeasureDescriptorReferenceType:** A reference type for a measure descriptor.
1740
1741 Derived by restriction of ComponentUrnReferenceType.
1742 Regular Expression Pattern: . +\.datastructure\.MeasureDescriptor=.+
1743
1744 **TimeDimensionReferenceType:** A reference type for a time dimension.
1745
1746 Derived by restriction of ComponentUrnReferenceType.
1747 Regular Expression Pattern: . +\.datastructure\.TimeDimension=.+
1748
1749 **MetadataAttributeReferenceType:** A reference type for a metadata attribute.
1750
1751 Derived by restriction of UrnReferenceType.
1752 Regular Expression Pattern: . +\.metadatastructure\.MetadataAttribute=.+
1753
1754 **MetadataflowReferenceType:** A reference type for a metadataflow.
1755
1756 Derived by restriction of StructureUsageReferenceType.
1757 Regular Expression Pattern: . +\.metadatastructure\.Metadataflow=.+
1758
1759 **MetadataSetReferenceType:** A reference type for a metadata set.
1760
1761 Derived by restriction of StructureReferenceType.
1762 Regular Expression Pattern: . +\.metadatastructure\.MetadataSet=.+
1763
1764 **MetadataStructureReferenceType:** A reference type for a metadata structure.
1765
1766 Derived by restriction of StructureReferenceType.
1767 Regular Expression Pattern: . +\.metadatastructure\.MetadataStructure=.+
1768
1769 **ProcessReferenceType:** A reference type for a process.
1770
1771 Derived by restriction of MaintainableUrnReferenceType.
1772 Regular Expression Pattern: . +\.process\.Process=.+
1773
1774 **ProcessStepReferenceType:** A reference type for a process step.
1775
1776 Derived by restriction of UrnReferenceType.
1777 Regular Expression Pattern: . +\.process\.ProcessStep=.+
1778
1779 **TransitionReferenceType:** A reference type for a transition.
1780
1781 Derived by restriction of UrnReferenceType.
1782 Regular Expression Pattern: . +\.process\.Transition=.+
1783
1784 **DataConstraintReferenceType:** A reference type for a data constraint.
1785
1786 Derived by restriction of ConstraintReferenceType.
1787 Regular Expression Pattern: . +\.registry\.DataConstraint=.+
1788
1789 **MetadataConstraintReferenceType:** A reference type for a metadata constraint.
1790
1791 Derived by restriction of ConstraintReferenceType.
1792 Regular Expression Pattern: . +\.registry\.MetadataConstraint=.+
1793
1794 **MetadataProvisionAgreementReferenceType:** A reference type for a metadata provision agreement.
1795
1796 Derived by restriction of MaintainableUrnReferenceType.
1797 Regular Expression Pattern: . +\.registry\.MetadataProvisionAgreement=.+
1798
1799 **ProvisionAgreementReferenceType:** A reference type for a provision agreement.
1800
1801 Derived by restriction of MaintainableUrnReferenceType.
1802 Regular Expression Pattern: . +\.registry\.ProvisionAgreement=.+
1803
1804 **CategorySchemeMapReferenceType:** A reference type for a category scheme map.
1805
1806 Derived by restriction of MaintainableUrnReferenceType.
1807 Regular Expression Pattern: . +\.structuremapping\.CategorySchemeMap=.+
1808
1809 **ConceptSchemeMapReferenceType:** A reference type for a concept scheme map.
1810
1811 Derived by restriction of MaintainableUrnReferenceType.
1812 Regular Expression Pattern: . +\.structuremapping\.ConceptSchemeMap=.+
1813
1814 **DatePatternMapReferenceType:** A reference type for a date pattern map.
1815
1816 Derived by restriction of ComponentUrnReferenceType.
1817 Regular Expression Pattern: . +\.structuremapping\.DatePatternMap=.+
1818
1819 **EpochMapReferenceType:** A reference type for an epoch map.
1820
1821 Derived by restriction of ComponentUrnReferenceType.
1822 Regular Expression Pattern: . +\.structuremapping\.EpochMap=.+
1823
1824 **FrequencyFormatMappingReferenceType:** A reference type for a frequnecy format mapping.
1825
1826 Derived by restriction of ComponentUrnReferenceType.
1827 Regular Expression Pattern: . +\.structuremapping\.FrequencyFormatMapping=.+
1828
1829 **OrganisationSchemeMapReferenceType:** A reference type for a organisation scheme map.
1830
1831 Derived by restriction of MaintainableUrnReferenceType.
1832 Regular Expression Pattern: . +\.structuremapping\.OrganisationSchemeMap=.+
1833
1834 **ReportingTaxonomyMapReferenceType:** A reference type for a reporting taxonomy map.
1835
1836 Derived by restriction of MaintainableUrnReferenceType.
1837 Regular Expression Pattern: . +\.structuremapping\.ReportingTaxonomyMap=.+
1838
1839 **RepresentationMapReferenceType:** A reference type for a representation map.
1840
1841 Derived by restriction of MaintainableUrnReferenceType.
1842 Regular Expression Pattern: . +\.structuremapping\.RepresentationMap=.+
1843
1844 **StructureMapReferenceType:** A reference type for a structure map.
1845
1846 Derived by restriction of MaintainableUrnReferenceType.
1847 Regular Expression Pattern: . +\.structuremapping\.StructureMap=.+
1848
1849 **CustomTypeReferenceType:** A reference type for a custom type.
1850
1851 Derived by restriction of ComponentUrnReferenceType.
1852 Regular Expression Pattern: . +\.transformation\.CustomType=.+
1853
1854 **CustomTypeSchemeReferenceType:** A reference type for a custom type scheme.
1855
1856 Derived by restriction of MaintainableUrnReferenceType.
1857 Regular Expression Pattern: . +\.transformation\.CustomTypeScheme=.+
1858
1859 **NamePersonalisationReferenceType:** A reference type for a name personalisation.
1860
1861 Derived by restriction of ComponentUrnReferenceType.
1862 Regular Expression Pattern: . +\.transformation\.NamePersonalisation=.+
1863
1864 **NamePersonalisationSchemeReferenceType:** A reference type for a name personalisation scheme.
1865
1866 Derived by restriction of MaintainableUrnReferenceType.
1867 Regular Expression Pattern: . +\.transformation\.NamePersonalisationScheme=.+
1868
1869 **RulesetReferenceType:** A reference type for a ruleset.
1870
1871 Derived by restriction of ComponentUrnReferenceType.
1872 Regular Expression Pattern: . +\.transformation\.Ruleset=.+
1873
1874 **RulesetSchemeReferenceType:** A reference type for a ruleset scheme.
1875
1876 Derived by restriction of MaintainableUrnReferenceType.
1877 Regular Expression Pattern: . +\.transformation\.RulesetScheme=.+
1878
1879 **TransformationReferenceType:** A reference type for a transformation.
1880
1881 Derived by restriction of ComponentUrnReferenceType.
1882 Regular Expression Pattern: . +\.transformation\.Transformation=.+
1883
1884 **TransformationSchemeReferenceType:** A reference type for a transformation scheme.
1885
1886 Derived by restriction of MaintainableUrnReferenceType.
1887 Regular Expression Pattern: . +\.transformation\.TransformationScheme=.+
1888
1889 **UserDefinedOperatorReferenceType:** A reference type for a user defined operator.
1890
1891 Derived by restriction of ComponentUrnReferenceType.
1892 Regular Expression Pattern: . +\.transformation\.UserDefinedOperator=.+
1893
1894 **UserDefinedOperatorSchemeReferenceType:** A reference type for a user defined operator scheme.
1895
1896 Derived by restriction of MaintainableUrnReferenceType.
1897 Regular Expression Pattern: . +\.transformation\.UserDefinedOperatorScheme=.+
1898
1899 **VtlMappingReferenceType:** A reference type for a VTL mapping.
1900
1901 Derived by restriction of ComponentUrnReferenceType.
1902 Regular Expression Pattern: . +\.transformation\.VtlCodelistMapping=.+.+\.transformation\.VtlConceptMapping=.+.+\.transformation\.VtlDataflowMapping=.+
1903
1904 **VtlMappingSchemeReferenceType:** A reference type for a VTL mapping scheme.
1905
1906 Derived by restriction of MaintainableUrnReferenceType.
1907 Regular Expression Pattern: . +\.transformation\.VtlMappingScheme=.+
1908
1909 **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.
1910
1911 Union of:
1912
1913 LegacyVersionNumberType, SemanticVersionNumberType, SemanticVersionReferenceType.
1914
1915 **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 "+".
1916
1917 Derived by restriction of xs:string.
1918 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*)\+?))
1919
1920 **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.
1921
1922 Union of:
1923
1924 LegacyVersionNumberType, SemanticVersionNumberType, SemanticVersionReferenceType, WildcardType.
1925
1926 **WildcardType:** WildcardType is a single value code list, used to include the '*' character - indicating that the identification component is wildcarded.
1927
1928 Derived by restriction of xs:string.
1929
1930 Enumerations:
1931
1932 |**Value**|**Documentation**
1933
1934 |\*|Indicates that any value of the identifier component is allowed.|
1935
1936 **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, \_, -, $.
1937
1938 Derived by restriction of xs:string.
1939 Regular Expression Pattern: [A-Za-z0-9_@$\-]+(\.[A-Za-z0-9_@$\-]+)
1940
1941 **TwoLevelIDType:** TwoLevelIDType defines an identifier with exactly two levels.
1942
1943 Derived by restriction of NestedIDType.
1944 Regular Expression Pattern: [A-Za-z0-9_@$\-]+\.[A-Za-z0-9_@$\-]+
1945
1946 **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, \_, -, $.
1947
1948 Derived by restriction of NestedIDType.
1949 Regular Expression Pattern: [A-Za-z0-9_@$\-]+
1950
1951 **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.
1952
1953 Derived by restriction of IDType.
1954 Regular Expression Pattern: [A-Za-z][A-Za-z0-9_\-]
1955
1956 **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.
1957
1958 Derived by restriction of NestedIDType.
1959 Regular Expression Pattern: [A-Za-z][A-Za-z0-9_\-]*(\.[A-Za-z][A-Za-z0-9_\-]*)
1960
1961 **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).
1962
1963 Derived by restriction of NestedNCNameIDType.
1964 Regular Expression Pattern: [A-Za-z][A-Za-z0-9_\-]
1965
1966 **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.
1967
1968 Union of:
1969 LegacyVersionNumberType, SemanticVersionNumberType.
1970
1971 **SemanticVersionNumberType:** SemanticVersionNumberType is a simple type for validating semantic version in the format (major.minor.patch[-extension]).
1972
1973 Derived by restriction of xs:string.
1974 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]*~)~)~)*)?
1975
1976 **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.
1977
1978 Derived by restriction of xs:string.
1979 Regular Expression Pattern: (0|[1-9]\d*)(\.(0|[1-9]\d*))?
© Semantic R&D Group, 2026