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

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