Version 6.5 by Helena K. on 2025/07/03 12:23

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