lutaml-model 0.7.7 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1573) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/dependent-tests.yml +4 -0
  3. data/.github/workflows/docs.yml +59 -0
  4. data/.github/workflows/downstream-performance.yml +156 -0
  5. data/.github/workflows/performance.yml +33 -0
  6. data/.github/workflows/rake.yml +13 -0
  7. data/.github/workflows/release.yml +5 -0
  8. data/.gitignore +27 -1
  9. data/.rubocop.yml +14 -2
  10. data/.rubocop_todo.yml +574 -88
  11. data/Gemfile +15 -9
  12. data/README.adoc +13522 -6905
  13. data/RELEASE_NOTES.adoc +51 -0
  14. data/Rakefile +2 -0
  15. data/bench/baselines/.gitkeep +0 -0
  16. data/bench/bench_all.rb +52 -0
  17. data/bench/bench_common.rb +147 -0
  18. data/bench/bench_compare.rb +195 -0
  19. data/bench/bench_mml.rb +53 -0
  20. data/bench/bench_niso.rb +54 -0
  21. data/bench/bench_sts.rb +49 -0
  22. data/bench/bench_unitsml.rb +43 -0
  23. data/bench/bench_uniword.rb +69 -0
  24. data/bench/bench_xmi.rb +51 -0
  25. data/bench/gate_config.rb +127 -0
  26. data/benchmark/quick_benchmark.rb +297 -0
  27. data/benchmark/serialization_benchmark.rb +619 -0
  28. data/docs/.rubocop.yml +1 -0
  29. data/docs/.rubocop_todo.yml +7 -0
  30. data/docs/Gemfile +13 -0
  31. data/docs/PERFORMANCE_METHODOLOGY.md +645 -0
  32. data/docs/_config.yml +145 -0
  33. data/docs/_guides/advanced-mapping.adoc +564 -0
  34. data/docs/_guides/character-encoding.adoc +342 -0
  35. data/docs/_guides/collection-serialization.adoc +349 -0
  36. data/docs/_guides/creating-xsd.adoc +1221 -0
  37. data/docs/_guides/index.adoc +71 -0
  38. data/docs/_guides/keyvalue-serialization.adoc +1156 -0
  39. data/docs/_guides/liquid-templates.adoc +505 -0
  40. data/docs/_guides/missing-values-handling.adoc +1531 -0
  41. data/docs/_guides/ooxml-examples.adoc +755 -0
  42. data/docs/{schema_generation.adoc → _guides/schema-generation.adoc} +5 -0
  43. data/docs/{schema_import.adoc → _guides/schema-import.adoc} +276 -4
  44. data/docs/_guides/value-transformations.adoc +1388 -0
  45. data/docs/_guides/xml/namespace-presentation.adoc +476 -0
  46. data/docs/_guides/xml/namespace-semantics.adoc +677 -0
  47. data/docs/_guides/xml/reusable-mapping-classes.adoc +181 -0
  48. data/docs/_guides/xml/schema-location.adoc +245 -0
  49. data/docs/_guides/xml/type-namespaces.adoc +1011 -0
  50. data/docs/_guides/xml-mapping.adoc +1847 -0
  51. data/docs/_guides/xml-mappings-guide.adoc +21 -0
  52. data/docs/_guides/xml-namespace-declarations.adoc +662 -0
  53. data/docs/_guides/xml-namespace-qualification.adoc +720 -0
  54. data/docs/_guides/xml-namespaces.adoc +2613 -0
  55. data/docs/_guides/xml_mappings/01_introduction.adoc +65 -0
  56. data/docs/_guides/xml_mappings/02_core_concepts.adoc +177 -0
  57. data/docs/_guides/xml_mappings/03_architecture.adoc +205 -0
  58. data/docs/_guides/xml_mappings/04_xml_namespace_class.adoc +1754 -0
  59. data/docs/_guides/xml_mappings/05_common_patterns.adoc +1803 -0
  60. data/docs/_guides/xml_mappings/06_migration_guide.adoc +523 -0
  61. data/docs/_guides/xml_mappings/07_best_practices.adoc +959 -0
  62. data/docs/_guides/xml_mappings/08_troubleshooting.adoc +934 -0
  63. data/docs/_migrations/0-1-0-migrate-from-shale.adoc +304 -0
  64. data/docs/_migrations/0-8-0-namespace-restructuring.adoc +1572 -0
  65. data/docs/_migrations/0-8-0-xsd-features.adoc +729 -0
  66. data/docs/_migrations/index.adoc +18 -0
  67. data/docs/_migrations/xsd-type-migration.adoc +1294 -0
  68. data/docs/_pages/attributes.adoc +1156 -0
  69. data/docs/_pages/breaking-changes.adoc +154 -0
  70. data/docs/_pages/collections.adoc +1664 -0
  71. data/docs/_pages/comparison-with-shale.adoc +139 -0
  72. data/docs/_pages/configuration.adoc +192 -0
  73. data/docs/_pages/consolidation-mapping.adoc +252 -0
  74. data/docs/_pages/importable_models.adoc +591 -0
  75. data/docs/_pages/index.adoc +46 -0
  76. data/docs/_pages/installation.adoc +35 -0
  77. data/docs/_pages/models.adoc +332 -0
  78. data/docs/_pages/quick-start.adoc +124 -0
  79. data/docs/_pages/serialization_adapters.adoc +268 -0
  80. data/docs/_pages/troubleshooting.adoc +104 -0
  81. data/docs/_pages/validation.adoc +171 -0
  82. data/docs/_pages/value_types.adoc +1514 -0
  83. data/docs/_pages/xml-conformance.adoc +143 -0
  84. data/docs/_references/architecture.adoc +189 -0
  85. data/docs/{custom_adapters.adoc → _references/custom_adapters.adoc} +6 -1
  86. data/docs/_references/custom_registers.adoc +1026 -0
  87. data/docs/_references/data-modeling-in-a-nutshell.adoc +207 -0
  88. data/docs/_references/format-independent-features.adoc +713 -0
  89. data/docs/_references/index.adoc +47 -0
  90. data/docs/_references/instance-serialization.adoc +120 -0
  91. data/docs/_references/lutaml-namespace-planning.md +120 -0
  92. data/docs/_references/parent-root-context.adoc +122 -0
  93. data/docs/_references/reference_type.adoc +302 -0
  94. data/docs/_references/serialization-model-mappings.adoc +102 -0
  95. data/docs/_references/three-phase-namespace-architecture.adoc +470 -0
  96. data/docs/_references/xml-w3c-namespace-qualification.adoc +66 -0
  97. data/docs/_references/xsd-generation-with-namespace-support.adoc +449 -0
  98. data/docs/_references/xsd-schema-parsing.adoc +1260 -0
  99. data/docs/_references/xsd-type-architecture.adoc +534 -0
  100. data/docs/_tutorials/basic-model-definition.adoc +157 -0
  101. data/docs/_tutorials/custom-types-tutorial.adoc +258 -0
  102. data/docs/_tutorials/first-json-serialization.adoc +192 -0
  103. data/docs/_tutorials/first-xml-serialization.adoc +223 -0
  104. data/docs/_tutorials/index.adoc +60 -0
  105. data/docs/_tutorials/lutaml-xml-architecture.adoc +1354 -0
  106. data/docs/_tutorials/polymorphic-models-tutorial.adoc +253 -0
  107. data/docs/_tutorials/schema-compiler-module-namespaces.adoc +497 -0
  108. data/docs/_tutorials/validation-basics.adoc +232 -0
  109. data/docs/_tutorials/working-with-collections.adoc +201 -0
  110. data/docs/_tutorials/xml-element-attribute-namespace-guide.adoc +279 -0
  111. data/docs/_tutorials/xml-namespaces-basics.adoc +315 -0
  112. data/docs/_tutorials/xml-schema-primer-style-guide.adoc +1394 -0
  113. data/docs/architecture.md +424 -0
  114. data/docs/bugreports/BUGREPORT_element_order_render_empty.md +99 -0
  115. data/docs/cli_compare.adoc +249 -0
  116. data/docs/collection_validation.adoc +366 -0
  117. data/docs/index.adoc +106 -0
  118. data/docs/key_value_data_model.adoc +1229 -0
  119. data/docs/model_transforms.adoc +769 -0
  120. data/docs/namespace-management.adoc +1051 -0
  121. data/docs/xml-schema-qualification.md +171 -0
  122. data/lib/lutaml/{model/hash_adapter → hash_format/adapter}/document.rb +3 -4
  123. data/lib/lutaml/hash_format/adapter/mapping.rb +19 -0
  124. data/lib/lutaml/hash_format/adapter/mapping_rule.rb +9 -0
  125. data/lib/lutaml/{model/hash_adapter → hash_format/adapter}/standard_adapter.rb +3 -3
  126. data/lib/lutaml/hash_format/adapter/transform.rb +9 -0
  127. data/lib/lutaml/hash_format/adapter.rb +13 -0
  128. data/lib/lutaml/hash_format/type/serializers.rb +24 -0
  129. data/lib/lutaml/hash_format.rb +25 -0
  130. data/lib/lutaml/{model/json → json/adapter}/document.rb +3 -3
  131. data/lib/lutaml/json/adapter/mapping.rb +19 -0
  132. data/lib/lutaml/json/adapter/mapping_rule.rb +9 -0
  133. data/lib/lutaml/json/adapter/multi_json_adapter.rb +38 -0
  134. data/lib/lutaml/json/adapter/oj_adapter.rb +38 -0
  135. data/lib/lutaml/json/adapter/standard_adapter.rb +36 -0
  136. data/lib/lutaml/json/adapter/transform.rb +9 -0
  137. data/lib/lutaml/json/adapter.rb +20 -0
  138. data/lib/lutaml/json/schema/json_schema.rb +62 -0
  139. data/lib/lutaml/json/schema.rb +9 -0
  140. data/lib/lutaml/json/type/serializers.rb +72 -0
  141. data/lib/lutaml/json.rb +58 -0
  142. data/lib/lutaml/{model/jsonl → jsonl/adapter}/document.rb +2 -2
  143. data/lib/lutaml/jsonl/adapter/mapping.rb +19 -0
  144. data/lib/lutaml/jsonl/adapter/mapping_rule.rb +9 -0
  145. data/lib/lutaml/{model/jsonl → jsonl/adapter}/standard_adapter.rb +5 -4
  146. data/lib/lutaml/jsonl/adapter/transform.rb +26 -0
  147. data/lib/lutaml/jsonl/adapter.rb +13 -0
  148. data/lib/lutaml/jsonl.rb +21 -0
  149. data/lib/lutaml/key_value/adapter/hash/document.rb +13 -0
  150. data/lib/lutaml/key_value/adapter/hash/mapping.rb +19 -0
  151. data/lib/lutaml/key_value/adapter/hash/mapping_rule.rb +9 -0
  152. data/lib/lutaml/key_value/adapter/hash/standard_adapter.rb +19 -0
  153. data/lib/lutaml/key_value/adapter/hash/transform.rb +10 -0
  154. data/lib/lutaml/key_value/adapter/hash.rb +15 -0
  155. data/lib/lutaml/key_value/adapter/json/document.rb +16 -0
  156. data/lib/lutaml/key_value/adapter/json/mapping.rb +24 -0
  157. data/lib/lutaml/key_value/adapter/json/mapping_rule.rb +14 -0
  158. data/lib/lutaml/key_value/adapter/json/multi_json_adapter.rb +43 -0
  159. data/lib/lutaml/key_value/adapter/json/oj_adapter.rb +43 -0
  160. data/lib/lutaml/key_value/adapter/json/standard_adapter.rb +41 -0
  161. data/lib/lutaml/key_value/adapter/json/transform.rb +14 -0
  162. data/lib/lutaml/key_value/adapter/json.rb +24 -0
  163. data/lib/lutaml/key_value/adapter/jsonl/document.rb +16 -0
  164. data/lib/lutaml/key_value/adapter/jsonl/mapping.rb +19 -0
  165. data/lib/lutaml/key_value/adapter/jsonl/mapping_rule.rb +9 -0
  166. data/lib/lutaml/key_value/adapter/jsonl/standard_adapter.rb +36 -0
  167. data/lib/lutaml/key_value/adapter/jsonl/transform.rb +26 -0
  168. data/lib/lutaml/key_value/adapter/jsonl.rb +17 -0
  169. data/lib/lutaml/key_value/adapter/toml/document.rb +13 -0
  170. data/lib/lutaml/key_value/adapter/toml/mapping.rb +28 -0
  171. data/lib/lutaml/key_value/adapter/toml/mapping_rule.rb +9 -0
  172. data/lib/lutaml/key_value/adapter/toml/toml_rb_adapter.rb +40 -0
  173. data/lib/lutaml/key_value/adapter/toml/tomlib_adapter.rb +46 -0
  174. data/lib/lutaml/key_value/adapter/toml/transform.rb +10 -0
  175. data/lib/lutaml/key_value/adapter/toml.rb +21 -0
  176. data/lib/lutaml/key_value/adapter/yaml/document.rb +12 -0
  177. data/lib/lutaml/key_value/adapter/yaml/mapping.rb +19 -0
  178. data/lib/lutaml/key_value/adapter/yaml/mapping_rule.rb +9 -0
  179. data/lib/lutaml/key_value/adapter/yaml/standard_adapter.rb +41 -0
  180. data/lib/lutaml/key_value/adapter/yaml/transform.rb +10 -0
  181. data/lib/lutaml/key_value/adapter/yaml.rb +17 -0
  182. data/lib/lutaml/key_value/adapter/yamls/document.rb +16 -0
  183. data/lib/lutaml/key_value/adapter/yamls/mapping.rb +19 -0
  184. data/lib/lutaml/key_value/adapter/yamls/mapping_rule.rb +9 -0
  185. data/lib/lutaml/key_value/adapter/yamls/standard_adapter.rb +37 -0
  186. data/lib/lutaml/key_value/adapter/yamls/transform.rb +26 -0
  187. data/lib/lutaml/key_value/adapter/yamls.rb +17 -0
  188. data/lib/lutaml/key_value/adapter.rb +14 -0
  189. data/lib/lutaml/key_value/data_model/element.rb +222 -0
  190. data/lib/lutaml/key_value/data_model.rb +14 -0
  191. data/lib/lutaml/{model/key_value_document.rb → key_value/document.rb} +2 -2
  192. data/lib/lutaml/{model/mapping/key_value_mapping.rb → key_value/mapping.rb} +81 -43
  193. data/lib/lutaml/{model/mapping/key_value_mapping_rule.rb → key_value/mapping_rule.rb} +9 -10
  194. data/lib/lutaml/{model/transform/key_value_transform.rb → key_value/transform.rb} +111 -65
  195. data/lib/lutaml/key_value/transformation/collection_serializer.rb +575 -0
  196. data/lib/lutaml/key_value/transformation/rule_compiler.rb +294 -0
  197. data/lib/lutaml/key_value/transformation/value_serializer.rb +268 -0
  198. data/lib/lutaml/key_value/transformation.rb +1071 -0
  199. data/lib/lutaml/key_value/transformation_builder.rb +30 -0
  200. data/lib/lutaml/key_value.rb +24 -0
  201. data/lib/lutaml/model/attribute.rb +515 -121
  202. data/lib/lutaml/model/attribute_validator.rb +288 -0
  203. data/lib/lutaml/model/cached_type_resolver/concurrent_map_cache.rb +46 -0
  204. data/lib/lutaml/model/cached_type_resolver/mutex_hash_cache.rb +51 -0
  205. data/lib/lutaml/model/cached_type_resolver.rb +144 -0
  206. data/lib/lutaml/model/choice.rb +230 -13
  207. data/lib/lutaml/model/cli.rb +75 -121
  208. data/lib/lutaml/model/collection.rb +510 -43
  209. data/lib/lutaml/model/collection_handler.rb +106 -0
  210. data/lib/lutaml/model/comparable_model.rb +11 -3
  211. data/lib/lutaml/model/comparable_nil.rb +0 -2
  212. data/lib/lutaml/model/compiled_rule.rb +208 -0
  213. data/lib/lutaml/model/config.rb +56 -88
  214. data/lib/lutaml/model/configuration.rb +323 -0
  215. data/lib/lutaml/model/consolidation/attribute_grouper.rb +44 -0
  216. data/lib/lutaml/model/consolidation/dispatcher.rb +45 -0
  217. data/lib/lutaml/model/consolidation/engine.rb +33 -0
  218. data/lib/lutaml/model/consolidation/pattern_chunker.rb +87 -0
  219. data/lib/lutaml/model/consolidation_map.rb +68 -0
  220. data/lib/lutaml/model/consolidation_rule/dispatch_block.rb +34 -0
  221. data/lib/lutaml/model/consolidation_rule/gather_rule.rb +17 -0
  222. data/lib/lutaml/model/consolidation_rule/pattern_content_rule.rb +15 -0
  223. data/lib/lutaml/model/consolidation_rule/pattern_element_rule.rb +17 -0
  224. data/lib/lutaml/model/consolidation_rule.rb +27 -0
  225. data/lib/lutaml/model/constants.rb +5 -3
  226. data/lib/lutaml/model/context_registry.rb +208 -0
  227. data/lib/lutaml/model/error/element_count_out_of_range_error.rb +13 -7
  228. data/lib/lutaml/model/error/format_adapter_not_specified_error.rb +25 -0
  229. data/lib/lutaml/model/error/invalid_attribute_type_error.rb +98 -0
  230. data/lib/lutaml/model/error/invalid_format_error.rb +11 -0
  231. data/lib/lutaml/model/error/liquid_class_not_found_error.rb +9 -0
  232. data/lib/lutaml/model/error/mapping_already_exists_error.rb +6 -0
  233. data/lib/lutaml/model/error/mapping_attribute_missing_error.rb +6 -0
  234. data/lib/lutaml/model/error/mapping_attribute_type_error.rb +6 -0
  235. data/lib/lutaml/model/error/mixed_content_collection_error.rb +17 -0
  236. data/lib/lutaml/model/error/no_attributes_defined_liquid_error.rb +9 -0
  237. data/lib/lutaml/model/error/no_mapping_found_error.rb +9 -0
  238. data/lib/lutaml/model/error/required_attribute_missing_error.rb +9 -0
  239. data/lib/lutaml/model/error/reverse_transform_block_not_defined_error.rb +6 -0
  240. data/lib/lutaml/model/error/reverse_transformation_declaration_error.rb +6 -0
  241. data/lib/lutaml/model/error/sorting_configuration_conflict_error.rb +9 -0
  242. data/lib/lutaml/model/error/transform_block_not_defined_error.rb +6 -0
  243. data/lib/lutaml/model/error/type.rb +17 -0
  244. data/lib/lutaml/model/error/undefined_attribute_error.rb +9 -0
  245. data/lib/lutaml/model/error/unknown_adapter_type_error.rb +82 -3
  246. data/lib/lutaml/model/error/unknown_type_error.rb +25 -2
  247. data/lib/lutaml/model/error/unresolvable_type_error.rb +27 -0
  248. data/lib/lutaml/model/error.rb +2 -33
  249. data/lib/lutaml/model/errors.rb +4 -2
  250. data/lib/lutaml/model/finalization_cache.rb +51 -0
  251. data/lib/lutaml/model/format_registry.rb +236 -2
  252. data/lib/lutaml/model/global_context.rb +446 -0
  253. data/lib/lutaml/model/global_register.rb +106 -5
  254. data/lib/lutaml/model/hash.rb +15 -0
  255. data/lib/lutaml/model/import_registry.rb +250 -0
  256. data/lib/lutaml/model/instrumentation.rb +304 -0
  257. data/lib/lutaml/model/json.rb +17 -13
  258. data/lib/lutaml/model/jsonl.rb +7 -13
  259. data/lib/lutaml/model/liquefiable.rb +100 -12
  260. data/lib/lutaml/model/liquid/mapping.rb +30 -0
  261. data/lib/lutaml/model/liquid.rb +9 -0
  262. data/lib/lutaml/model/mapping/listener.rb +124 -0
  263. data/lib/lutaml/model/mapping/mapping.rb +99 -1
  264. data/lib/lutaml/model/mapping/mapping_rule.rb +172 -17
  265. data/lib/lutaml/model/mapping/model_mapping.rb +133 -0
  266. data/lib/lutaml/model/mapping/model_mapping_rule.rb +57 -0
  267. data/lib/lutaml/model/mapping_hash.rb +3 -1
  268. data/lib/lutaml/model/model_transformer.rb +101 -0
  269. data/lib/lutaml/model/one_entry_cache.rb +57 -0
  270. data/lib/lutaml/model/organization.rb +29 -0
  271. data/lib/lutaml/model/register/model_tree_importer.rb +88 -0
  272. data/lib/lutaml/model/register/namespace_binding.rb +92 -0
  273. data/lib/lutaml/model/register.rb +500 -35
  274. data/lib/lutaml/model/registrable.rb +2 -0
  275. data/lib/lutaml/model/render_policy.rb +154 -0
  276. data/lib/lutaml/model/runtime_compatibility.rb +95 -0
  277. data/lib/lutaml/model/schema/base_schema.rb +1 -3
  278. data/lib/lutaml/model/schema/decorators/attribute.rb +3 -1
  279. data/lib/lutaml/model/schema/decorators/choices.rb +0 -2
  280. data/lib/lutaml/model/schema/decorators/class_definition.rb +4 -5
  281. data/lib/lutaml/model/schema/decorators/definition_collection.rb +7 -7
  282. data/lib/lutaml/model/schema/decorators.rb +15 -0
  283. data/lib/lutaml/model/schema/generator/definition.rb +4 -3
  284. data/lib/lutaml/model/schema/generator/definitions_collection.rb +4 -3
  285. data/lib/lutaml/model/schema/generator/properties_collection.rb +7 -5
  286. data/lib/lutaml/model/schema/generator/property.rb +5 -1
  287. data/lib/lutaml/model/schema/generator.rb +15 -0
  288. data/lib/lutaml/model/schema/helpers.rb +11 -0
  289. data/lib/lutaml/model/schema/json_schema.rb +9 -53
  290. data/lib/lutaml/model/schema/renderer.rb +19 -17
  291. data/lib/lutaml/model/schema/schema_builder/nokogiri.rb +41 -0
  292. data/lib/lutaml/model/schema/schema_builder/oga.rb +92 -0
  293. data/lib/lutaml/model/schema/shared_methods.rb +2 -2
  294. data/lib/lutaml/model/schema/xml_compiler/attribute.rb +33 -12
  295. data/lib/lutaml/model/schema/xml_compiler/attribute_group.rb +3 -1
  296. data/lib/lutaml/model/schema/xml_compiler/choice.rb +4 -2
  297. data/lib/lutaml/model/schema/xml_compiler/complex_type.rb +73 -36
  298. data/lib/lutaml/model/schema/xml_compiler/element.rb +18 -1
  299. data/lib/lutaml/model/schema/xml_compiler/group.rb +20 -4
  300. data/lib/lutaml/model/schema/xml_compiler/registry_generator.rb +127 -0
  301. data/lib/lutaml/model/schema/xml_compiler/restriction.rb +5 -2
  302. data/lib/lutaml/model/schema/xml_compiler/sequence.rb +6 -2
  303. data/lib/lutaml/model/schema/xml_compiler/simple_content.rb +7 -3
  304. data/lib/lutaml/model/schema/xml_compiler/simple_type.rb +127 -51
  305. data/lib/lutaml/model/schema/xml_compiler/xml_namespace_class.rb +110 -0
  306. data/lib/lutaml/model/schema/xml_compiler.rb +256 -82
  307. data/lib/lutaml/model/schema/yaml_schema.rb +10 -50
  308. data/lib/lutaml/model/schema.rb +49 -14
  309. data/lib/lutaml/model/schema_location.rb +12 -60
  310. data/lib/lutaml/model/sequence.rb +102 -30
  311. data/lib/lutaml/model/serializable.rb +1 -3
  312. data/lib/lutaml/model/serialization_adapter.rb +2 -0
  313. data/lib/lutaml/model/serialize/attribute_definition.rb +229 -0
  314. data/lib/lutaml/model/serialize/builder.rb +169 -0
  315. data/lib/lutaml/model/serialize/enum_handling.rb +124 -0
  316. data/lib/lutaml/model/serialize/format_conversion.rb +298 -0
  317. data/lib/lutaml/model/serialize/initialization.rb +308 -0
  318. data/lib/lutaml/model/serialize/model_import.rb +357 -0
  319. data/lib/lutaml/model/serialize/transformation_builder.rb +127 -0
  320. data/lib/lutaml/model/serialize/value_mapping.rb +200 -0
  321. data/lib/lutaml/model/serialize.rb +175 -580
  322. data/lib/lutaml/model/services/base.rb +2 -2
  323. data/lib/lutaml/model/services/default_value_resolver.rb +60 -0
  324. data/lib/lutaml/model/services/logger.rb +10 -7
  325. data/lib/lutaml/model/services/rule_value_extractor.rb +22 -36
  326. data/lib/lutaml/model/services/transformer.rb +50 -9
  327. data/lib/lutaml/model/services/type/validator/string.rb +3 -2
  328. data/lib/lutaml/model/services/type/validator/symbol.rb +30 -0
  329. data/lib/lutaml/model/services/type/validator.rb +5 -2
  330. data/lib/lutaml/model/services/type.rb +9 -0
  331. data/lib/lutaml/model/services/validator.rb +1 -3
  332. data/lib/lutaml/model/services.rb +12 -5
  333. data/lib/lutaml/model/store.rb +59 -0
  334. data/lib/lutaml/model/toml.rb +24 -18
  335. data/lib/lutaml/model/transform/xml_transform.rb +4 -227
  336. data/lib/lutaml/model/transform.rb +49 -17
  337. data/lib/lutaml/model/transformation.rb +84 -0
  338. data/lib/lutaml/model/transformation_builder.rb +55 -0
  339. data/lib/lutaml/model/transformation_registry.rb +314 -0
  340. data/lib/lutaml/model/type/base64_binary.rb +58 -0
  341. data/lib/lutaml/model/type/boolean.rb +9 -16
  342. data/lib/lutaml/model/type/date.rb +49 -9
  343. data/lib/lutaml/model/type/date_time.rb +30 -18
  344. data/lib/lutaml/model/type/decimal.rb +28 -9
  345. data/lib/lutaml/model/type/duration.rb +82 -0
  346. data/lib/lutaml/model/type/float.rb +12 -13
  347. data/lib/lutaml/model/type/hash.rb +10 -17
  348. data/lib/lutaml/model/type/hex_binary.rb +56 -0
  349. data/lib/lutaml/model/type/integer.rb +19 -1
  350. data/lib/lutaml/model/type/qname.rb +85 -0
  351. data/lib/lutaml/model/type/reference.rb +76 -0
  352. data/lib/lutaml/model/type/string.rb +18 -35
  353. data/lib/lutaml/model/type/symbol.rb +67 -0
  354. data/lib/lutaml/model/type/time.rb +19 -22
  355. data/lib/lutaml/model/type/time_without_date.rb +18 -18
  356. data/lib/lutaml/model/type/uninitialized_class_guard.rb +36 -0
  357. data/lib/lutaml/model/type/uri.rb +51 -0
  358. data/lib/lutaml/model/type/value.rb +52 -5
  359. data/lib/lutaml/model/type.rb +98 -13
  360. data/lib/lutaml/model/type_context.rb +279 -0
  361. data/lib/lutaml/model/type_registry.rb +165 -0
  362. data/lib/lutaml/model/type_resolver.rb +185 -0
  363. data/lib/lutaml/model/type_substitution.rb +117 -0
  364. data/lib/lutaml/model/uninitialized_class.rb +1 -1
  365. data/lib/lutaml/model/utils.rb +110 -9
  366. data/lib/lutaml/model/validation.rb +50 -7
  367. data/lib/lutaml/model/value_transformer.rb +25 -0
  368. data/lib/lutaml/model/version.rb +1 -1
  369. data/lib/lutaml/model/yaml.rb +7 -13
  370. data/lib/lutaml/model/yamls.rb +7 -13
  371. data/lib/lutaml/model.rb +227 -25
  372. data/lib/lutaml/{model/toml → toml/adapter}/document.rb +3 -4
  373. data/lib/lutaml/{model/toml → toml/adapter}/mapping.rb +7 -6
  374. data/lib/lutaml/toml/adapter/mapping_rule.rb +9 -0
  375. data/lib/lutaml/toml/adapter/toml_rb_adapter.rb +38 -0
  376. data/lib/lutaml/toml/adapter/tomlib_adapter.rb +54 -0
  377. data/lib/lutaml/toml/adapter/transform.rb +9 -0
  378. data/lib/lutaml/toml/adapter.rb +19 -0
  379. data/lib/lutaml/toml/type/serializers.rb +71 -0
  380. data/lib/lutaml/toml.rb +41 -0
  381. data/lib/lutaml/xml/adapter/adapter_helpers.rb +149 -0
  382. data/lib/lutaml/xml/adapter/base_adapter.rb +672 -0
  383. data/lib/lutaml/xml/adapter/namespace_data.rb +73 -0
  384. data/lib/lutaml/xml/adapter/nokogiri_adapter.rb +1115 -0
  385. data/lib/lutaml/xml/adapter/oga_adapter.rb +849 -0
  386. data/lib/lutaml/xml/adapter/ox_adapter.rb +891 -0
  387. data/lib/lutaml/xml/adapter/rexml_adapter.rb +869 -0
  388. data/lib/lutaml/xml/adapter/xml_serialization.rb +145 -0
  389. data/lib/lutaml/xml/adapter.rb +20 -0
  390. data/lib/lutaml/xml/adapter_element.rb +185 -0
  391. data/lib/lutaml/xml/adapter_loader.rb +53 -0
  392. data/lib/lutaml/xml/attribute_namespace_resolver.rb +139 -0
  393. data/lib/lutaml/xml/blank_namespace.rb +51 -0
  394. data/lib/lutaml/xml/blank_namespace_handler.rb +50 -0
  395. data/lib/lutaml/xml/builder/base.rb +215 -0
  396. data/lib/lutaml/xml/builder/nokogiri.rb +12 -0
  397. data/lib/lutaml/xml/builder/oga.rb +15 -0
  398. data/lib/lutaml/xml/builder/ox.rb +15 -0
  399. data/lib/lutaml/xml/builder/rexml.rb +15 -0
  400. data/lib/lutaml/xml/builder.rb +16 -0
  401. data/lib/lutaml/xml/configurable.rb +214 -0
  402. data/lib/lutaml/xml/data_model.rb +257 -0
  403. data/lib/lutaml/xml/decisions/decision.rb +103 -0
  404. data/lib/lutaml/xml/decisions/decision_context.rb +225 -0
  405. data/lib/lutaml/xml/decisions/decision_engine.rb +67 -0
  406. data/lib/lutaml/xml/decisions/decision_rule.rb +54 -0
  407. data/lib/lutaml/xml/decisions/element_prefix_resolver.rb +85 -0
  408. data/lib/lutaml/xml/decisions/rules/attribute_usage_rule.rb +37 -0
  409. data/lib/lutaml/xml/decisions/rules/default_preference_rule.rb +62 -0
  410. data/lib/lutaml/xml/decisions/rules/element_form_default_rule.rb +66 -0
  411. data/lib/lutaml/xml/decisions/rules/element_form_default_unqualified_rule.rb +73 -0
  412. data/lib/lutaml/xml/decisions/rules/element_form_option_rule.rb +83 -0
  413. data/lib/lutaml/xml/decisions/rules/explicit_option_rule.rb +57 -0
  414. data/lib/lutaml/xml/decisions/rules/format_preservation_rule.rb +74 -0
  415. data/lib/lutaml/xml/decisions/rules/hoisted_on_parent_rule.rb +60 -0
  416. data/lib/lutaml/xml/decisions/rules/inherit_from_parent_rule.rb +52 -0
  417. data/lib/lutaml/xml/decisions/rules/inherit_parent_prefix_rule.rb +69 -0
  418. data/lib/lutaml/xml/decisions/rules/namespace_scope_rule.rb +54 -0
  419. data/lib/lutaml/xml/decisions/rules/reuse_parent_prefix_rule.rb +78 -0
  420. data/lib/lutaml/xml/decisions/rules/used_prefix_rule.rb +70 -0
  421. data/lib/lutaml/xml/decisions/rules.rb +39 -0
  422. data/lib/lutaml/xml/decisions.rb +15 -0
  423. data/lib/lutaml/xml/declaration_handler.rb +217 -0
  424. data/lib/lutaml/xml/declaration_plan/attribute_node.rb +81 -0
  425. data/lib/lutaml/xml/declaration_plan/element_node.rb +101 -0
  426. data/lib/lutaml/xml/declaration_plan.rb +480 -0
  427. data/lib/lutaml/xml/declaration_plan_query.rb +105 -0
  428. data/lib/lutaml/xml/declaration_planner.rb +1849 -0
  429. data/lib/lutaml/xml/doctype_extractor.rb +51 -0
  430. data/lib/lutaml/xml/document.rb +380 -0
  431. data/lib/lutaml/xml/element.rb +93 -0
  432. data/lib/lutaml/xml/element_prefix_resolver.rb +50 -0
  433. data/lib/lutaml/xml/encoding_normalizer.rb +54 -0
  434. data/lib/lutaml/xml/error/invalid_namespace_error.rb +46 -0
  435. data/lib/lutaml/xml/error/invalid_xsd_type_error.rb +43 -0
  436. data/lib/lutaml/xml/error/namespace_mismatch_error.rb +53 -0
  437. data/lib/lutaml/xml/error/xml_configuration_error.rb +17 -0
  438. data/lib/lutaml/xml/error/xml_error.rb +21 -0
  439. data/lib/lutaml/xml/format_chooser.rb +214 -0
  440. data/lib/lutaml/xml/hoisting_algorithm.rb +234 -0
  441. data/lib/lutaml/xml/listener.rb +33 -0
  442. data/lib/lutaml/xml/mapping.rb +1470 -0
  443. data/lib/lutaml/xml/mapping_rule.rb +565 -0
  444. data/lib/lutaml/xml/model_transform.rb +944 -0
  445. data/lib/lutaml/xml/namespace.rb +435 -0
  446. data/lib/lutaml/xml/namespace_class_registry.rb +144 -0
  447. data/lib/lutaml/xml/namespace_collector.rb +611 -0
  448. data/lib/lutaml/xml/namespace_declaration.rb +202 -0
  449. data/lib/lutaml/xml/namespace_declaration_builder.rb +67 -0
  450. data/lib/lutaml/xml/namespace_declaration_data.rb +182 -0
  451. data/lib/lutaml/xml/namespace_inheritance_resolver.rb +142 -0
  452. data/lib/lutaml/xml/namespace_inheritance_strategy.rb +26 -0
  453. data/lib/lutaml/xml/namespace_needs.rb +213 -0
  454. data/lib/lutaml/xml/namespace_resolution_strategy.rb +230 -0
  455. data/lib/lutaml/xml/namespace_resolver.rb +219 -0
  456. data/lib/lutaml/xml/namespace_scope_config.rb +109 -0
  457. data/lib/lutaml/xml/namespace_type_resolver.rb +135 -0
  458. data/lib/lutaml/xml/namespace_usage.rb +121 -0
  459. data/lib/lutaml/xml/nokogiri/element.rb +34 -0
  460. data/lib/lutaml/xml/nokogiri.rb +10 -0
  461. data/lib/lutaml/xml/oga/element.rb +15 -0
  462. data/lib/lutaml/xml/oga.rb +10 -0
  463. data/lib/lutaml/xml/ox/element.rb +15 -0
  464. data/lib/lutaml/xml/ox.rb +10 -0
  465. data/lib/lutaml/xml/parsed_namespace_declaration.rb +129 -0
  466. data/lib/lutaml/xml/parsed_namespace_set.rb +149 -0
  467. data/lib/lutaml/xml/polymorphic_value_handler.rb +41 -0
  468. data/lib/lutaml/xml/qualified_inheritance_strategy.rb +27 -0
  469. data/lib/lutaml/xml/rexml/element.rb +15 -0
  470. data/lib/lutaml/xml/rexml.rb +10 -0
  471. data/lib/lutaml/xml/schema/builder/nokogiri.rb +41 -0
  472. data/lib/lutaml/xml/schema/builder/oga.rb +92 -0
  473. data/lib/lutaml/xml/schema/builder.rb +59 -0
  474. data/lib/lutaml/xml/schema/builtin_types.rb +112 -0
  475. data/lib/lutaml/{model → xml}/schema/relaxng_schema.rb +9 -4
  476. data/lib/lutaml/xml/schema/xsd/all.rb +31 -0
  477. data/lib/lutaml/xml/schema/xsd/annotation.rb +31 -0
  478. data/lib/lutaml/xml/schema/xsd/any.rb +33 -0
  479. data/lib/lutaml/xml/schema/xsd/any_attribute.rb +29 -0
  480. data/lib/lutaml/xml/schema/xsd/appinfo.rb +25 -0
  481. data/lib/lutaml/xml/schema/xsd/attribute.rb +78 -0
  482. data/lib/lutaml/xml/schema/xsd/attribute_group.rb +89 -0
  483. data/lib/lutaml/xml/schema/xsd/base.rb +267 -0
  484. data/lib/lutaml/xml/schema/xsd/choice.rb +68 -0
  485. data/lib/lutaml/xml/schema/xsd/complex_content.rb +39 -0
  486. data/lib/lutaml/xml/schema/xsd/complex_type.rb +157 -0
  487. data/lib/lutaml/xml/schema/xsd/documentation.rb +26 -0
  488. data/lib/lutaml/xml/schema/xsd/element.rb +117 -0
  489. data/lib/lutaml/xml/schema/xsd/enumeration.rb +25 -0
  490. data/lib/lutaml/xml/schema/xsd/errors/enhanced_error.rb +142 -0
  491. data/lib/lutaml/xml/schema/xsd/errors/error_context.rb +67 -0
  492. data/lib/lutaml/xml/schema/xsd/errors/message_builder.rb +103 -0
  493. data/lib/lutaml/xml/schema/xsd/errors/suggestion.rb +67 -0
  494. data/lib/lutaml/xml/schema/xsd/errors/troubleshooters/namespace_troubleshooter.rb +96 -0
  495. data/lib/lutaml/xml/schema/xsd/errors/troubleshooters/troubleshooting_handler.rb +70 -0
  496. data/lib/lutaml/xml/schema/xsd/errors.rb +148 -0
  497. data/lib/lutaml/xml/schema/xsd/extension_complex_content.rb +63 -0
  498. data/lib/lutaml/xml/schema/xsd/extension_simple_content.rb +48 -0
  499. data/lib/lutaml/xml/schema/xsd/field.rb +25 -0
  500. data/lib/lutaml/xml/schema/xsd/file_validation_result.rb +55 -0
  501. data/lib/lutaml/xml/schema/xsd/fraction_digits.rb +29 -0
  502. data/lib/lutaml/xml/schema/xsd/glob.rb +105 -0
  503. data/lib/lutaml/xml/schema/xsd/group.rb +79 -0
  504. data/lib/lutaml/xml/schema/xsd/import.rb +33 -0
  505. data/lib/lutaml/xml/schema/xsd/include.rb +31 -0
  506. data/lib/lutaml/xml/schema/xsd/key.rb +32 -0
  507. data/lib/lutaml/xml/schema/xsd/keyref.rb +33 -0
  508. data/lib/lutaml/xml/schema/xsd/length.rb +27 -0
  509. data/lib/lutaml/xml/schema/xsd/list.rb +28 -0
  510. data/lib/lutaml/xml/schema/xsd/max_exclusive.rb +25 -0
  511. data/lib/lutaml/xml/schema/xsd/max_inclusive.rb +23 -0
  512. data/lib/lutaml/xml/schema/xsd/max_length.rb +25 -0
  513. data/lib/lutaml/xml/schema/xsd/min_exclusive.rb +25 -0
  514. data/lib/lutaml/xml/schema/xsd/min_inclusive.rb +23 -0
  515. data/lib/lutaml/xml/schema/xsd/min_length.rb +25 -0
  516. data/lib/lutaml/xml/schema/xsd/namespace_mapping.rb +37 -0
  517. data/lib/lutaml/xml/schema/xsd/namespace_uri_remapping.rb +79 -0
  518. data/lib/lutaml/xml/schema/xsd/notation.rb +31 -0
  519. data/lib/lutaml/xml/schema/xsd/pattern.rb +25 -0
  520. data/lib/lutaml/xml/schema/xsd/redefine.rb +35 -0
  521. data/lib/lutaml/xml/schema/xsd/restriction_complex_content.rb +56 -0
  522. data/lib/lutaml/xml/schema/xsd/restriction_simple_content.rb +84 -0
  523. data/lib/lutaml/xml/schema/xsd/restriction_simple_type.rb +64 -0
  524. data/lib/lutaml/xml/schema/xsd/schema.rb +373 -0
  525. data/lib/lutaml/xml/schema/xsd/schema_file_validation_results.rb +55 -0
  526. data/lib/lutaml/xml/schema/xsd/schema_location_mapping.rb +74 -0
  527. data/lib/lutaml/xml/schema/xsd/schema_name_resolver.rb +32 -0
  528. data/lib/lutaml/xml/schema/xsd/schema_path.rb +196 -0
  529. data/lib/lutaml/xml/schema/xsd/schema_validator.rb +256 -0
  530. data/lib/lutaml/xml/schema/xsd/selector.rb +27 -0
  531. data/lib/lutaml/xml/schema/xsd/sequence.rb +68 -0
  532. data/lib/lutaml/xml/schema/xsd/serialized_schema.rb +185 -0
  533. data/lib/lutaml/xml/schema/xsd/simple_content.rb +61 -0
  534. data/lib/lutaml/xml/schema/xsd/simple_type.rb +37 -0
  535. data/lib/lutaml/xml/schema/xsd/total_digits.rb +29 -0
  536. data/lib/lutaml/xml/schema/xsd/type_index_entry.rb +40 -0
  537. data/lib/lutaml/xml/schema/xsd/type_resolution_result.rb +112 -0
  538. data/lib/lutaml/xml/schema/xsd/union.rb +30 -0
  539. data/lib/lutaml/xml/schema/xsd/unique.rb +31 -0
  540. data/lib/lutaml/xml/schema/xsd/validation_error.rb +48 -0
  541. data/lib/lutaml/xml/schema/xsd/validation_result.rb +86 -0
  542. data/lib/lutaml/xml/schema/xsd/version.rb +11 -0
  543. data/lib/lutaml/xml/schema/xsd/white_space.rb +27 -0
  544. data/lib/lutaml/xml/schema/xsd.rb +165 -0
  545. data/lib/lutaml/xml/schema/xsd_namespace.rb +29 -0
  546. data/lib/lutaml/xml/schema/xsd_schema.rb +536 -0
  547. data/lib/lutaml/xml/schema.rb +13 -0
  548. data/lib/lutaml/xml/schema_location.rb +155 -0
  549. data/lib/lutaml/xml/serialization/collection_ext.rb +61 -0
  550. data/lib/lutaml/xml/serialization/format_conversion.rb +402 -0
  551. data/lib/lutaml/xml/serialization/instance_methods.rb +297 -0
  552. data/lib/lutaml/xml/serialization/model_import_ext.rb +40 -0
  553. data/lib/lutaml/xml/serialization.rb +15 -0
  554. data/lib/lutaml/xml/shared_dsl.rb +119 -0
  555. data/lib/lutaml/xml/transform.rb +6 -0
  556. data/lib/lutaml/xml/transformation/custom_method_wrapper.rb +262 -0
  557. data/lib/lutaml/xml/transformation/element_builder.rb +586 -0
  558. data/lib/lutaml/xml/transformation/ordered_applier.rb +329 -0
  559. data/lib/lutaml/xml/transformation/rule_applier.rb +379 -0
  560. data/lib/lutaml/xml/transformation/rule_compiler.rb +543 -0
  561. data/lib/lutaml/xml/transformation/skip_logic.rb +70 -0
  562. data/lib/lutaml/xml/transformation/value_serializer.rb +139 -0
  563. data/lib/lutaml/xml/transformation.rb +340 -0
  564. data/lib/lutaml/xml/transformation_builder.rb +28 -0
  565. data/lib/lutaml/xml/transformation_support.rb +14 -0
  566. data/lib/lutaml/xml/type/configurable.rb +157 -0
  567. data/lib/lutaml/xml/type/serializers.rb +98 -0
  568. data/lib/lutaml/xml/type/value_xml_mapping.rb +94 -0
  569. data/lib/lutaml/xml/type_namespace/collector.rb +101 -0
  570. data/lib/lutaml/xml/type_namespace/declaration.rb +61 -0
  571. data/lib/lutaml/xml/type_namespace/planner.rb +121 -0
  572. data/lib/lutaml/xml/type_namespace/reference.rb +71 -0
  573. data/lib/lutaml/xml/type_namespace/resolver.rb +43 -0
  574. data/lib/lutaml/xml/type_namespace.rb +13 -0
  575. data/lib/lutaml/xml/type_namespace_resolver.rb +76 -0
  576. data/lib/lutaml/xml/unqualified_inheritance_strategy.rb +34 -0
  577. data/lib/lutaml/xml/w3c/registration.rb +66 -0
  578. data/lib/lutaml/xml/w3c.rb +398 -0
  579. data/lib/lutaml/xml/xml_attribute.rb +38 -0
  580. data/lib/lutaml/xml/xml_element.rb +447 -0
  581. data/lib/lutaml/xml/xml_namespace.rb +72 -0
  582. data/lib/lutaml/xml.rb +295 -0
  583. data/lib/lutaml/{model/yaml → yaml/adapter}/document.rb +3 -3
  584. data/lib/lutaml/yaml/adapter/mapping.rb +19 -0
  585. data/lib/lutaml/yaml/adapter/mapping_rule.rb +9 -0
  586. data/lib/lutaml/yaml/adapter/standard_adapter.rb +39 -0
  587. data/lib/lutaml/yaml/adapter/transform.rb +9 -0
  588. data/lib/lutaml/yaml/adapter.rb +13 -0
  589. data/lib/lutaml/yaml/schema/yaml_schema.rb +65 -0
  590. data/lib/lutaml/yaml/schema.rb +9 -0
  591. data/lib/lutaml/yaml/type/serializers.rb +60 -0
  592. data/lib/lutaml/yaml.rb +26 -0
  593. data/lib/lutaml/{model/yamls → yamls/adapter}/document.rb +2 -2
  594. data/lib/lutaml/yamls/adapter/mapping.rb +19 -0
  595. data/lib/lutaml/yamls/adapter/mapping_rule.rb +9 -0
  596. data/lib/lutaml/{model/yamls → yamls/adapter}/standard_adapter.rb +6 -5
  597. data/lib/lutaml/yamls/adapter/transform.rb +26 -0
  598. data/lib/lutaml/yamls/adapter.rb +13 -0
  599. data/lib/lutaml/yamls.rb +21 -0
  600. data/lib/tasks/benchmark_runner.rb +161 -0
  601. data/lib/tasks/memory_profile.rb +176 -0
  602. data/lib/tasks/performance.rake +75 -0
  603. data/lib/tasks/performance_benchmark.rb +499 -0
  604. data/lib/tasks/performance_comparator.rb +114 -0
  605. data/lib/tasks/performance_helpers.rb +149 -0
  606. data/lib/tasks/xml_compiler_benchmark.rb +226 -0
  607. data/lib/tasks/xml_optimization_benchmark.rb +178 -0
  608. data/lutaml-model.gemspec +11 -1
  609. data/reference-docs/XML Entity Definitions for Characters (3rd Edition).html +595 -0
  610. data/scripts-xmi-profile/profile_xmi.rb +192 -0
  611. data/scripts-xmi-profile/profile_xmi_simple.rb +210 -0
  612. data/spec/address_person_spec.rb +436 -0
  613. data/spec/address_spec.rb +20 -18
  614. data/spec/ceramic_spec.rb +25 -7
  615. data/spec/fixtures/address.rb +2 -2
  616. data/spec/fixtures/ceramic.rb +6 -2
  617. data/spec/fixtures/person.rb +14 -13
  618. data/spec/fixtures/sample_model.rb +3 -3
  619. data/spec/fixtures/vase.rb +3 -3
  620. data/spec/fixtures/xml/address_example_260.xsd +8 -4
  621. data/spec/fixtures/xml/examples/nested_categories.xml +45 -51
  622. data/spec/fixtures/xml/examples/valid_catalog.xml +27 -41
  623. data/spec/fixtures/xml/math_document_schema.xsd +7 -5
  624. data/spec/fixtures/xml/product_catalog.xsd +19 -138
  625. data/spec/fixtures/xml/schema/xsd/build_test_package.rb +19 -0
  626. data/spec/fixtures/xml/schema/xsd/citygml/2.0/cityGMLBase.xsd +339 -0
  627. data/spec/fixtures/xml/schema/xsd/citygml/appearance/2.0/appearance.xsd +332 -0
  628. data/spec/fixtures/xml/schema/xsd/citygml/bridge/2.0/bridge.xsd +578 -0
  629. data/spec/fixtures/xml/schema/xsd/citygml/building/2.0/building.xsd +535 -0
  630. data/spec/fixtures/xml/schema/xsd/citygml/cityfurniture/2.0/cityFurniture.xsd +57 -0
  631. data/spec/fixtures/xml/schema/xsd/citygml/cityobjectgroup/2.0/cityObjectGroup.xsd +84 -0
  632. data/spec/fixtures/xml/schema/xsd/citygml/examples/2.0/ade/noise-ade/CityGML-NoiseADE.xsd +174 -0
  633. data/spec/fixtures/xml/schema/xsd/citygml/examples/2.0/ade/robotics-ade/stdOp.xsd +46 -0
  634. data/spec/fixtures/xml/schema/xsd/citygml/examples/2.0/ade/robotics-ade/unr.xsd +46 -0
  635. data/spec/fixtures/xml/schema/xsd/citygml/generics/2.0/generics.xsd +184 -0
  636. data/spec/fixtures/xml/schema/xsd/citygml/landuse/2.0/landUse.xsd +50 -0
  637. data/spec/fixtures/xml/schema/xsd/citygml/profiles/base/2.0/CityGML.xsd +30 -0
  638. data/spec/fixtures/xml/schema/xsd/citygml/relief/2.0/relief.xsd +186 -0
  639. data/spec/fixtures/xml/schema/xsd/citygml/texturedsurface/2.0/texturedSurface.xsd +157 -0
  640. data/spec/fixtures/xml/schema/xsd/citygml/transportation/2.0/transportation.xsd +224 -0
  641. data/spec/fixtures/xml/schema/xsd/citygml/tunnel/2.0/tunnel.xsd +530 -0
  642. data/spec/fixtures/xml/schema/xsd/citygml/vegetation/2.0/vegetation.xsd +108 -0
  643. data/spec/fixtures/xml/schema/xsd/citygml/waterbody/2.0/waterBody.xsd +171 -0
  644. data/spec/fixtures/xml/schema/xsd/citygml/xAL/xAL.xsd +1680 -0
  645. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/basicTypes.xsd +262 -0
  646. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/coordinateOperations.xsd +519 -0
  647. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/coordinateReferenceSystems.xsd +367 -0
  648. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/coordinateSystems.xsd +291 -0
  649. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/coverage.xsd +287 -0
  650. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/datums.xsd +281 -0
  651. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/defaultStyle.xsd +447 -0
  652. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/deprecatedTypes.xsd +1128 -0
  653. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/dictionary.xsd +84 -0
  654. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/direction.xsd +78 -0
  655. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/dynamicFeature.xsd +103 -0
  656. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/feature.xsd +88 -0
  657. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/geometryAggregates.xsd +191 -0
  658. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/geometryBasic0d1d.xsd +271 -0
  659. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/geometryBasic2d.xsd +118 -0
  660. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/geometryComplexes.xsd +89 -0
  661. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/geometryPrimitives.xsd +841 -0
  662. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/gml.xsd +15 -0
  663. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/gmlBase.xsd +179 -0
  664. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/grids.xsd +58 -0
  665. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/measures.xsd +63 -0
  666. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/observation.xsd +90 -0
  667. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/referenceSystems.xsd +64 -0
  668. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/temporal.xsd +263 -0
  669. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/temporalReferenceSystems.xsd +183 -0
  670. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/temporalTopology.xsd +113 -0
  671. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/topology.xsd +380 -0
  672. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/units.xsd +156 -0
  673. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/valueObjects.xsd +199 -0
  674. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gco/basicTypes.xsd +429 -0
  675. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gco/gco.xsd +12 -0
  676. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gco/gcoBase.xsd +61 -0
  677. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/applicationSchema.xsd +42 -0
  678. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/citation.xsd +275 -0
  679. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/constraints.xsd +106 -0
  680. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/content.xsd +188 -0
  681. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/dataQuality.xsd +554 -0
  682. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/distribution.xsd +202 -0
  683. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/extent.xsd +205 -0
  684. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/freeText.xsd +122 -0
  685. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/gmd.xsd +12 -0
  686. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/identification.xsd +348 -0
  687. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/maintenance.xsd +86 -0
  688. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/metadataApplication.xsd +175 -0
  689. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/metadataEntity.xsd +70 -0
  690. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/metadataExtension.xsd +99 -0
  691. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/portrayalCatalogue.xsd +36 -0
  692. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/referenceSystem.xsd +100 -0
  693. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/spatialRepresentation.xsd +237 -0
  694. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/catalogues.xsd +112 -0
  695. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/codelistItem.xsd +168 -0
  696. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/crsItem.xsd +1030 -0
  697. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/extendedTypes.xsd +75 -0
  698. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/gmx.xsd +2 -0
  699. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/gmxUsage.xsd +127 -0
  700. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/uomItem.xsd +162 -0
  701. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gsr/gsr.xsd +12 -0
  702. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gsr/spatialReferencing.xsd +24 -0
  703. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gss/geometry.xsd +35 -0
  704. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gss/gss.xsd +12 -0
  705. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gts/gts.xsd +12 -0
  706. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gts/temporalObjects.xsd +34 -0
  707. data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/xlink/1.0.0/xlinks.xsd +122 -0
  708. data/spec/fixtures/xml/schema/xsd/i-ur/urbanFunction.xsd +2772 -0
  709. data/spec/fixtures/xml/schema/xsd/i-ur/urbanObject.xsd +3344 -0
  710. data/spec/fixtures/xml/schema/xsd/import-without-location.xsd +9 -0
  711. data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gco/1.2/baseTypes.xsd +775 -0
  712. data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gco/1.2/gco.xsd +17 -0
  713. data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gco/1.2.0/baseTypes.xsd +775 -0
  714. data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gco/1.2.0/gco.xsd +17 -0
  715. data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gcx/1.2/extendedTypes.xsd +151 -0
  716. data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gcx/1.2/gcx.xsd +16 -0
  717. data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gcx/1.2.0/extendedTypes.xsd +151 -0
  718. data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gcx/1.2.0/gcx.xsd +16 -0
  719. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/coordinateGeometry.xsd +1078 -0
  720. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/geometricAggregates.xsd +141 -0
  721. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/geometricComplex.xsd +177 -0
  722. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/geometricPrimative.xsd +526 -0
  723. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/geometry.xsd +9 -0
  724. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/geometryRoot.xsd +59 -0
  725. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/gss.xsd +26 -0
  726. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/topoComplex.xsd +33 -0
  727. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/topoPrimative.xsd +432 -0
  728. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/topoRoot.xsd +9 -0
  729. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/topology.xsd +15 -0
  730. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/coordinates.xsd +15 -0
  731. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/curves.xsd +22 -0
  732. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/geometry.xsd +41 -0
  733. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/gss.xsd +21 -0
  734. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/simplicialGeometry.xsd +63 -0
  735. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/solids.xsd +21 -0
  736. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/surfaces.xsd +15 -0
  737. data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/topology.xsd +21 -0
  738. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.1.0/abstract.xsd +47 -0
  739. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.1.0/fcc.xsd +12 -0
  740. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.2/abstract.xsd +45 -0
  741. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.2/fcc.xsd +11 -0
  742. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.2.0/abstract.xsd +45 -0
  743. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.2.0/fcc.xsd +11 -0
  744. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/1.0/gfc.xsd +497 -0
  745. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.1.0/featureCatalogue.xsd +673 -0
  746. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.1.0/gfc.xsd +19 -0
  747. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.2/featureCatalogue.xsd +798 -0
  748. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.2/gfc.xsd +19 -0
  749. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.2.0/featureCatalogue.xsd +798 -0
  750. data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.2.0/gfc.xsd +19 -0
  751. data/spec/fixtures/xml/schema/xsd/isotc211/19110/fcc/1.0/abstract.xsd +49 -0
  752. data/spec/fixtures/xml/schema/xsd/isotc211/19110/fcc/1.0/fcc.xsd +9 -0
  753. data/spec/fixtures/xml/schema/xsd/isotc211/19110/gfc/1.1/featureCatalogue.xsd +671 -0
  754. data/spec/fixtures/xml/schema/xsd/isotc211/19110/gfc/1.1/gfc.xsd +13 -0
  755. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1/rbc.xsd +13 -0
  756. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1/rbcStubs.xsd +195 -0
  757. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.0/rbc.xsd +13 -0
  758. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.0/rbcStubs.xsd +195 -0
  759. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/AbstractCommonClasses.xsd +282 -0
  760. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/commonClasses.xsd +127 -0
  761. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/coordOps.xsd +676 -0
  762. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/coordRefSys.xsd +498 -0
  763. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/coordSys.xsd +844 -0
  764. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/coordinates.xsd +101 -0
  765. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/datum.xsd +474 -0
  766. data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/rbc.xsd +18 -0
  767. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/cit/1.3/cit.xsd +12 -0
  768. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/cit/1.3/citation.xsd +445 -0
  769. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/cit/1.3.0/cit.xsd +12 -0
  770. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/cit/1.3.0/citation.xsd +445 -0
  771. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3/extent.xsd +243 -0
  772. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3/gex.xsd +16 -0
  773. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3.0/extent.xsd +243 -0
  774. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3.0/gex.xsd +16 -0
  775. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3.1/extent.xsd +244 -0
  776. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3.1/gex.xsd +15 -0
  777. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/lan/1.3/lan.xsd +13 -0
  778. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/lan/1.3/language.xsd +152 -0
  779. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/lan/1.3.0/lan.xsd +13 -0
  780. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/lan/1.3.0/language.xsd +152 -0
  781. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mas/1.3/applicationSchema.xsd +58 -0
  782. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mas/1.3/mas.xsd +16 -0
  783. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mas/1.3.0/applicationSchema.xsd +58 -0
  784. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mas/1.3.0/mas.xsd +16 -0
  785. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3/AbstractCommonClasses.xsd +378 -0
  786. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3/commonClasses.xsd +205 -0
  787. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3/mcc.xsd +12 -0
  788. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3.0/AbstractCommonClasses.xsd +378 -0
  789. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3.0/commonClasses.xsd +205 -0
  790. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3.0/mcc.xsd +12 -0
  791. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mco/1.3/constraints.xsd +171 -0
  792. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mco/1.3/mco.xsd +14 -0
  793. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mco/1.3.0/constraints.xsd +171 -0
  794. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mco/1.3.0/mco.xsd +14 -0
  795. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3/mda.xsd +13 -0
  796. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3/metadataApplication.xsd +207 -0
  797. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3.0/mda.xsd +13 -0
  798. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3.0/metadataApplication.xsd +207 -0
  799. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3.1/mda.xsd +13 -0
  800. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3.1/metadataApplication.xsd +247 -0
  801. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3/mdb.xsd +11 -0
  802. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3/metadataBase.xsd +117 -0
  803. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3/metadataBaseMDAerror.xsd +116 -0
  804. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3.0/mdb.xsd +11 -0
  805. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3.0/metadataBase.xsd +117 -0
  806. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3.0/metadataBaseMDAerror.xsd +116 -0
  807. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3.1/mdb.xsd +11 -0
  808. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3.1/metadataBase.xsd +144 -0
  809. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mex/1.3/metadataExtension.xsd +138 -0
  810. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mex/1.3/mex.xsd +15 -0
  811. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mex/1.3.0/metadataExtension.xsd +138 -0
  812. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mex/1.3.0/mex.xsd +15 -0
  813. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mmi/1.3/maintenance.xsd +70 -0
  814. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mmi/1.3/mmi.xsd +14 -0
  815. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mmi/1.3.0/maintenance.xsd +70 -0
  816. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mmi/1.3.0/mmi.xsd +14 -0
  817. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mpc/1.3/mpc.xsd +14 -0
  818. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mpc/1.3/portrayalCatalogue.xsd +40 -0
  819. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mpc/1.3.0/mpc.xsd +14 -0
  820. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mpc/1.3.0/portrayalCatalogue.xsd +40 -0
  821. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3/content.xsd +368 -0
  822. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3/mrc.xsd +19 -0
  823. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3.0/content.xsd +368 -0
  824. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3.0/mrc.xsd +19 -0
  825. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3.1/content.xsd +366 -0
  826. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3.1/mrc.xsd +13 -0
  827. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrd/1.3/distribution.xsd +232 -0
  828. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrd/1.3/mrd.xsd +13 -0
  829. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrd/1.3.0/distribution.xsd +232 -0
  830. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrd/1.3.0/mrd.xsd +13 -0
  831. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mri/1.3/identification.xsd +425 -0
  832. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mri/1.3/mri.xsd +16 -0
  833. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mri/1.3.0/identification.xsd +425 -0
  834. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mri/1.3.0/mri.xsd +16 -0
  835. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrl/1.3/lineage.xsd +130 -0
  836. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrl/1.3/mrl.xsd +15 -0
  837. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrl/1.3.0/lineage.xsd +130 -0
  838. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrl/1.3.0/mrl.xsd +15 -0
  839. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3/mrs.xsd +16 -0
  840. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3/referenceSystem.xsd +67 -0
  841. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3.0/mrs.xsd +16 -0
  842. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3.0/referenceSystem.xsd +67 -0
  843. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3.1/mrs.xsd +16 -0
  844. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3.1/referenceSystem.xsd +66 -0
  845. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3/msr.xsd +17 -0
  846. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3/spatialRepresentation.xsd +326 -0
  847. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3.0/msr.xsd +17 -0
  848. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3.0/spatialRepresentation.xsd +326 -0
  849. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3.1/msr.xsd +15 -0
  850. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3.1/spatialRepresentation.xsd +326 -0
  851. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/srv/1.3/serviceInformation.xsd +252 -0
  852. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/srv/1.3/srv.xsd +14 -0
  853. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/srv/1.3.0/serviceInformation.xsd +252 -0
  854. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/srv/1.3.0/srv.xsd +14 -0
  855. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/acquisitionInformation.xsd +415 -0
  856. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/contentInformation.xsd +147 -0
  857. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/dataQualityInformation.xsd +214 -0
  858. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/gmi.xsd +23 -0
  859. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/metadataEntitySet.xsd +43 -0
  860. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/spatialRepresentationInformation.xsd +140 -0
  861. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/acquisitionInformation.xsd +415 -0
  862. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/contentInformation.xsd +147 -0
  863. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/dataQualityInformation.xsd +214 -0
  864. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/gmi.xsd +24 -0
  865. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/metadataEntitySet.xsd +43 -0
  866. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/spatialRepresentationInformation.xsd +142 -0
  867. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2/acquisitionInformationImagery.xsd +796 -0
  868. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2/mac.xsd +11 -0
  869. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2.0/acquisitionInformationImagery.xsd +796 -0
  870. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2.0/mac.xsd +11 -0
  871. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2.1/acquisitionInformationImagery.xsd +799 -0
  872. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2.1/mac.xsd +10 -0
  873. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mrc/2.2/contentInformationImagery.xsd +161 -0
  874. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mrc/2.2.0/contentInformationImagery.xsd +161 -0
  875. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mrc/2.2.1/contentInformationImagery.xsd +159 -0
  876. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mrl/2.2/lineageImagery.xsd +312 -0
  877. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mrl/2.2.0/lineageImagery.xsd +312 -0
  878. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/msr/2.2/spatialRepresentationImagery.xsd +138 -0
  879. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/msr/2.2.0/spatialRepresentationImagery.xsd +138 -0
  880. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/msr/2.2.1/spatialRepresentationImagery.xsd +145 -0
  881. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cat/1.0/cat.xsd +16 -0
  882. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cat/1.0/catalogues.xsd +59 -0
  883. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cat/1.0/codelistItem.xsd +63 -0
  884. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cat/1.0/crsItem.xsd +188 -0
  885. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cat/1.0/uomItem.xsd +45 -0
  886. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cit/1.0/cit.xsd +11 -0
  887. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cit/1.0/citation.xsd +400 -0
  888. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cit/2.0/cit.xsd +11 -0
  889. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cit/2.0/citation.xsd +402 -0
  890. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gco/1.0/baseTypes.xsd +532 -0
  891. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gco/1.0/baseTypes2014.xsd +531 -0
  892. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gco/1.0/gco.xsd +16 -0
  893. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gcx/1.0/extendedTypes.xsd +97 -0
  894. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gcx/1.0/gcx.xsd +11 -0
  895. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gex/1.0/extent.xsd +207 -0
  896. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gex/1.0/gex.xsd +15 -0
  897. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gmw/1.0/gmlWrapperTypes.xsd +147 -0
  898. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gmw/1.0/gmlWrapperTypes2014.xsd +147 -0
  899. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gmw/1.0/gmw.xsd +17 -0
  900. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/lan/1.0/lan.xsd +13 -0
  901. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/lan/1.0/language.xsd +141 -0
  902. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/1.0/acquisitionInformationImagery.xsd +424 -0
  903. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/1.0/mac.xsd +14 -0
  904. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/2.0/acquisitionInformationImagery.xsd +473 -0
  905. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/2.0/event.xsd +106 -0
  906. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/2.0/mac.xsd +15 -0
  907. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/2.0/metadataEntitySet.xsd +46 -0
  908. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mas/1.0/applicationSchema.xsd +53 -0
  909. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mas/1.0/mas.xsd +15 -0
  910. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mcc/1.0/AbstractCommonClasses.xsd +362 -0
  911. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mcc/1.0/commonClasses.xsd +179 -0
  912. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mcc/1.0/mcc.xsd +12 -0
  913. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mco/1.0/constraints.xsd +152 -0
  914. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mco/1.0/mco.xsd +13 -0
  915. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md1/1.0/md1.xsd +19 -0
  916. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md1/1.0/metadataWExtendedType.xsd +10 -0
  917. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md1/2.0/md1.xsd +19 -0
  918. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md1/2.0/metadataWExtendedType.xsd +10 -0
  919. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md2/1.0/md2.xsd +27 -0
  920. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md2/1.0/metadataWithExtensions.xsd +10 -0
  921. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md2/2.0/md2.xsd +27 -0
  922. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md2/2.0/metadataWithExtensions.xsd +10 -0
  923. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mda/1.0/mda.xsd +13 -0
  924. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mda/1.0/metadataApplication.xsd +188 -0
  925. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mda/2.0/mda.xsd +13 -0
  926. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mda/2.0/metadataApplication.xsd +189 -0
  927. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdb/1.0/mdb.xsd +23 -0
  928. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdb/1.0/metadataBase.xsd +97 -0
  929. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdb/2.0/mdb.xsd +23 -0
  930. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdb/2.0/metadataBase.xsd +105 -0
  931. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mds/1.0/mds.xsd +59 -0
  932. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mds/1.0/metadataDataServices.xsd +10 -0
  933. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mds/2.0/mds.xsd +44 -0
  934. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mds/2.0/metadataDataServices.xsd +10 -0
  935. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdt/1.0/mdt.xsd +17 -0
  936. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdt/1.0/metadataTransfer.xsd +121 -0
  937. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdt/2.0/mdt.xsd +17 -0
  938. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdt/2.0/metadataTransfer.xsd +121 -0
  939. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mex/1.0/metadataExtension.xsd +122 -0
  940. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mex/1.0/mex.xsd +13 -0
  941. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mmi/1.0/maintenance.xsd +63 -0
  942. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mmi/1.0/mmi.xsd +13 -0
  943. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mpc/1.0/mpc.xsd +13 -0
  944. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mpc/1.0/portrayalCatalogue.xsd +35 -0
  945. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/1.0/content.xsd +330 -0
  946. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/1.0/contentInformationImagery.xsd +160 -0
  947. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/1.0/mrc.xsd +18 -0
  948. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/2.0/content.xsd +334 -0
  949. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/2.0/contentInformationImagery.xsd +143 -0
  950. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/2.0/mrc.xsd +21 -0
  951. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrd/1.0/distribution.xsd +212 -0
  952. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrd/1.0/mrd.xsd +13 -0
  953. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mri/1.0/identification.xsd +385 -0
  954. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mri/1.0/mri.xsd +15 -0
  955. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/1.0/lineage.xsd +117 -0
  956. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/1.0/lineageImagery.xsd +168 -0
  957. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/1.0/mrl.xsd +14 -0
  958. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/2.0/lineage.xsd +118 -0
  959. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/2.0/lineageImagery.xsd +250 -0
  960. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/2.0/mrl.xsd +14 -0
  961. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrs/1.0/mrs.xsd +13 -0
  962. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrs/1.0/referenceSystem.xsd +47 -0
  963. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/1.0/msr.xsd +16 -0
  964. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/1.0/spatialRepresentation.xsd +288 -0
  965. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/1.0/spatialRepresentationImagery.xsd +113 -0
  966. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/2.0/msr.xsd +16 -0
  967. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/2.0/spatialRepresentation.xsd +296 -0
  968. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/2.0/spatialRepresentationImagery.xsd +114 -0
  969. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/srv/2.0/serviceInformation.xsd +217 -0
  970. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/srv/2.0/srv.xsd +14 -0
  971. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/srv/2.1/serviceInformation.xsd +220 -0
  972. data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/srv/2.1/srv.xsd +14 -0
  973. data/spec/fixtures/xml/schema/xsd/isotc211/19119/-/srv/1.0/serviceMetadata.xsd +204 -0
  974. data/spec/fixtures/xml/schema/xsd/isotc211/19119/-/srv/1.0/serviceModel.xsd +230 -0
  975. data/spec/fixtures/xml/schema/xsd/isotc211/19119/-/srv/1.0/srv.xsd +13 -0
  976. data/spec/fixtures/xml/schema/xsd/isotc211/19119/srv/serviceMetadata.xsd +204 -0
  977. data/spec/fixtures/xml/schema/xsd/isotc211/19119/srv/serviceModel.xsd +238 -0
  978. data/spec/fixtures/xml/schema/xsd/isotc211/19119/srv/srv.xsd +13 -0
  979. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1/cis-0.xsd +17 -0
  980. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1/codeLists.xsd +68 -0
  981. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1/gridPoint.xsd +47 -0
  982. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1.0/cis-0.xsd +17 -0
  983. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1.0/codeLists.xsd +68 -0
  984. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1.0/gridPoint.xsd +47 -0
  985. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/3.1.0/codeLists.xsd +68 -0
  986. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/3.1.0/gridPoint.xsd +47 -0
  987. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.0/coverage.xsd +185 -0
  988. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.0/gmlcovAll.xsd +21 -0
  989. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.0/grids.xsd +115 -0
  990. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1/coverage.xsd +188 -0
  991. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1/gmlcovAll.xsd +25 -0
  992. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1/grids.xsd +119 -0
  993. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1.0/coverage.xsd +188 -0
  994. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1.0/gmlcovAll.xsd +25 -0
  995. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1.0/grids.xsd +119 -0
  996. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/3.1.0/coverage.xsd +188 -0
  997. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/3.1.0/gmlcovAll.xsd +23 -0
  998. data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/3.1.0/grids.xsd +119 -0
  999. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/codeList.xsd +134 -0
  1000. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/groundControlPoints.xsd +239 -0
  1001. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/nonPhysicalSensorModel.xsd +321 -0
  1002. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/physicalSensorModel.xsd +62 -0
  1003. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/sensorModel.xsd +65 -0
  1004. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/sensorParameters.xsd +762 -0
  1005. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/spatialElements.xsd +497 -0
  1006. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/codeList.xsd +129 -0
  1007. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/groundControlPoints.xsd +235 -0
  1008. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/nonPhysicalSensorModel.xsd +321 -0
  1009. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/physicalSensorModel.xsd +62 -0
  1010. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/sensorModel.xsd +65 -0
  1011. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/sensorParameters.xsd +762 -0
  1012. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/spatialElements.xsd +496 -0
  1013. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.0/codeList.xsd +349 -0
  1014. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.0/sensorModel.xsd +53 -0
  1015. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.0/sensorParameters.xsd +681 -0
  1016. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.0/spatialElements.xsd +902 -0
  1017. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.1/codeList.xsd +344 -0
  1018. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.1/sensorModel.xsd +49 -0
  1019. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.1/sensorParameters.xsd +676 -0
  1020. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.1/spatialElements.xsd +897 -0
  1021. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-3/smi/1.1/smi.xsd +42 -0
  1022. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-3/smi/1.1.0/smi.xsd +42 -0
  1023. data/spec/fixtures/xml/schema/xsd/isotc211/19130/-3/smi/1.1.1/smi.xsd +42 -0
  1024. data/spec/fixtures/xml/schema/xsd/isotc211/19131/-/dps/2.0/dps.xsd +1344 -0
  1025. data/spec/fixtures/xml/schema/xsd/isotc211/19131/-/dps/2.0.0/dps.xsd +1344 -0
  1026. data/spec/fixtures/xml/schema/xsd/isotc211/19131/-/dps/2.2/dps.xsd +1522 -0
  1027. data/spec/fixtures/xml/schema/xsd/isotc211/19131/-/dps/2.2.0/dps.xsd +1522 -0
  1028. data/spec/fixtures/xml/schema/xsd/isotc211/19131/-/dps/2.2.1/dps.xsd +1522 -0
  1029. data/spec/fixtures/xml/schema/xsd/isotc211/19131/-1/dps/2.0/dps.xsd +1339 -0
  1030. data/spec/fixtures/xml/schema/xsd/isotc211/19131/-1/dps/2.2.0/dps.xsd +1540 -0
  1031. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.0/core.xsd +349 -0
  1032. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.0/extended.xsd +1074 -0
  1033. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.0/hierarchy.xsd +57 -0
  1034. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.0/pir.xsd +13 -0
  1035. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1/core.xsd +344 -0
  1036. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1/extended.xsd +1076 -0
  1037. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1/hierarchy.xsd +58 -0
  1038. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1/pir.xsd +15 -0
  1039. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1.0/core.xsd +344 -0
  1040. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1.0/extended.xsd +1076 -0
  1041. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1.0/hierarchy.xsd +58 -0
  1042. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1.0/pir.xsd +15 -0
  1043. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/pre/1.0/abstract.xsd +42 -0
  1044. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/pre/1.0/pre.xsd +4 -0
  1045. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/pre/1.2.0/abstract.xsd +44 -0
  1046. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/pre/1.2.0/pre.xsd +11 -0
  1047. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/reg/1.0/reg.xsd +8 -0
  1048. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/reg/1.0/registration.xsd +562 -0
  1049. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/reg/1.2.0/reg.xsd +22 -0
  1050. data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/reg/1.2.0/registration.xsd +590 -0
  1051. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/basicTypes.xsd +275 -0
  1052. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/coordinateOperations.xsd +534 -0
  1053. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/coordinateReferenceSystems.xsd +379 -0
  1054. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/coordinateSystems.xsd +303 -0
  1055. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/coverage.xsd +298 -0
  1056. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/datums.xsd +293 -0
  1057. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/defaultStyle.xsd +462 -0
  1058. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/deprecatedTypes.xsd +1139 -0
  1059. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/dictionary.xsd +95 -0
  1060. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/direction.xsd +90 -0
  1061. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/dynamicFeature.xsd +114 -0
  1062. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/feature.xsd +99 -0
  1063. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/geometryAggregates.xsd +203 -0
  1064. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/geometryBasic0d1d.xsd +283 -0
  1065. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/geometryBasic2d.xsd +130 -0
  1066. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/geometryComplexes.xsd +101 -0
  1067. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/geometryPrimitives.xsd +852 -0
  1068. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/gml.xsd +25 -0
  1069. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/gmlBase.xsd +191 -0
  1070. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/grids.xsd +70 -0
  1071. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/measures.xsd +74 -0
  1072. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/observation.xsd +100 -0
  1073. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/referenceSystems.xsd +78 -0
  1074. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/temporal.xsd +274 -0
  1075. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/temporalReferenceSystems.xsd +194 -0
  1076. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/temporalTopology.xsd +124 -0
  1077. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/topology.xsd +391 -0
  1078. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/units.xsd +168 -0
  1079. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/valueObjects.xsd +210 -0
  1080. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-1/gmw/1.1/gmlWrapperTypes.xsd +160 -0
  1081. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-1/gmw/1.1/gmw.xsd +27 -0
  1082. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-1/gmw/1.1.0/gmlWrapperTypes.xsd +160 -0
  1083. data/spec/fixtures/xml/schema/xsd/isotc211/19136/-1/gmw/1.1.0/gmw.xsd +27 -0
  1084. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2/cat.xsd +18 -0
  1085. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2/catalogues.xsd +63 -0
  1086. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2/codelistItem.xsd +64 -0
  1087. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2/crsItem.xsd +200 -0
  1088. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2/uomItem.xsd +49 -0
  1089. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2.0/cat.xsd +18 -0
  1090. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2.0/catalogues.xsd +63 -0
  1091. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2.0/codelistItem.xsd +64 -0
  1092. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2.0/crsItem.xsd +200 -0
  1093. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2.0/uomItem.xsd +49 -0
  1094. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gco/1.0/basicTypes.xsd +439 -0
  1095. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gco/1.0/gco.xsd +18 -0
  1096. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gco/1.0/gcoBase.xsd +71 -0
  1097. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/applicationSchema.xsd +50 -0
  1098. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/citation.xsd +283 -0
  1099. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/constraints.xsd +114 -0
  1100. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/content.xsd +197 -0
  1101. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/dataQuality.xsd +563 -0
  1102. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/distribution.xsd +210 -0
  1103. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/extent.xsd +216 -0
  1104. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/freeText.xsd +130 -0
  1105. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/gmd.xsd +18 -0
  1106. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/identification.xsd +356 -0
  1107. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/maintenance.xsd +95 -0
  1108. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/metadataApplication.xsd +183 -0
  1109. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/metadataEntity.xsd +78 -0
  1110. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/metadataExtension.xsd +107 -0
  1111. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/portrayalCatalogue.xsd +44 -0
  1112. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/referenceSystem.xsd +108 -0
  1113. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/spatialRepresentation.xsd +246 -0
  1114. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/catalogues.xsd +121 -0
  1115. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/codelistItem.xsd +179 -0
  1116. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/crsItem.xsd +1041 -0
  1117. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/extendedTypes.xsd +83 -0
  1118. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/gmx.xsd +18 -0
  1119. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/gmxUsage.xsd +136 -0
  1120. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/uomItem.xsd +173 -0
  1121. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gsr/1.0/gsr.xsd +18 -0
  1122. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gsr/1.0/spatialReferencing.xsd +34 -0
  1123. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gss/1.0/geometry.xsd +45 -0
  1124. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gss/1.0/gss.xsd +18 -0
  1125. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gts/1.0/gts.xsd +18 -0
  1126. data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gts/1.0/temporalObjects.xsd +44 -0
  1127. data/spec/fixtures/xml/schema/xsd/isotc211/19155/gpi/1.0/gpi.xsd +16 -0
  1128. data/spec/fixtures/xml/schema/xsd/isotc211/19155/gpi/1.0/placeIdentifier.xsd +75 -0
  1129. data/spec/fixtures/xml/schema/xsd/isotc211/19155/gpi/1.0/sampleGMLApplicationSchema.xsd +83 -0
  1130. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqc/1.2/abstract.xsd +44 -0
  1131. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqc/1.2/dqc.xsd +16 -0
  1132. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqc/1.2.0/abstract.xsd +44 -0
  1133. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqc/1.2.0/dqc.xsd +16 -0
  1134. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqm/1.2/dqm.xsd +19 -0
  1135. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqm/1.2/qualityMeasures.xsd +332 -0
  1136. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqm/1.2.0/dqm.xsd +19 -0
  1137. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqm/1.2.0/qualityMeasures.xsd +332 -0
  1138. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/dataQualityElement.xsd +583 -0
  1139. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/dataQualityEvaluation.xsd +199 -0
  1140. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/dataQualityImagery.xsd +75 -0
  1141. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/dataQualityResult.xsd +213 -0
  1142. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/mdq.xsd +22 -0
  1143. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/metaquality.xsd +93 -0
  1144. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/dataQualityElement.xsd +583 -0
  1145. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/dataQualityEvaluation.xsd +199 -0
  1146. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/dataQualityImagery.xsd +75 -0
  1147. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/dataQualityResult.xsd +213 -0
  1148. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/mdq.xsd +22 -0
  1149. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/metaquality.xsd +93 -0
  1150. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqc/1.0.0/dataQualityCommon.xsd +33 -0
  1151. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqc/1.0.0/dqc.xsd +14 -0
  1152. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqc/1.0.1/dataQualityCommon.xsd +43 -0
  1153. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqc/1.0.1/dqc.xsd +17 -0
  1154. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqm/1.0.0/dataQualityMeasure.xsd +376 -0
  1155. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqm/1.0.0/dqm.xsd +11 -0
  1156. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqm/1.0.1/dataQualityMeasure.xsd +367 -0
  1157. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqm/1.0.1/dqm.xsd +11 -0
  1158. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.0/dataQuality.xsd +570 -0
  1159. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.0/dataQualityEvaluation.xsd +227 -0
  1160. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.0/dataQualityResult.xsd +191 -0
  1161. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.0/mdq.xsd +14 -0
  1162. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.0/metaquality.xsd +106 -0
  1163. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.1/dataQuality.xsd +581 -0
  1164. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.1/dataQualityEvaluation.xsd +227 -0
  1165. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.1/dataQualityResult.xsd +198 -0
  1166. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.1/mdq.xsd +14 -0
  1167. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.1/metaquality.xsd +102 -0
  1168. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/dqc/1.0/abstract.xsd +43 -0
  1169. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/dqc/1.0/dqc.xsd +15 -0
  1170. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/dqm/1.0/dqm.xsd +15 -0
  1171. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/dqm/1.0/qualityMeasures.xsd +303 -0
  1172. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/dataQualityElement.xsd +554 -0
  1173. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/dataQualityEvaluation.xsd +182 -0
  1174. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/dataQualityImagery.xsd +72 -0
  1175. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/dataQualityResult.xsd +140 -0
  1176. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/mdq.xsd +21 -0
  1177. data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/metaquality.xsd +89 -0
  1178. data/spec/fixtures/xml/schema/xsd/isotc211/19160/-4/patdl/2.7.3/PATDL.v.2.7.3.xsd +517 -0
  1179. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1/IE_Imagery.xsd +520 -0
  1180. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1/IE_ImageryAndGriddedData.xsd +222 -0
  1181. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1/IE_ThematicGriddedData.xsd +117 -0
  1182. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1/igd.xsd +14 -0
  1183. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.0/IE_Imagery.xsd +520 -0
  1184. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.0/IE_ImageryAndGriddedData.xsd +222 -0
  1185. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.0/IE_ThematicGriddedData.xsd +117 -0
  1186. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.0/igd.xsd +14 -0
  1187. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.1/IE_Imagery.xsd +518 -0
  1188. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.1/IE_ImageryAndGriddedData.xsd +213 -0
  1189. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.1/IE_ThematicGriddedData.xsd +116 -0
  1190. data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.1/igd.xsd +15 -0
  1191. data/spec/fixtures/xml/schema/xsd/isotc211/19165/-1/gpm/1.0.0/geospatialPreservationMetadata.xsd +872 -0
  1192. data/spec/fixtures/xml/schema/xsd/isotc211/19165/-1/gpm/1.0.0/gpm.xsd +11 -0
  1193. data/spec/fixtures/xml/schema/xsd/isotc211/19165/gpm/1.0/geospatialPreservationMetadata.xsd +385 -0
  1194. data/spec/fixtures/xml/schema/xsd/isotc211/19165/gpm/1.0/gpm.xsd +8 -0
  1195. data/spec/fixtures/xml/schema/xsd/metaschema-datatypes.xsd +263 -0
  1196. data/spec/fixtures/xml/schema/xsd/metaschema-markup-line.xsd +9 -0
  1197. data/spec/fixtures/xml/schema/xsd/metaschema-markup-multiline.xsd +135 -0
  1198. data/spec/fixtures/xml/schema/xsd/metaschema-meta-constraints.xsd +39 -0
  1199. data/spec/fixtures/xml/schema/xsd/metaschema-prose-base.xsd +82 -0
  1200. data/spec/fixtures/xml/schema/xsd/metaschema-prose-module.xsd +5 -0
  1201. data/spec/fixtures/xml/schema/xsd/metaschema.xsd +1344 -0
  1202. data/spec/fixtures/xml/schema/xsd/omml_schema.xsd +1528 -0
  1203. data/spec/fixtures/xml/schema/xsd/smil20/rdf.xsd +16 -0
  1204. data/spec/fixtures/xml/schema/xsd/smil20/smil20-AccessKeyTiming.xsd +33 -0
  1205. data/spec/fixtures/xml/schema/xsd/smil20/smil20-AudioLayout.xsd +32 -0
  1206. data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicAnimation.xsd +35 -0
  1207. data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicContentControl.xsd +49 -0
  1208. data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicInlineTiming.xsd +34 -0
  1209. data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicLayout.xsd +34 -0
  1210. data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicLinking.xsd +34 -0
  1211. data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicMedia.xsd +39 -0
  1212. data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicTimeContainers.xsd +37 -0
  1213. data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicTransitions.xsd +36 -0
  1214. data/spec/fixtures/xml/schema/xsd/smil20/smil20-BrushMedia.xsd +32 -0
  1215. data/spec/fixtures/xml/schema/xsd/smil20/smil20-CustomTestAttributes.xsd +33 -0
  1216. data/spec/fixtures/xml/schema/xsd/smil20/smil20-EventTiming.xsd +33 -0
  1217. data/spec/fixtures/xml/schema/xsd/smil20/smil20-ExclTimeContainers.xsd +37 -0
  1218. data/spec/fixtures/xml/schema/xsd/smil20/smil20-FillDefault.xsd +32 -0
  1219. data/spec/fixtures/xml/schema/xsd/smil20/smil20-HierarchicalLayout.xsd +46 -0
  1220. data/spec/fixtures/xml/schema/xsd/smil20/smil20-HostLanguage.xsd +85 -0
  1221. data/spec/fixtures/xml/schema/xsd/smil20/smil20-InlineTransitions.xsd +35 -0
  1222. data/spec/fixtures/xml/schema/xsd/smil20/smil20-IntegrationSet.xsd +72 -0
  1223. data/spec/fixtures/xml/schema/xsd/smil20/smil20-LinkingAttributes.xsd +40 -0
  1224. data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaAccessibility.xsd +34 -0
  1225. data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaClipMarkers.xsd +35 -0
  1226. data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaClipping.xsd +35 -0
  1227. data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaDescription.xsd +35 -0
  1228. data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaMarkerTiming.xsd +33 -0
  1229. data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaParam.xsd +34 -0
  1230. data/spec/fixtures/xml/schema/xsd/smil20/smil20-Metainformation.xsd +33 -0
  1231. data/spec/fixtures/xml/schema/xsd/smil20/smil20-MinMaxTiming.xsd +33 -0
  1232. data/spec/fixtures/xml/schema/xsd/smil20/smil20-MultiArcTiming.xsd +33 -0
  1233. data/spec/fixtures/xml/schema/xsd/smil20/smil20-MultiWindowLayout.xsd +32 -0
  1234. data/spec/fixtures/xml/schema/xsd/smil20/smil20-ObjectLinking.xsd +33 -0
  1235. data/spec/fixtures/xml/schema/xsd/smil20/smil20-PrefetchControl.xsd +31 -0
  1236. data/spec/fixtures/xml/schema/xsd/smil20/smil20-RepeatTiming.xsd +34 -0
  1237. data/spec/fixtures/xml/schema/xsd/smil20/smil20-RepeatValueTiming.xsd +33 -0
  1238. data/spec/fixtures/xml/schema/xsd/smil20/smil20-RestartDefault.xsd +32 -0
  1239. data/spec/fixtures/xml/schema/xsd/smil20/smil20-RestartTiming.xsd +32 -0
  1240. data/spec/fixtures/xml/schema/xsd/smil20/smil20-SkipContentControl.xsd +32 -0
  1241. data/spec/fixtures/xml/schema/xsd/smil20/smil20-SplineAnimation.xsd +34 -0
  1242. data/spec/fixtures/xml/schema/xsd/smil20/smil20-Structure.xsd +34 -0
  1243. data/spec/fixtures/xml/schema/xsd/smil20/smil20-SyncBehavior.xsd +33 -0
  1244. data/spec/fixtures/xml/schema/xsd/smil20/smil20-SyncBehaviorDefault.xsd +33 -0
  1245. data/spec/fixtures/xml/schema/xsd/smil20/smil20-SyncMaster.xsd +32 -0
  1246. data/spec/fixtures/xml/schema/xsd/smil20/smil20-SyncbaseTiming.xsd +33 -0
  1247. data/spec/fixtures/xml/schema/xsd/smil20/smil20-TimeContainerAttributes.xsd +35 -0
  1248. data/spec/fixtures/xml/schema/xsd/smil20/smil20-TimeManipulations.xsd +35 -0
  1249. data/spec/fixtures/xml/schema/xsd/smil20/smil20-TransitionModifiers.xsd +37 -0
  1250. data/spec/fixtures/xml/schema/xsd/smil20/smil20-WallclockTiming.xsd +33 -0
  1251. data/spec/fixtures/xml/schema/xsd/smil20/smil20-animate.xsd +229 -0
  1252. data/spec/fixtures/xml/schema/xsd/smil20/smil20-content.xsd +148 -0
  1253. data/spec/fixtures/xml/schema/xsd/smil20/smil20-language.xsd +834 -0
  1254. data/spec/fixtures/xml/schema/xsd/smil20/smil20-layout.xsd +211 -0
  1255. data/spec/fixtures/xml/schema/xsd/smil20/smil20-linking.xsd +117 -0
  1256. data/spec/fixtures/xml/schema/xsd/smil20/smil20-media.xsd +175 -0
  1257. data/spec/fixtures/xml/schema/xsd/smil20/smil20-meta.xsd +44 -0
  1258. data/spec/fixtures/xml/schema/xsd/smil20/smil20-struct.xsd +47 -0
  1259. data/spec/fixtures/xml/schema/xsd/smil20/smil20-timemanip.xsd +34 -0
  1260. data/spec/fixtures/xml/schema/xsd/smil20/smil20-timing.xsd +344 -0
  1261. data/spec/fixtures/xml/schema/xsd/smil20/smil20-transitions.xsd +138 -0
  1262. data/spec/fixtures/xml/schema/xsd/smil20/smil20-utility.xsd +57 -0
  1263. data/spec/fixtures/xml/schema/xsd/smil20/smil20.xsd +86 -0
  1264. data/spec/fixtures/xml/schema/xsd/smil20/xml-mod.xsd +25 -0
  1265. data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/advanced_encodings.xsd +186 -0
  1266. data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/basic_types.xsd +147 -0
  1267. data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/block_components.xsd +163 -0
  1268. data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/choice_components.xsd +56 -0
  1269. data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/examples/security.xsd +15 -0
  1270. data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/record_components.xsd +95 -0
  1271. data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/simple_components.xsd +536 -0
  1272. data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/simple_encodings.xsd +93 -0
  1273. data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/swe.xsd +14 -0
  1274. data/spec/fixtures/xml/schema/xsd/test_schema.lxr +0 -0
  1275. data/spec/fixtures/xml/schema/xsd/test_schema.xsd +24 -0
  1276. data/spec/fixtures/xml/schema/xsd/unitsml-v1.0-csd03.xsd +1333 -0
  1277. data/spec/fixtures/xml/schema/xsd/unitsml-v1.0-csd04.xsd +1334 -0
  1278. data/spec/fixtures/xml/schema/xsd/validation_config.yml +14 -0
  1279. data/spec/fixtures/xml/special_char.xml +3 -4
  1280. data/spec/fixtures/xml/user.xsd +14 -10
  1281. data/spec/lutaml/key_value/transformation/collection_serializer_spec.rb +213 -0
  1282. data/spec/lutaml/key_value/transformation/rule_compiler_spec.rb +229 -0
  1283. data/spec/lutaml/key_value/transformation/value_serializer_spec.rb +216 -0
  1284. data/spec/lutaml/key_value/transformation_spec.rb +292 -0
  1285. data/spec/lutaml/model/attribute_collection_spec.rb +9 -6
  1286. data/spec/lutaml/model/attribute_form_default_spec.rb +252 -0
  1287. data/spec/lutaml/model/attribute_spec.rb +328 -38
  1288. data/spec/lutaml/model/cached_type_resolver_spec.rb +362 -0
  1289. data/spec/lutaml/model/cdata_spec.rb +180 -102
  1290. data/spec/lutaml/model/choice_spec.rb +37 -7
  1291. data/spec/lutaml/model/cli_spec.rb +452 -0
  1292. data/spec/lutaml/model/collection_index_spec.rb +347 -0
  1293. data/spec/lutaml/model/collection_mutation_spec.rb +124 -0
  1294. data/spec/lutaml/model/collection_spec.rb +580 -155
  1295. data/spec/lutaml/model/collection_validation_spec.rb +736 -0
  1296. data/spec/lutaml/model/comparable_model_spec.rb +75 -0
  1297. data/spec/lutaml/model/compiled_rule_spec.rb +364 -0
  1298. data/spec/lutaml/model/consolidation_spec.rb +295 -0
  1299. data/spec/lutaml/model/context_registry_spec.rb +269 -0
  1300. data/spec/lutaml/model/custom_bibtex_adapter_spec.rb +21 -7
  1301. data/spec/lutaml/model/custom_collection_spec.rb +321 -27
  1302. data/spec/lutaml/model/custom_model_spec.rb +13 -10
  1303. data/spec/lutaml/model/custom_serialization_spec.rb +12 -14
  1304. data/spec/lutaml/model/custom_vobject_adapter_spec.rb +36 -16
  1305. data/spec/lutaml/model/default_register_spec.rb +852 -0
  1306. data/spec/lutaml/model/defaults_spec.rb +57 -6
  1307. data/spec/lutaml/model/delegation_spec.rb +184 -110
  1308. data/spec/lutaml/model/derived_attribute_serialization_spec.rb +33 -0
  1309. data/spec/lutaml/model/dynamic_attribute_spec.rb +112 -0
  1310. data/spec/lutaml/model/encoding_spec.rb +281 -0
  1311. data/spec/lutaml/model/enum_spec.rb +46 -2
  1312. data/spec/lutaml/model/except_spec.rb +240 -0
  1313. data/spec/lutaml/model/finalization_cache_spec.rb +88 -0
  1314. data/spec/lutaml/model/global_context_spec.rb +421 -0
  1315. data/spec/lutaml/model/global_register_spec.rb +153 -36
  1316. data/spec/lutaml/model/group_spec.rb +193 -54
  1317. data/spec/lutaml/model/hash/adapter_spec.rb +5 -3
  1318. data/spec/lutaml/model/import_registry_spec.rb +295 -0
  1319. data/spec/lutaml/model/included_spec.rb +10 -17
  1320. data/spec/lutaml/model/inheritance_spec.rb +6 -6
  1321. data/spec/lutaml/model/json_adapter_spec.rb +13 -6
  1322. data/spec/lutaml/model/json_spec.rb +33 -0
  1323. data/spec/lutaml/model/key_value_data_model/key_value_element_spec.rb +320 -0
  1324. data/spec/lutaml/model/key_value_mapping_spec.rb +12 -2
  1325. data/spec/lutaml/model/lazy_collection_spec.rb +208 -0
  1326. data/spec/lutaml/model/liquefiable_spec.rb +263 -24
  1327. data/spec/lutaml/model/logger_spec.rb +68 -0
  1328. data/spec/lutaml/model/map_all_spec.rb +36 -11
  1329. data/spec/lutaml/model/map_content_spec.rb +4 -4
  1330. data/spec/lutaml/model/mapping_rule_perf_guard_spec.rb +71 -0
  1331. data/spec/lutaml/model/mixed_content_spec.rb +481 -171
  1332. data/spec/lutaml/model/model_transformer_spec.rb +678 -0
  1333. data/spec/lutaml/model/multiple_mapping_spec.rb +71 -39
  1334. data/spec/lutaml/model/namespace_versioning_spec.rb +390 -0
  1335. data/spec/lutaml/model/one_entry_cache_spec.rb +114 -0
  1336. data/spec/lutaml/model/ordered_content_spec.rb +115 -24
  1337. data/spec/lutaml/model/polymorphic_spec.rb +29 -6
  1338. data/spec/lutaml/model/processing_instruction_spec.rb +375 -0
  1339. data/spec/lutaml/model/{register/key_value_spec.rb → register_key_value_spec.rb} +57 -5
  1340. data/spec/lutaml/model/register_spec.rb +235 -5
  1341. data/spec/lutaml/model/render_empty_spec.rb +143 -6
  1342. data/spec/lutaml/model/render_nil_spec.rb +15 -10
  1343. data/spec/lutaml/model/root_mappings_spec.rb +16 -6
  1344. data/spec/lutaml/model/rule_value_extractor_spec.rb +13 -44
  1345. data/spec/lutaml/model/runtime_compatibility_spec.rb +36 -0
  1346. data/spec/lutaml/model/schema/generator/definitions_collection_spec.rb +4 -0
  1347. data/spec/lutaml/model/schema/json_schema_spec.rb +7 -1
  1348. data/spec/lutaml/model/schema/relaxng_schema_spec.rb +1 -1
  1349. data/spec/lutaml/model/schema/renderer_spec.rb +128 -0
  1350. data/spec/lutaml/model/schema/xsd_schema_spec.rb +1 -1
  1351. data/spec/lutaml/model/sequence_spec.rb +460 -15
  1352. data/spec/lutaml/model/serializable_spec.rb +212 -12
  1353. data/spec/lutaml/model/serializable_validation_spec.rb +3 -2
  1354. data/spec/lutaml/model/serialize_perf_guard_spec.rb +100 -0
  1355. data/spec/lutaml/model/services/default_value_resolver_spec.rb +162 -0
  1356. data/spec/lutaml/model/simple_model_spec.rb +4 -4
  1357. data/spec/lutaml/model/toml_adapter_spec.rb +11 -4
  1358. data/spec/lutaml/model/toml_spec.rb +46 -2
  1359. data/spec/lutaml/model/transformation_builder_spec.rb +283 -0
  1360. data/spec/lutaml/model/transformation_spec.rb +165 -236
  1361. data/spec/lutaml/model/type/base64_binary_spec.rb +202 -0
  1362. data/spec/lutaml/model/type/date_spec.rb +132 -0
  1363. data/spec/lutaml/model/type/date_time_spec.rb +54 -2
  1364. data/spec/lutaml/model/type/decimal_spec.rb +1 -1
  1365. data/spec/lutaml/model/type/duration_spec.rb +185 -0
  1366. data/spec/lutaml/model/type/hex_binary_spec.rb +225 -0
  1367. data/spec/lutaml/model/type/integer_spec.rb +1 -1
  1368. data/spec/lutaml/model/type/qname_spec.rb +246 -0
  1369. data/spec/lutaml/model/type/reference_integration_spec.rb +532 -0
  1370. data/spec/lutaml/model/type/reference_spec.rb +293 -0
  1371. data/spec/lutaml/model/type/symbol_spec.rb +322 -0
  1372. data/spec/lutaml/model/type/time_spec.rb +6 -5
  1373. data/spec/lutaml/model/type/time_without_date_spec.rb +1 -1
  1374. data/spec/lutaml/model/type/uninitialized_class_spec.rb +110 -0
  1375. data/spec/lutaml/model/type/uri_spec.rb +176 -0
  1376. data/spec/lutaml/model/type/value_xml_mapping_spec.rb +162 -0
  1377. data/spec/lutaml/model/type_context_spec.rb +370 -0
  1378. data/spec/lutaml/model/type_registry_spec.rb +313 -0
  1379. data/spec/lutaml/model/type_resolver_spec.rb +278 -0
  1380. data/spec/lutaml/model/type_spec.rb +7 -8
  1381. data/spec/lutaml/model/type_substitution_spec.rb +172 -0
  1382. data/spec/lutaml/model/utils_spec.rb +39 -24
  1383. data/spec/lutaml/model/value_map_spec.rb +2 -2
  1384. data/spec/lutaml/model/value_transformation_comprehensive_spec.rb +676 -0
  1385. data/spec/lutaml/model/with_child_mapping_spec.rb +1 -1
  1386. data/spec/lutaml/model/xml_decoupling_spec.rb +435 -0
  1387. data/spec/lutaml/model/xsd_form_default_patterns_spec.rb +664 -0
  1388. data/spec/lutaml/model/xsd_patterns_spec.rb +278 -0
  1389. data/spec/lutaml/model/xsd_type_spec.rb +345 -0
  1390. data/spec/lutaml/model/xsd_type_validation_spec.rb +442 -0
  1391. data/spec/lutaml/model/yamls/standard_adapter_spec.rb +2 -2
  1392. data/spec/lutaml/xml/adapter/nokogiri_adapter_spec.rb +130 -0
  1393. data/spec/lutaml/xml/adapter/oga_adapter_spec.rb +135 -0
  1394. data/spec/lutaml/xml/adapter/ox_adapter_spec.rb +101 -0
  1395. data/spec/lutaml/xml/adapter/rexml_adapter_spec.rb +101 -0
  1396. data/spec/lutaml/xml/adapter/xml_namespace_spec.rb +531 -0
  1397. data/spec/lutaml/xml/builder/builder_spec.rb +216 -0
  1398. data/spec/lutaml/xml/compiled_rule_namespace_spec.rb +405 -0
  1399. data/spec/lutaml/xml/conformance/xml_namespaces_spec.rb +580 -0
  1400. data/spec/lutaml/xml/conformance/xml_schema_instance_spec.rb +266 -0
  1401. data/spec/lutaml/xml/data_model_spec.rb +300 -0
  1402. data/spec/lutaml/xml/decisions/decision_engine_spec.rb +242 -0
  1403. data/spec/lutaml/xml/decisions/decision_spec.rb +217 -0
  1404. data/spec/lutaml/xml/decisions/element_prefix_resolver_spec.rb +198 -0
  1405. data/spec/lutaml/xml/declaration_planner_spec.rb +524 -0
  1406. data/spec/lutaml/xml/default_namespace_spec.rb +190 -0
  1407. data/spec/lutaml/{model/xml → xml}/derived_attributes_spec.rb +2 -2
  1408. data/spec/lutaml/xml/doctype_preservation_spec.rb +323 -0
  1409. data/spec/lutaml/xml/doubly_defined_namespace_spec.rb +415 -0
  1410. data/spec/lutaml/xml/dual_namespace_element_spec.rb +181 -0
  1411. data/spec/lutaml/xml/element_spec.rb +28 -0
  1412. data/spec/lutaml/xml/encoding_normalizer_spec.rb +215 -0
  1413. data/spec/lutaml/xml/enhanced_mapping_spec.rb +692 -0
  1414. data/spec/lutaml/xml/entity_fragmentation_spec.rb +583 -0
  1415. data/spec/lutaml/xml/format_chooser_spec.rb +0 -0
  1416. data/spec/lutaml/xml/fpi_namespace_spec.rb +145 -0
  1417. data/spec/lutaml/{model/xml/namespace_spec.rb → xml/general_namespace_spec.rb} +6 -5
  1418. data/spec/lutaml/xml/mapping_finalization_guard_spec.rb +83 -0
  1419. data/spec/lutaml/xml/mapping_rule_spec.rb +98 -0
  1420. data/spec/lutaml/xml/mapping_spec.rb +1147 -0
  1421. data/spec/lutaml/xml/model_transform_guard_spec.rb +126 -0
  1422. data/spec/lutaml/{model/xml → xml}/namespace/nested_with_explicit_namespace_spec.rb +8 -5
  1423. data/spec/lutaml/xml/namespace/w3c_reserved_warning_spec.rb +152 -0
  1424. data/spec/lutaml/xml/namespace_alias_prefix_root_spec.rb +130 -0
  1425. data/spec/lutaml/xml/namespace_alias_spec.rb +263 -0
  1426. data/spec/lutaml/xml/namespace_aware_parsing_spec.rb +219 -0
  1427. data/spec/lutaml/xml/namespace_backward_compatibility_spec.rb +48 -0
  1428. data/spec/lutaml/xml/namespace_bound_element_roundtrip_spec.rb +433 -0
  1429. data/spec/lutaml/xml/namespace_constant_spec.rb +383 -0
  1430. data/spec/lutaml/xml/namespace_force_prefix_spec.rb +113 -0
  1431. data/spec/lutaml/xml/namespace_format_preservation_spec.rb +49 -0
  1432. data/spec/lutaml/xml/namespace_inheritance_deep_spec.rb +162 -0
  1433. data/spec/lutaml/xml/namespace_inheritance_override_spec.rb +316 -0
  1434. data/spec/lutaml/xml/namespace_inheritance_resolver_spec.rb +0 -0
  1435. data/spec/lutaml/xml/namespace_inheritance_spec.rb +966 -0
  1436. data/spec/lutaml/xml/namespace_integration_spec.rb +277 -0
  1437. data/spec/lutaml/xml/namespace_missing_prefix_spec.rb +178 -0
  1438. data/spec/lutaml/xml/namespace_no_hoisting_spec.rb +172 -0
  1439. data/spec/lutaml/xml/namespace_placement_spec.rb +265 -0
  1440. data/spec/lutaml/xml/namespace_preservation_spec.rb +427 -0
  1441. data/spec/lutaml/xml/namespace_principles_spec.rb +909 -0
  1442. data/spec/lutaml/xml/namespace_resolution_strategy_spec.rb +273 -0
  1443. data/spec/lutaml/xml/namespace_scope_declare_spec.rb +205 -0
  1444. data/spec/lutaml/xml/namespace_scope_spec.rb +389 -0
  1445. data/spec/lutaml/xml/namespace_scope_vcard_spec.rb +616 -0
  1446. data/spec/lutaml/xml/namespace_spec.rb +712 -0
  1447. data/spec/lutaml/xml/namespace_three_phase_spec.rb +310 -0
  1448. data/spec/lutaml/xml/nil_optional_element_namespace_spec.rb +84 -0
  1449. data/spec/lutaml/xml/ooxml_namespace_spec.rb +177 -0
  1450. data/spec/lutaml/xml/ordered_method_spec.rb +109 -0
  1451. data/spec/lutaml/xml/prefix_control_spec.rb +286 -0
  1452. data/spec/lutaml/{model/register/xml_spec.rb → xml/register_spec.rb} +75 -21
  1453. data/spec/lutaml/xml/reusable_mapping_spec.rb +148 -0
  1454. data/spec/lutaml/xml/reused_elements_namespace_spec.rb +85 -0
  1455. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/attribute_group_spec.rb +9 -3
  1456. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/attribute_spec.rb +11 -7
  1457. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/choice_spec.rb +5 -2
  1458. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/complex_content_restriction_spec.rb +7 -2
  1459. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/complex_content_spec.rb +5 -1
  1460. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/complex_type_spec.rb +49 -20
  1461. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/element_spec.rb +9 -4
  1462. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/group_spec.rb +9 -5
  1463. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/restriction_spec.rb +1 -0
  1464. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/sequence_spec.rb +10 -4
  1465. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/simple_content_spec.rb +9 -3
  1466. data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/simple_type_spec.rb +10 -7
  1467. data/spec/lutaml/{model/schema/xml_compiler_spec.rb → xml/schema/compiler_spec.rb} +219 -94
  1468. data/spec/lutaml/xml/schema/xsd/errors/error_context_spec.rb +65 -0
  1469. data/spec/lutaml/xml/schema/xsd/errors/suggestion_spec.rb +77 -0
  1470. data/spec/lutaml/xml/schema/xsd/file_validation_result_spec.rb +131 -0
  1471. data/spec/lutaml/xml/schema/xsd/glob_spec.rb +318 -0
  1472. data/spec/lutaml/xml/schema/xsd/liquid_methods/attribute_and_group_spec.rb +76 -0
  1473. data/spec/lutaml/xml/schema/xsd/liquid_methods/complex_type_spec.rb +159 -0
  1474. data/spec/lutaml/xml/schema/xsd/liquid_methods/containers_spec.rb +104 -0
  1475. data/spec/lutaml/xml/schema/xsd/liquid_methods/element_spec.rb +139 -0
  1476. data/spec/lutaml/xml/schema/xsd/liquid_methods/schema_spec.rb +75 -0
  1477. data/spec/lutaml/xml/schema/xsd/liquid_methods/simple_content_spec.rb +79 -0
  1478. data/spec/lutaml/xml/schema/xsd/namespace_uri_remapping_spec.rb +246 -0
  1479. data/spec/lutaml/xml/schema/xsd/schema_helper_methods_spec.rb +237 -0
  1480. data/spec/lutaml/xml/schema/xsd/schema_mapping_spec.rb +742 -0
  1481. data/spec/lutaml/xml/schema/xsd/schema_validator_spec.rb +228 -0
  1482. data/spec/lutaml/xml/schema/xsd/spec_helper.rb +26 -0
  1483. data/spec/lutaml/xml/schema/xsd/validation_error_spec.rb +189 -0
  1484. data/spec/lutaml/xml/schema/xsd/validation_result_spec.rb +276 -0
  1485. data/spec/lutaml/xml/schema/xsd/xsd_spec.rb +51 -0
  1486. data/spec/lutaml/xml/schema_primer_spec.rb +393 -0
  1487. data/spec/lutaml/xml/serializable_namespace_spec.rb +125 -0
  1488. data/spec/lutaml/xml/transformation/custom_method_wrapper_spec.rb +48 -0
  1489. data/spec/lutaml/xml/transformation_spec.rb +439 -0
  1490. data/spec/lutaml/xml/type_namespace/collector_spec.rb +212 -0
  1491. data/spec/lutaml/xml/type_namespace/planner_spec.rb +270 -0
  1492. data/spec/lutaml/xml/type_namespace_examples_spec.rb +521 -0
  1493. data/spec/lutaml/xml/type_namespace_integration_spec.rb +332 -0
  1494. data/spec/lutaml/xml/type_namespace_prefix_spec.rb +370 -0
  1495. data/spec/lutaml/xml/type_namespace_resolver_spec.rb +0 -0
  1496. data/spec/lutaml/xml/type_namespace_roundtrip_spec.rb +580 -0
  1497. data/spec/lutaml/xml/w3c_types_spec.rb +376 -0
  1498. data/spec/lutaml/{model → xml}/xml_adapter_spec.rb +64 -17
  1499. data/spec/lutaml/xml/xml_declaration_spec.rb +568 -0
  1500. data/spec/lutaml/xml/xml_element_guard_spec.rb +138 -0
  1501. data/spec/lutaml/{model/xml → xml}/xml_element_spec.rb +1 -1
  1502. data/spec/lutaml/xml/xml_lang_spec.rb +441 -0
  1503. data/spec/lutaml/xml/xml_space_spec.rb +247 -0
  1504. data/spec/lutaml/xml/xml_space_type_spec.rb +161 -0
  1505. data/spec/lutaml/xml/xml_spec.rb +122 -0
  1506. data/spec/parent_root_spec.rb +63 -0
  1507. data/spec/person_spec.rb +9 -9
  1508. data/spec/spec_helper.rb +64 -6
  1509. data/spec/support/test_adapter_config.rb +101 -0
  1510. data/spec/support/test_namespaces.rb +185 -0
  1511. data/spec/support/trace_helper.rb +0 -0
  1512. data/spec/support/xml/schema_helper.rb +15 -0
  1513. data/spec/support/xml/xsd/code_example_validator.rb +393 -0
  1514. data/spec/support/xml_mapping_namespaces.rb +176 -0
  1515. metadata +1465 -100
  1516. data/docs/custom_registers.adoc +0 -228
  1517. data/lib/lutaml/model/hash_adapter/mapping.rb +0 -19
  1518. data/lib/lutaml/model/hash_adapter/mapping_rule.rb +0 -9
  1519. data/lib/lutaml/model/hash_adapter/transform.rb +0 -8
  1520. data/lib/lutaml/model/hash_adapter.rb +0 -21
  1521. data/lib/lutaml/model/json/mapping.rb +0 -19
  1522. data/lib/lutaml/model/json/mapping_rule.rb +0 -9
  1523. data/lib/lutaml/model/json/multi_json_adapter.rb +0 -18
  1524. data/lib/lutaml/model/json/standard_adapter.rb +0 -25
  1525. data/lib/lutaml/model/json/transform.rb +0 -8
  1526. data/lib/lutaml/model/jsonl/mapping.rb +0 -19
  1527. data/lib/lutaml/model/jsonl/mapping_rule.rb +0 -9
  1528. data/lib/lutaml/model/jsonl/transform.rb +0 -19
  1529. data/lib/lutaml/model/schema/xsd_schema.rb +0 -62
  1530. data/lib/lutaml/model/toml/mapping_rule.rb +0 -9
  1531. data/lib/lutaml/model/toml/toml_rb_adapter.rb +0 -18
  1532. data/lib/lutaml/model/toml/tomlib_adapter.rb +0 -19
  1533. data/lib/lutaml/model/toml/transform.rb +0 -8
  1534. data/lib/lutaml/model/xml/builder/nokogiri.rb +0 -101
  1535. data/lib/lutaml/model/xml/builder/oga.rb +0 -183
  1536. data/lib/lutaml/model/xml/builder/ox.rb +0 -121
  1537. data/lib/lutaml/model/xml/document.rb +0 -477
  1538. data/lib/lutaml/model/xml/element.rb +0 -32
  1539. data/lib/lutaml/model/xml/mapping.rb +0 -471
  1540. data/lib/lutaml/model/xml/mapping_rule.rb +0 -149
  1541. data/lib/lutaml/model/xml/nokogiri_adapter.rb +0 -234
  1542. data/lib/lutaml/model/xml/oga/document.rb +0 -20
  1543. data/lib/lutaml/model/xml/oga/element.rb +0 -123
  1544. data/lib/lutaml/model/xml/oga_adapter.rb +0 -172
  1545. data/lib/lutaml/model/xml/ox_adapter.rb +0 -229
  1546. data/lib/lutaml/model/xml/transform.rb +0 -8
  1547. data/lib/lutaml/model/xml/xml_attribute.rb +0 -37
  1548. data/lib/lutaml/model/xml/xml_element.rb +0 -167
  1549. data/lib/lutaml/model/xml/xml_namespace.rb +0 -49
  1550. data/lib/lutaml/model/xml.rb +0 -31
  1551. data/lib/lutaml/model/xml_adapter/element.rb +0 -18
  1552. data/lib/lutaml/model/xml_adapter/nokogiri_adapter.rb +0 -15
  1553. data/lib/lutaml/model/xml_adapter/oga_adapter.rb +0 -21
  1554. data/lib/lutaml/model/xml_adapter/ox_adapter.rb +0 -18
  1555. data/lib/lutaml/model/xml_adapter.rb +0 -7
  1556. data/lib/lutaml/model/yaml/mapping.rb +0 -19
  1557. data/lib/lutaml/model/yaml/mapping_rule.rb +0 -9
  1558. data/lib/lutaml/model/yaml/standard_adapter.rb +0 -28
  1559. data/lib/lutaml/model/yaml/transform.rb +0 -8
  1560. data/lib/lutaml/model/yamls/mapping.rb +0 -19
  1561. data/lib/lutaml/model/yamls/mapping_rule.rb +0 -9
  1562. data/lib/lutaml/model/yamls/transform.rb +0 -19
  1563. data/spec/benchmarks/xml_parsing_benchmark_spec.rb +0 -74
  1564. data/spec/fixtures/xml/advanced_test_schema.xsd +0 -134
  1565. data/spec/lutaml/model/namespace_spec.rb +0 -57
  1566. data/spec/lutaml/model/xml_adapter/nokogiri_adapter_spec.rb +0 -56
  1567. data/spec/lutaml/model/xml_adapter/oga_adapter_spec.rb +0 -60
  1568. data/spec/lutaml/model/xml_adapter/ox_adapter_spec.rb +0 -61
  1569. data/spec/lutaml/model/xml_adapter/xml_namespace_spec.rb +0 -368
  1570. data/spec/lutaml/model/xml_mapping_rule_spec.rb +0 -158
  1571. data/spec/lutaml/model/xml_mapping_spec.rb +0 -1318
  1572. data/spec/lutaml/model/xml_spec.rb +0 -63
  1573. /data/spec/lutaml/{model/xml → xml}/root_mappings/nested_child_mappings_spec.rb +0 -0
@@ -0,0 +1,3344 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:bldg="http://www.opengis.net/citygml/building/2.0" xmlns:brid="http://www.opengis.net/citygml/bridge/2.0" xmlns:core="http://www.opengis.net/citygml/2.0" xmlns:frn="http://www.opengis.net/citygml/cityfurniture/2.0" xmlns:gml="http://www.opengis.net/gml" xmlns:luse="http://www.opengis.net/citygml/landuse/2.0" xmlns:tran="http://www.opengis.net/citygml/transportation/2.0" xmlns:tun="http://www.opengis.net/citygml/tunnel/2.0" xmlns:uro="https://www.geospatial.jp/iur/uro/3.2" xmlns:veg="http://www.opengis.net/citygml/vegetation/2.0" xmlns:wtr="http://www.opengis.net/citygml/waterbody/2.0" xmlns:grp="http://www.opengis.net/citygml/cityobjectgroup/2.0" xmlns:dem="http://www.opengis.net/citygml/relief/2.0" elementFormDefault="qualified" attributeFormDefault="unqualified" targetNamespace="https://www.geospatial.jp/iur/uro/3.2" version="3.2.1">
3
+ <xs:import namespace="http://www.opengis.net/citygml/2.0" schemaLocation="http://schemas.opengis.net/citygml/2.0/cityGMLBase.xsd"/>
4
+ <xs:import namespace="http://www.opengis.net/citygml/bridge/2.0" schemaLocation="http://schemas.opengis.net/citygml/bridge/2.0/bridge.xsd"/>
5
+ <xs:import namespace="http://www.opengis.net/citygml/building/2.0" schemaLocation="http://schemas.opengis.net/citygml/building/2.0/building.xsd"/>
6
+ <xs:import namespace="http://www.opengis.net/citygml/cityfurniture/2.0" schemaLocation="http://schemas.opengis.net/citygml/cityfurniture/2.0/cityFurniture.xsd"/>
7
+ <xs:import namespace="http://www.opengis.net/citygml/landuse/2.0" schemaLocation="http://schemas.opengis.net/citygml/landuse/2.0/landUse.xsd"/>
8
+ <xs:import namespace="http://www.opengis.net/citygml/transportation/2.0" schemaLocation="http://schemas.opengis.net/citygml/transportation/2.0/transportation.xsd"/>
9
+ <xs:import namespace="http://www.opengis.net/citygml/tunnel/2.0" schemaLocation="http://schemas.opengis.net/citygml/tunnel/2.0/tunnel.xsd"/>
10
+ <xs:import namespace="http://www.opengis.net/citygml/vegetation/2.0" schemaLocation="http://schemas.opengis.net/citygml/vegetation/2.0/vegetation.xsd"/>
11
+ <xs:import namespace="http://www.opengis.net/citygml/waterbody/2.0" schemaLocation="http://schemas.opengis.net/citygml/waterbody/2.0/waterBody.xsd"/>
12
+ <xs:import namespace="http://www.opengis.net/gml" schemaLocation="http://schemas.opengis.net/gml/3.1.1/base/gml.xsd"/>
13
+ <xs:import namespace="http://www.opengis.net/citygml/cityobjectgroup/2.0" schemaLocation="http://schemas.opengis.net/citygml/cityobjectgroup/2.0/cityObjectGroup.xsd"/>
14
+ <xs:import namespace="http://www.opengis.net/citygml/relief/2.0" schemaLocation="http://schemas.opengis.net/citygml/relief/2.0/relief.xsd"/>
15
+ <!-- =================== 整形プログラムによる「_GenericApplicationPropertyOf」関係の追記 ↓  ================ -->
16
+ <xs:element name="bldgDataQualityAttribute" type="uro:DataQualityAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
17
+ <xs:element name="bldgDisasterRiskAttribute" type="uro:DisasterRiskAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
18
+ <xs:element name="bldgDmAttribute" type="uro:DmAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
19
+ <xs:element name="bldgFacilityAttribute" type="uro:FacilityAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
20
+ <xs:element name="bldgFacilityIdAttribute" type="uro:FacilityIdAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
21
+ <xs:element name="bldgFacilityTypeAttribute" type="uro:FacilityTypeAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
22
+ <xs:element name="bldgKeyValuePairAttribute" type="uro:KeyValuePairAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
23
+ <xs:element name="bldgRealEstateIDAttribute" type="uro:RealEstateIDAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
24
+ <xs:element name="bldgUsecaseAttribute" type="uro:BuildingUsecaseAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
25
+ <xs:element name="bridBaseAttribute" type="uro:ConstructionBaseAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
26
+ <xs:element name="bridDataQualityAttribute" type="uro:DataQualityAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
27
+ <xs:element name="bridDisasterRiskAttribute" type="uro:DisasterRiskAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
28
+ <xs:element name="bridDmAttribute" type="uro:DmAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
29
+ <xs:element name="bridFacilityAttribute" type="uro:FacilityAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
30
+ <xs:element name="bridFacilityIdAttribute" type="uro:FacilityIdAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
31
+ <xs:element name="bridFacilityTypeAttribute" type="uro:FacilityTypeAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
32
+ <xs:element name="bridFunctionalAttribute" type="uro:BridgeFunctionalAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
33
+ <xs:element name="bridKeyValuePairAttribute" type="uro:KeyValuePairAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
34
+ <xs:element name="bridRiskAssessmentAttribute" type="uro:ConstructionRiskAssessmentAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
35
+ <xs:element name="bridStructureAttribute" type="uro:BridgeStructureAttributePropertyType" substitutionGroup="brid:_GenericApplicationPropertyOfAbstractBridge"/>
36
+ <xs:element name="buildingDetailAttribute" type="uro:BuildingDetailAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
37
+ <xs:element name="buildingIDAttribute" type="uro:BuildingIDAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
38
+ <xs:element name="cityFurnitureDetailAttribute" type="uro:CityFurnitureDetailAttributePropertyType" substitutionGroup="frn:_GenericApplicationPropertyOfCityFurniture"/>
39
+ <xs:element name="demDataQualityAttribute" type="uro:DataQualityAttributePropertyType" substitutionGroup="dem:_GenericApplicationPropertyOfReliefFeature"/>
40
+ <xs:element name="demDmAttribute" type="uro:DmAttributePropertyType" substitutionGroup="dem:_GenericApplicationPropertyOfReliefComponent"/>
41
+ <xs:element name="demKeyValuePairAttribute" type="uro:KeyValuePairAttributePropertyType" substitutionGroup="dem:_GenericApplicationPropertyOfReliefFeature"/>
42
+ <xs:element name="fiscalYearOfPublication" type="xs:gYear" substitutionGroup="grp:_GenericApplicationPropertyOfCityObjectGroup"/>
43
+ <xs:element name="floodingRiskAttribute" type="uro:FloodingRiskAttributePropertyType" substitutionGroup="wtr:_GenericApplicationPropertyOfWaterBody"/>
44
+ <xs:element name="frnDataQualityAttribute" type="uro:DataQualityAttributePropertyType" substitutionGroup="frn:_GenericApplicationPropertyOfCityFurniture"/>
45
+ <xs:element name="frnDmAttribute" type="uro:DmAttributePropertyType" substitutionGroup="frn:_GenericApplicationPropertyOfCityFurniture"/>
46
+ <xs:element name="frnFacilityAttribute" type="uro:FacilityAttributePropertyType" substitutionGroup="frn:_GenericApplicationPropertyOfCityFurniture"/>
47
+ <xs:element name="frnFacilityIdAttribute" type="uro:FacilityIdAttributePropertyType" substitutionGroup="frn:_GenericApplicationPropertyOfCityFurniture"/>
48
+ <xs:element name="frnFacilityTypeAttribute" type="uro:FacilityTypeAttributePropertyType" substitutionGroup="frn:_GenericApplicationPropertyOfCityFurniture"/>
49
+ <xs:element name="frnKeyValuePairAttribute" type="uro:KeyValuePairAttributePropertyType" substitutionGroup="frn:_GenericApplicationPropertyOfCityFurniture"/>
50
+ <xs:element name="ifcBoundarySurfaceAttribute" type="uro:IfcAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfBoundarySurface"/>
51
+ <xs:element name="ifcBuildingAttribute" type="uro:IfcAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
52
+ <xs:element name="ifcBuildingFurnitureAttribute" type="uro:IfcAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfBuildingFurniture"/>
53
+ <xs:element name="ifcBuildingInstallationAttribute" type="uro:IfcAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfBuildingInstallation"/>
54
+ <xs:element name="ifcBuildingStoreyAttribute" type="uro:IfcAttributePropertyType" substitutionGroup="grp:_GenericApplicationPropertyOfCityObjectGroup"/>
55
+ <xs:element name="ifcIntBuildingInstallationAttribute" type="uro:IfcAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfIntBuildingInstallation"/>
56
+ <xs:element name="ifcLandUseAttribute" type="uro:IfcAttributePropertyType" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse"/>
57
+ <xs:element name="ifcOpeningAttribute" type="uro:IfcAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfOpening"/>
58
+ <xs:element name="ifcRoomAttribute" type="uro:IfcAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfRoom"/>
59
+ <xs:element name="indoorBoundarySurfaceAttribute" type="uro:IndoorAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfBoundarySurface"/>
60
+ <xs:element name="indoorBuildingAttribute" type="uro:IndoorAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
61
+ <xs:element name="indoorFurnitureAttribute" type="uro:IndoorAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfBuildingFurniture"/>
62
+ <xs:element name="indoorIntInstallationAttribute" type="uro:IndoorAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfIntBuildingInstallation"/>
63
+ <xs:element name="indoorOpeningAttribute" type="uro:IndoorAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfOpening"/>
64
+ <xs:element name="indoorRoomAttribute" type="uro:IndoorAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfRoom"/>
65
+ <xs:element name="indoorStoreyAttribute" type="uro:IndoorAttributePropertyType" substitutionGroup="grp:_GenericApplicationPropertyOfCityObjectGroup"/>
66
+ <xs:element name="landUseDetailAttribute" type="uro:LandUseDetailAttributePropertyType" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse"/>
67
+ <xs:element name="language" type="gml:CodeType" substitutionGroup="grp:_GenericApplicationPropertyOfCityObjectGroup"/>
68
+ <xs:element name="largeCustomerFacilityAttribute" type="uro:LargeCustomerFacilityAttributePropertyType" substitutionGroup="bldg:_GenericApplicationPropertyOfAbstractBuilding"/>
69
+ <xs:element name="luseDataQualityAttribute" type="uro:DataQualityAttributePropertyType" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse"/>
70
+ <xs:element name="luseDmAttribute" type="uro:DmAttributePropertyType" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse"/>
71
+ <xs:element name="luseFacilityAttribute" type="uro:FacilityAttributePropertyType" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse"/>
72
+ <xs:element name="luseFacilityIdAttribute" type="uro:FacilityIdAttributePropertyType" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse"/>
73
+ <xs:element name="luseFacilityTypeAttribute" type="uro:FacilityTypeAttributePropertyType" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse"/>
74
+ <xs:element name="luseKeyValuePairAttribute" type="uro:KeyValuePairAttributePropertyType" substitutionGroup="luse:_GenericApplicationPropertyOfLandUse"/>
75
+ <xs:element name="railwayRouteAttribute" type="uro:RailwayRouteAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfRailway"/>
76
+ <xs:element name="railwayTrackAttribute" type="uro:RailwayTrackAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfTrafficArea"/>
77
+ <xs:element name="roadStatus" type="uro:RoadTypePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfRoad"/>
78
+ <xs:element name="roadStructureAttribute" type="uro:RoadStructureAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfRoad"/>
79
+ <xs:element name="squareUrbanPlanAttribute" type="uro:SquareUrbanPlanAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfSquare"/>
80
+ <xs:element name="trackAttribute" type="uro:TrackAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfTrack"/>
81
+ <xs:element name="trafficAreaStructureAttribute" type="uro:TrafficAreaStructureAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfTrafficArea"/>
82
+ <xs:element name="trafficVolumeAttribute" type="uro:TrafficVolumeAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfRoad"/>
83
+ <xs:element name="tranDataQualityAttribute" type="uro:DataQualityAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfTransportationComplex"/>
84
+ <xs:element name="tranDmAttribute" type="uro:DmAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfTransportationComplex"/>
85
+ <xs:element name="tranFacilityAttribute" type="uro:FacilityAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfTransportationComplex"/>
86
+ <xs:element name="tranFacilityIdAttribute" type="uro:FacilityIdAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfTransportationComplex"/>
87
+ <xs:element name="tranFacilityTypeAttribute" type="uro:FacilityTypeAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfTransportationComplex"/>
88
+ <xs:element name="tranKeyValuePairAttribute" type="uro:KeyValuePairAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfTransportationComplex"/>
89
+ <xs:element name="tranUsecaseAttribute" type="uro:TrafficObjectUsecaseAttributePropertyType" substitutionGroup="tran:_GenericApplicationPropertyOfTransportationComplex"/>
90
+ <xs:element name="tunBaseAttribute" type="uro:ConstructionBaseAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
91
+ <xs:element name="tunDataQualityAttribute" type="uro:DataQualityAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
92
+ <xs:element name="tunDisasterRiskAttribute" type="uro:DisasterRiskAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
93
+ <xs:element name="tunDmAttribute" type="uro:DmAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
94
+ <xs:element name="tunFacilityAttribute" type="uro:FacilityAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
95
+ <xs:element name="tunFacilityIdAttribute" type="uro:FacilityIdAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
96
+ <xs:element name="tunFacilityTypeAttribute" type="uro:FacilityTypeAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
97
+ <xs:element name="tunFunctionalAttribute" type="uro:TunnelFunctionalAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
98
+ <xs:element name="tunKeyValuePairAttribute" type="uro:KeyValuePairAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
99
+ <xs:element name="tunRiskAssessmentAttribute" type="uro:ConstructionRiskAssessmentAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
100
+ <xs:element name="tunStructureAttribute" type="uro:TunnelStructureAttributePropertyType" substitutionGroup="tun:_GenericApplicationPropertyOfAbstractTunnel"/>
101
+ <xs:element name="vegDataQualityAttribute" type="uro:DataQualityAttributePropertyType" substitutionGroup="veg:_GenericApplicationPropertyOfVegetationObject"/>
102
+ <xs:element name="vegDmAttribute" type="uro:DmAttributePropertyType" substitutionGroup="veg:_GenericApplicationPropertyOfVegetationObject"/>
103
+ <xs:element name="vegFacilityAttribute" type="uro:FacilityAttributePropertyType" substitutionGroup="veg:_GenericApplicationPropertyOfVegetationObject"/>
104
+ <xs:element name="vegFacilityIdAttribute" type="uro:FacilityIdAttributePropertyType" substitutionGroup="veg:_GenericApplicationPropertyOfVegetationObject"/>
105
+ <xs:element name="vegFacilityTypeAttribute" type="uro:FacilityTypeAttributePropertyType" substitutionGroup="veg:_GenericApplicationPropertyOfVegetationObject"/>
106
+ <xs:element name="vegKeyValuePairAttribute" type="uro:KeyValuePairAttributePropertyType" substitutionGroup="veg:_GenericApplicationPropertyOfVegetationObject"/>
107
+ <xs:element name="waterBodyDetailAttribute" type="uro:WaterBodyDetailAttributePropertyType" substitutionGroup="wtr:_GenericApplicationPropertyOfWaterBody"/>
108
+ <xs:element name="wtrDataQualityAttribute" type="uro:DataQualityAttributePropertyType" substitutionGroup="wtr:_GenericApplicationPropertyOfWaterBody"/>
109
+ <xs:element name="wtrDmAttribute" type="uro:DmAttributePropertyType" substitutionGroup="wtr:_GenericApplicationPropertyOfWaterBody"/>
110
+ <xs:element name="wtrFacilityAttribute" type="uro:FacilityAttributePropertyType" substitutionGroup="wtr:_GenericApplicationPropertyOfWaterBody"/>
111
+ <xs:element name="wtrFacilityIdAttribute" type="uro:FacilityIdAttributePropertyType" substitutionGroup="wtr:_GenericApplicationPropertyOfWaterBody"/>
112
+ <xs:element name="wtrFacilityTypeAttribute" type="uro:FacilityTypeAttributePropertyType" substitutionGroup="wtr:_GenericApplicationPropertyOfWaterBody"/>
113
+ <xs:element name="wtrKeyValuePairAttribute" type="uro:KeyValuePairAttributePropertyType" substitutionGroup="wtr:_GenericApplicationPropertyOfWaterBody"/>
114
+ <xs:element name="pointCloud" type="uro:AbstractPointCloudPropertyType" substitutionGroup="core:_GenericApplicationPropertyOfCityObject"/>
115
+ <!-- =================== 整形プログラムによる「_GenericApplicationPropertyOf」関係の追記 ↑  ================ -->
116
+ <!--XML Schema document created by ShapeChange - http://shapechange.net/-->
117
+ <xs:element name="AbstractConstruction" abstract="true" substitutionGroup="core:_CityObject" type="uro:AbstractConstructionType"/>
118
+ <xs:complexType name="AbstractConstructionType" abstract="true">
119
+ <xs:complexContent>
120
+ <xs:extension base="core:AbstractCityObjectType">
121
+ <xs:sequence>
122
+ <xs:element name="conditionOfConstruction" minOccurs="0" type="uro:ConditionOfConstructionValue"/>
123
+ <xs:element name="dateOfConstruction" minOccurs="0" type="xs:date"/>
124
+ <xs:element name="dateOfDemolition" minOccurs="0" type="xs:date"/>
125
+ <xs:element name="constructionEvent" maxOccurs="unbounded" minOccurs="0" type="uro:ConstructionEventPropertyType"/>
126
+ <xs:element name="elevation" maxOccurs="unbounded" minOccurs="0" type="uro:ElevationPropertyType"/>
127
+ <xs:element name="height" maxOccurs="unbounded" minOccurs="0" type="uro:HeightPropertyType"/>
128
+ <xs:element name="occupancy" maxOccurs="unbounded" minOccurs="0" type="uro:OccupancyPropertyType"/>
129
+ <xs:element name="consFacilityTypeAttribute" maxOccurs="unbounded" minOccurs="0" type="uro:FacilityTypeAttributePropertyType"/>
130
+ <xs:element name="consFacilityIdAttribute" minOccurs="0" type="uro:FacilityIdAttributePropertyType"/>
131
+ <xs:element name="consFacilityAttribute" maxOccurs="unbounded" minOccurs="0" type="uro:FacilityAttributePropertyType"/>
132
+ <xs:element name="consBaseAttribute" minOccurs="0" type="uro:ConstructionBaseAttributePropertyType"/>
133
+ <xs:element name="consStructureAttribute" minOccurs="0" type="uro:ConstructionStructureAttributePropertyType"/>
134
+ <xs:element name="consDisasterRiskAttribute" maxOccurs="unbounded" minOccurs="0" type="uro:DisasterRiskAttributePropertyType"/>
135
+ <xs:element name="consDmAttribute" maxOccurs="unbounded" minOccurs="0" type="uro:DmAttributePropertyType"/>
136
+ <xs:element name="consDataQualityAttribute" minOccurs="0" type="uro:DataQualityAttributePropertyType"/>
137
+ <xs:element name="consKeyValuePairAttribute" maxOccurs="unbounded" minOccurs="0" type="uro:KeyValuePairAttributePropertyType"/>
138
+ <xs:element name="lod0Geometry" minOccurs="0" type="gml:GeometryPropertyType"/>
139
+ <xs:element name="lod1Geometry" minOccurs="0" type="gml:GeometryPropertyType"/>
140
+ <xs:element name="lod2Geometry" minOccurs="0" type="gml:GeometryPropertyType"/>
141
+ <xs:element name="lod3Geometry" minOccurs="0" type="gml:GeometryPropertyType"/>
142
+ <xs:element name="lod4Geometry" minOccurs="0" type="gml:GeometryPropertyType"/>
143
+ <xs:element name="boundedBy" maxOccurs="unbounded" minOccurs="0" type="uro:_BoundarySurfacePropertyType"/>
144
+ <xs:element name="constructionInstallation" maxOccurs="unbounded" minOccurs="0" type="uro:ConstructionInstallationPropertyType"/>
145
+ </xs:sequence>
146
+ </xs:extension>
147
+ </xs:complexContent>
148
+ </xs:complexType>
149
+ <xs:complexType name="AbstractConstructionPropertyType">
150
+ <xs:sequence minOccurs="0">
151
+ <xs:element ref="uro:AbstractConstruction"/>
152
+ </xs:sequence>
153
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
154
+ </xs:complexType>
155
+ <xs:element name="AbstractPointCloud" abstract="true" substitutionGroup="gml:_Feature" type="uro:AbstractPointCloudType"/>
156
+ <xs:complexType name="AbstractPointCloudType" abstract="true">
157
+ <xs:complexContent>
158
+ <xs:extension base="gml:AbstractFeatureType">
159
+ <xs:sequence/>
160
+ </xs:extension>
161
+ </xs:complexContent>
162
+ </xs:complexType>
163
+ <xs:complexType name="AbstractPointCloudPropertyType">
164
+ <xs:sequence minOccurs="0">
165
+ <xs:element ref="uro:AbstractPointCloud"/>
166
+ </xs:sequence>
167
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
168
+ </xs:complexType>
169
+ <xs:element name="Appurtenance" substitutionGroup="uro:UtilityNode" type="uro:AppurtenanceType"/>
170
+ <xs:complexType name="AppurtenanceType">
171
+ <xs:complexContent>
172
+ <xs:extension base="uro:UtilityNodeType">
173
+ <xs:sequence>
174
+ <xs:element name="appurtenanceType" minOccurs="0" type="gml:CodeType"/>
175
+ </xs:sequence>
176
+ </xs:extension>
177
+ </xs:complexContent>
178
+ </xs:complexType>
179
+ <xs:complexType name="AppurtenancePropertyType">
180
+ <xs:sequence minOccurs="0">
181
+ <xs:element ref="uro:Appurtenance"/>
182
+ </xs:sequence>
183
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
184
+ </xs:complexType>
185
+ <xs:element name="BridgeFunctionalAttribute" type="uro:BridgeFunctionalAttributeType"/>
186
+ <xs:complexType name="BridgeFunctionalAttributeType">
187
+ <xs:sequence>
188
+ <xs:element name="directionType" minOccurs="0" type="gml:CodeType"/>
189
+ <xs:element name="userType" minOccurs="0" type="gml:CodeType"/>
190
+ </xs:sequence>
191
+ </xs:complexType>
192
+ <xs:complexType name="BridgeFunctionalAttributePropertyType">
193
+ <xs:sequence>
194
+ <xs:element ref="uro:BridgeFunctionalAttribute"/>
195
+ </xs:sequence>
196
+ </xs:complexType>
197
+ <xs:element name="BridgeStructureAttribute" type="uro:BridgeStructureAttributeType"/>
198
+ <xs:complexType name="BridgeStructureAttributeType">
199
+ <xs:sequence>
200
+ <xs:element name="material" minOccurs="0" type="gml:CodeType"/>
201
+ <xs:element name="bridgeType" minOccurs="0" type="gml:CodeType"/>
202
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
203
+ <xs:element name="width" minOccurs="0" type="gml:LengthType"/>
204
+ <xs:element name="area" minOccurs="0" type="gml:MeasureType"/>
205
+ <xs:element name="weightRestriction" minOccurs="0" type="gml:MeasureType"/>
206
+ <xs:element name="heightRestriction" minOccurs="0" type="gml:LengthType"/>
207
+ <xs:element name="widthRestriction" minOccurs="0" type="gml:LengthType"/>
208
+ <xs:element name="underGirderHeight" minOccurs="0" type="gml:LengthType"/>
209
+ <xs:element name="slopeType" minOccurs="0" type="gml:CodeType"/>
210
+ <xs:element name="escalator" minOccurs="0" type="xs:boolean"/>
211
+ </xs:sequence>
212
+ </xs:complexType>
213
+ <xs:complexType name="BridgeStructureAttributePropertyType">
214
+ <xs:sequence>
215
+ <xs:element ref="uro:BridgeStructureAttribute"/>
216
+ </xs:sequence>
217
+ </xs:complexType>
218
+ <xs:element name="BuildingAttribute" abstract="true" type="uro:BuildingAttributeType"/>
219
+ <xs:complexType name="BuildingAttributeType" abstract="true">
220
+ <xs:sequence/>
221
+ </xs:complexType>
222
+ <xs:complexType name="BuildingAttributePropertyType">
223
+ <xs:sequence>
224
+ <xs:element ref="uro:BuildingAttribute"/>
225
+ </xs:sequence>
226
+ </xs:complexType>
227
+ <xs:element name="BuildingDetailAttribute" substitutionGroup="uro:BuildingAttribute" type="uro:BuildingDetailAttributeType"/>
228
+ <xs:complexType name="BuildingDetailAttributeType">
229
+ <xs:complexContent>
230
+ <xs:extension base="uro:BuildingAttributeType">
231
+ <xs:sequence>
232
+ <xs:element name="serialNumberOfBuildingCertification" minOccurs="0" type="xs:string"/>
233
+ <xs:element name="siteArea" minOccurs="0" type="gml:MeasureType"/>
234
+ <xs:element name="totalFloorArea" minOccurs="0" type="gml:MeasureType"/>
235
+ <xs:element name="buildingFootprintArea" minOccurs="0" type="gml:MeasureType"/>
236
+ <xs:element name="buildingRoofEdgeArea" minOccurs="0" type="gml:MeasureType"/>
237
+ <xs:element name="developmentArea" minOccurs="0" type="gml:MeasureType"/>
238
+ <xs:element name="buildingStructureType" minOccurs="0" type="gml:CodeType"/>
239
+ <xs:element name="buildingStructureOrgType" minOccurs="0" type="gml:CodeType"/>
240
+ <xs:element name="fireproofStructureType" minOccurs="0" type="gml:CodeType"/>
241
+ <xs:element name="implementingBody" minOccurs="0" type="xs:string"/>
242
+ <xs:element name="urbanPlanType" minOccurs="0" type="gml:CodeType"/>
243
+ <xs:element name="areaClassificationType" minOccurs="0" type="gml:CodeType"/>
244
+ <xs:element name="districtsAndZonesType" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
245
+ <xs:element name="landUseType" minOccurs="0" type="gml:CodeType"/>
246
+ <xs:element name="reference" minOccurs="0" type="xs:string"/>
247
+ <xs:element name="majorUsage" minOccurs="0" type="gml:CodeType"/>
248
+ <xs:element name="majorUsage2" minOccurs="0" type="gml:CodeType"/>
249
+ <xs:element name="orgUsage" minOccurs="0" type="gml:CodeType"/>
250
+ <xs:element name="orgUsage2" minOccurs="0" type="gml:CodeType"/>
251
+ <xs:element name="detailedUsage" minOccurs="0" type="gml:CodeType"/>
252
+ <xs:element name="detailedUsage2" minOccurs="0" type="gml:CodeType"/>
253
+ <xs:element name="detailedUsage3" minOccurs="0" type="gml:CodeType"/>
254
+ <xs:element name="groundFloorUsage" minOccurs="0" type="gml:CodeType"/>
255
+ <xs:element name="secondFloorUsage" minOccurs="0" type="gml:CodeType"/>
256
+ <xs:element name="thirdFloorUsage" minOccurs="0" type="gml:CodeType"/>
257
+ <xs:element name="basementUsage" minOccurs="0" type="gml:CodeType"/>
258
+ <xs:element name="basementFirstUsage" minOccurs="0" type="gml:CodeType"/>
259
+ <xs:element name="basementSecondUsage" minOccurs="0" type="gml:CodeType"/>
260
+ <xs:element name="vacancy" minOccurs="0" type="gml:CodeType"/>
261
+ <xs:element name="buildingCoverageRate" minOccurs="0" type="xs:double"/>
262
+ <xs:element name="floorAreaRate" minOccurs="0" type="xs:double"/>
263
+ <xs:element name="specifiedBuildingCoverageRate" minOccurs="0" type="xs:double"/>
264
+ <xs:element name="specifiedFloorAreaRate" minOccurs="0" type="xs:double"/>
265
+ <xs:element name="standardFloorAreaRate" minOccurs="0" type="xs:double"/>
266
+ <xs:element name="buildingHeight" minOccurs="0" type="gml:LengthType"/>
267
+ <xs:element name="eaveHeight" minOccurs="0" type="gml:LengthType"/>
268
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
269
+ <xs:element name="surveyYear" type="xs:gYear"/>
270
+ </xs:sequence>
271
+ </xs:extension>
272
+ </xs:complexContent>
273
+ </xs:complexType>
274
+ <xs:complexType name="BuildingDetailAttributePropertyType">
275
+ <xs:sequence>
276
+ <xs:element ref="uro:BuildingDetailAttribute"/>
277
+ </xs:sequence>
278
+ </xs:complexType>
279
+ <xs:element name="BuildingIDAttribute" substitutionGroup="uro:BuildingAttribute" type="uro:BuildingIDAttributeType"/>
280
+ <xs:complexType name="BuildingIDAttributeType">
281
+ <xs:complexContent>
282
+ <xs:extension base="uro:BuildingAttributeType">
283
+ <xs:sequence>
284
+ <xs:element name="buildingID" type="xs:string"/>
285
+ <xs:element name="branchID" minOccurs="0" type="xs:integer"/>
286
+ <xs:element name="partID" minOccurs="0" type="xs:integer"/>
287
+ <xs:element name="prefecture" minOccurs="0" type="gml:CodeType"/>
288
+ <xs:element name="city" type="gml:CodeType"/>
289
+ </xs:sequence>
290
+ </xs:extension>
291
+ </xs:complexContent>
292
+ </xs:complexType>
293
+ <xs:complexType name="BuildingIDAttributePropertyType">
294
+ <xs:sequence>
295
+ <xs:element ref="uro:BuildingIDAttribute"/>
296
+ </xs:sequence>
297
+ </xs:complexType>
298
+ <xs:element name="BuildingUsecaseAttribute" substitutionGroup="uro:BuildingAttribute" type="uro:BuildingUsecaseAttributeType"/>
299
+ <xs:complexType name="BuildingUsecaseAttributeType">
300
+ <xs:complexContent>
301
+ <xs:extension base="uro:BuildingAttributeType">
302
+ <xs:sequence>
303
+ <xs:element name="isTemporal" minOccurs="0" type="gml:CodeType"/>
304
+ <xs:element name="floorHeight" minOccurs="0" type="gml:LengthType"/>
305
+ <xs:element name="isGroundFloorOpen" minOccurs="0" type="xs:boolean"/>
306
+ </xs:sequence>
307
+ </xs:extension>
308
+ </xs:complexContent>
309
+ </xs:complexType>
310
+ <xs:complexType name="BuildingUsecaseAttributePropertyType">
311
+ <xs:sequence>
312
+ <xs:element ref="uro:BuildingUsecaseAttribute"/>
313
+ </xs:sequence>
314
+ </xs:complexType>
315
+ <xs:element name="Cable" substitutionGroup="uro:UtilityLink" type="uro:CableType"/>
316
+ <xs:complexType name="CableType">
317
+ <xs:complexContent>
318
+ <xs:extension base="uro:UtilityLinkType">
319
+ <xs:sequence>
320
+ <xs:element name="columns" minOccurs="0" type="xs:integer"/>
321
+ <xs:element name="rows" minOccurs="0" type="xs:integer"/>
322
+ <xs:element name="cables" minOccurs="0" type="xs:integer"/>
323
+ </xs:sequence>
324
+ </xs:extension>
325
+ </xs:complexContent>
326
+ </xs:complexType>
327
+ <xs:complexType name="CablePropertyType">
328
+ <xs:sequence minOccurs="0">
329
+ <xs:element ref="uro:Cable"/>
330
+ </xs:sequence>
331
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
332
+ </xs:complexType>
333
+ <xs:element name="CargoHandlingFacility" substitutionGroup="uro:PortAttribute" type="uro:CargoHandlingFacilityType"/>
334
+ <xs:complexType name="CargoHandlingFacilityType">
335
+ <xs:complexContent>
336
+ <xs:extension base="uro:PortAttributeType">
337
+ <xs:sequence>
338
+ <xs:element name="mainCargo" minOccurs="0" type="gml:CodeType"/>
339
+ <xs:element name="mooringFacility" minOccurs="0" type="xs:string"/>
340
+ <xs:element name="liftableLoad" minOccurs="0" type="gml:MeasureType"/>
341
+ <xs:element name="ability" minOccurs="0" type="xs:integer"/>
342
+ <xs:element name="packingName" minOccurs="0" type="gml:CodeType"/>
343
+ <xs:element name="acquisitionYear" minOccurs="0" type="xs:gYear"/>
344
+ <xs:element name="innerTotalFloorArea" minOccurs="0" type="gml:MeasureType"/>
345
+ <xs:element name="innerOfSiteArea" minOccurs="0" type="gml:MeasureType"/>
346
+ <xs:element name="outerOfTotalFloorArea" minOccurs="0" type="gml:MeasureType"/>
347
+ <xs:element name="outerSiteArea" minOccurs="0" type="gml:MeasureType"/>
348
+ <xs:element name="mainMaterial" minOccurs="0" type="gml:CodeType"/>
349
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
350
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
351
+ </xs:sequence>
352
+ </xs:extension>
353
+ </xs:complexContent>
354
+ </xs:complexType>
355
+ <xs:complexType name="CargoHandlingFacilityPropertyType">
356
+ <xs:sequence>
357
+ <xs:element ref="uro:CargoHandlingFacility"/>
358
+ </xs:sequence>
359
+ </xs:complexType>
360
+ <xs:element name="CircularCurveType" type="uro:CircularCurveTypeType"/>
361
+ <xs:complexType name="CircularCurveTypeType">
362
+ <xs:sequence>
363
+ <xs:element name="radius" type="gml:LengthType"/>
364
+ <xs:element name="intersection" type="xs:double"/>
365
+ <xs:element name="cutLength" type="gml:LengthType"/>
366
+ <xs:element name="curveLength" type="gml:LengthType"/>
367
+ </xs:sequence>
368
+ </xs:complexType>
369
+ <xs:complexType name="CircularCurveTypePropertyType">
370
+ <xs:sequence>
371
+ <xs:element ref="uro:CircularCurveType"/>
372
+ </xs:sequence>
373
+ </xs:complexType>
374
+ <xs:element name="CityFurnitureAttribute" abstract="true" type="uro:CityFurnitureAttributeType"/>
375
+ <xs:complexType name="CityFurnitureAttributeType" abstract="true">
376
+ <xs:sequence/>
377
+ </xs:complexType>
378
+ <xs:complexType name="CityFurnitureAttributePropertyType">
379
+ <xs:sequence>
380
+ <xs:element ref="uro:CityFurnitureAttribute"/>
381
+ </xs:sequence>
382
+ </xs:complexType>
383
+ <xs:element name="CityFurnitureDetailAttribute" substitutionGroup="uro:CityFurnitureAttribute" type="uro:CityFurnitureDetailAttributeType"/>
384
+ <xs:complexType name="CityFurnitureDetailAttributeType">
385
+ <xs:complexContent>
386
+ <xs:extension base="uro:CityFurnitureAttributeType">
387
+ <xs:sequence>
388
+ <xs:element name="facilityType" minOccurs="0" type="gml:CodeType"/>
389
+ <xs:element name="description" minOccurs="0" type="xs:string"/>
390
+ </xs:sequence>
391
+ </xs:extension>
392
+ </xs:complexContent>
393
+ </xs:complexType>
394
+ <xs:complexType name="CityFurnitureDetailAttributePropertyType">
395
+ <xs:sequence>
396
+ <xs:element ref="uro:CityFurnitureDetailAttribute"/>
397
+ </xs:sequence>
398
+ </xs:complexType>
399
+ <xs:element name="ClosureSurface" substitutionGroup="uro:_BoundarySurface" type="uro:ClosureSurfaceType"/>
400
+ <xs:complexType name="ClosureSurfaceType">
401
+ <xs:complexContent>
402
+ <xs:extension base="uro:_BoundarySurfaceType">
403
+ <xs:sequence/>
404
+ </xs:extension>
405
+ </xs:complexContent>
406
+ </xs:complexType>
407
+ <xs:complexType name="ClosureSurfacePropertyType">
408
+ <xs:sequence minOccurs="0">
409
+ <xs:element ref="uro:ClosureSurface"/>
410
+ </xs:sequence>
411
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
412
+ </xs:complexType>
413
+ <xs:simpleType name="ConditionOfConstructionValue">
414
+ <xs:restriction base="xs:string">
415
+ <xs:enumeration value="declined"/>
416
+ <xs:enumeration value="demolished"/>
417
+ <xs:enumeration value="functional"/>
418
+ <xs:enumeration value="projected"/>
419
+ <xs:enumeration value="underConstruction"/>
420
+ </xs:restriction>
421
+ </xs:simpleType>
422
+ <xs:element name="ConstructionBaseAttribute" type="uro:ConstructionBaseAttributeType"/>
423
+ <xs:complexType name="ConstructionBaseAttributeType">
424
+ <xs:sequence>
425
+ <xs:element name="adminType" minOccurs="0" type="gml:CodeType"/>
426
+ <xs:element name="administrator" minOccurs="0" type="xs:string"/>
427
+ <xs:element name="adminOffice" minOccurs="0" type="xs:string"/>
428
+ <xs:element name="operatorType" minOccurs="0" type="gml:CodeType"/>
429
+ <xs:element name="installerType" minOccurs="0" type="gml:CodeType"/>
430
+ <xs:element name="installer" minOccurs="0" type="xs:string"/>
431
+ <xs:element name="structureOrdinance" minOccurs="0" type="xs:string"/>
432
+ <xs:element name="specification" minOccurs="0" type="xs:string"/>
433
+ <xs:element name="kana" minOccurs="0" type="xs:string"/>
434
+ <xs:element name="constructionStartYear" minOccurs="0" type="xs:gYear"/>
435
+ <xs:element name="completionYear" minOccurs="0" type="xs:gYear"/>
436
+ <xs:element name="facilityAge" minOccurs="0" type="xs:integer"/>
437
+ <xs:element name="update" minOccurs="0" type="xs:date"/>
438
+ <xs:element name="purpose" minOccurs="0" type="gml:CodeType"/>
439
+ </xs:sequence>
440
+ </xs:complexType>
441
+ <xs:complexType name="ConstructionBaseAttributePropertyType">
442
+ <xs:sequence>
443
+ <xs:element ref="uro:ConstructionBaseAttribute"/>
444
+ </xs:sequence>
445
+ </xs:complexType>
446
+ <xs:element name="ConstructionEvent" type="uro:ConstructionEventType"/>
447
+ <xs:complexType name="ConstructionEventType">
448
+ <xs:sequence>
449
+ <xs:element name="event" type="gml:CodeType"/>
450
+ <xs:element name="dateOfEvent" type="xs:date"/>
451
+ <xs:element name="description" minOccurs="0" type="xs:string"/>
452
+ </xs:sequence>
453
+ </xs:complexType>
454
+ <xs:complexType name="ConstructionEventPropertyType">
455
+ <xs:sequence>
456
+ <xs:element ref="uro:ConstructionEvent"/>
457
+ </xs:sequence>
458
+ </xs:complexType>
459
+ <xs:element name="ConstructionInstallation" substitutionGroup="core:_CityObject" type="uro:ConstructionInstallationType"/>
460
+ <xs:complexType name="ConstructionInstallationType">
461
+ <xs:complexContent>
462
+ <xs:extension base="core:AbstractCityObjectType">
463
+ <xs:sequence>
464
+ <xs:element name="class" minOccurs="0" type="gml:CodeType"/>
465
+ <xs:element name="function" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
466
+ <xs:element name="usage" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
467
+ <xs:element name="lod2Geometry" minOccurs="0" type="gml:GeometryPropertyType"/>
468
+ <xs:element name="lod3Geometry" minOccurs="0" type="gml:GeometryPropertyType"/>
469
+ </xs:sequence>
470
+ </xs:extension>
471
+ </xs:complexContent>
472
+ </xs:complexType>
473
+ <xs:complexType name="ConstructionInstallationPropertyType">
474
+ <xs:sequence minOccurs="0">
475
+ <xs:element ref="uro:ConstructionInstallation"/>
476
+ </xs:sequence>
477
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
478
+ </xs:complexType>
479
+ <xs:element name="ConstructionRiskAssessmentAttribute" type="uro:ConstructionRiskAssessmentAttributeType"/>
480
+ <xs:complexType name="ConstructionRiskAssessmentAttributeType">
481
+ <xs:sequence>
482
+ <xs:element name="surveyYear" minOccurs="0" type="xs:gYear"/>
483
+ <xs:element name="riskType" type="gml:CodeType"/>
484
+ <xs:element name="status" minOccurs="0" type="gml:CodeType"/>
485
+ <xs:element name="referenceDate" type="xs:date"/>
486
+ </xs:sequence>
487
+ </xs:complexType>
488
+ <xs:complexType name="ConstructionRiskAssessmentAttributePropertyType">
489
+ <xs:sequence>
490
+ <xs:element ref="uro:ConstructionRiskAssessmentAttribute"/>
491
+ </xs:sequence>
492
+ </xs:complexType>
493
+ <xs:element name="ConstructionStructureAttribute" type="uro:ConstructionStructureAttributeType"/>
494
+ <xs:complexType name="ConstructionStructureAttributeType">
495
+ <xs:sequence>
496
+ <xs:element name="structureType" minOccurs="0" type="gml:CodeType"/>
497
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
498
+ <xs:element name="width" minOccurs="0" type="gml:LengthType"/>
499
+ <xs:element name="depth" minOccurs="0" type="gml:LengthType"/>
500
+ <xs:element name="volume" minOccurs="0" type="gml:MeasureType"/>
501
+ </xs:sequence>
502
+ </xs:complexType>
503
+ <xs:complexType name="ConstructionStructureAttributePropertyType">
504
+ <xs:sequence>
505
+ <xs:element ref="uro:ConstructionStructureAttribute"/>
506
+ </xs:sequence>
507
+ </xs:complexType>
508
+ <xs:element name="ControlPoint" type="uro:ControlPointType"/>
509
+ <xs:complexType name="ControlPointType">
510
+ <xs:sequence>
511
+ <xs:element name="startPost" minOccurs="0" type="xs:string"/>
512
+ <xs:element name="endPost" minOccurs="0" type="xs:string"/>
513
+ <xs:element name="function" type="gml:CodeType"/>
514
+ <xs:element name="parameter" type="uro:ControlPointTypePropertyType"/>
515
+ <xs:element name="startPoint" minOccurs="0" type="gml:PointPropertyType"/>
516
+ <xs:element name="endPoint" minOccurs="0" type="gml:PointPropertyType"/>
517
+ </xs:sequence>
518
+ </xs:complexType>
519
+ <xs:complexType name="ControlPointPropertyType">
520
+ <xs:sequence>
521
+ <xs:element ref="uro:ControlPoint"/>
522
+ </xs:sequence>
523
+ </xs:complexType>
524
+ <xs:element name="ControlPointType" type="uro:ControlPointTypeType"/>
525
+ <xs:complexType name="ControlPointTypeType">
526
+ <xs:choice>
527
+ <xs:element name="circularCurve" type="uro:CircularCurveTypePropertyType"/>
528
+ <xs:element name="transitionCurve" type="uro:TransitionCurveTypePropertyType"/>
529
+ <xs:element name="slopeType" type="uro:SlopeTypePropertyType"/>
530
+ <xs:element name="verticalCurve" type="uro:VerticalCurveTypePropertyType"/>
531
+ </xs:choice>
532
+ </xs:complexType>
533
+ <xs:complexType name="ControlPointTypePropertyType">
534
+ <xs:sequence>
535
+ <xs:element ref="uro:ControlPointType"/>
536
+ </xs:sequence>
537
+ </xs:complexType>
538
+ <xs:element name="CountermeasuresCost" type="uro:CountermeasuresCostType"/>
539
+ <xs:complexType name="CountermeasuresCostType">
540
+ <xs:sequence>
541
+ <xs:element name="cost" minOccurs="0" type="xs:integer"/>
542
+ <xs:element name="costUnit" type="xs:string"/>
543
+ </xs:sequence>
544
+ </xs:complexType>
545
+ <xs:complexType name="CountermeasuresCostPropertyType">
546
+ <xs:sequence>
547
+ <xs:element ref="uro:CountermeasuresCost"/>
548
+ </xs:sequence>
549
+ </xs:complexType>
550
+ <xs:element name="CyberportMarinaAndPBS" substitutionGroup="uro:PortAttribute" type="uro:CyberportMarinaAndPBSType"/>
551
+ <xs:complexType name="CyberportMarinaAndPBSType">
552
+ <xs:complexContent>
553
+ <xs:extension base="uro:PortAttributeType">
554
+ <xs:sequence>
555
+ <xs:element name="geologicalType" minOccurs="0" type="gml:CodeType"/>
556
+ <xs:element name="obstructingStructures" minOccurs="0" type="xs:string"/>
557
+ <xs:element name="mainPartLength" minOccurs="0" type="gml:LengthType"/>
558
+ <xs:element name="totalLength" minOccurs="0" type="gml:LengthType"/>
559
+ <xs:element name="waveDissipatorLength" minOccurs="0" type="gml:LengthType"/>
560
+ <xs:element name="facilityWidth" minOccurs="0" type="gml:LengthType"/>
561
+ <xs:element name="apronWidth" minOccurs="0" type="gml:LengthType"/>
562
+ <xs:element name="restrictionStructure" minOccurs="0" type="xs:string"/>
563
+ <xs:element name="plannedDepth" minOccurs="0" type="gml:LengthType"/>
564
+ <xs:element name="currentDepth" minOccurs="0" type="gml:LengthType"/>
565
+ <xs:element name="innerTotalFloorArea" minOccurs="0" type="gml:MeasureType"/>
566
+ <xs:element name="innerOfSiteArea" minOccurs="0" type="gml:MeasureType"/>
567
+ <xs:element name="outerOfTotalFloorArea" minOccurs="0" type="gml:MeasureType"/>
568
+ <xs:element name="outerSiteArea" minOccurs="0" type="gml:MeasureType"/>
569
+ <xs:element name="ceilingHeight" minOccurs="0" type="gml:LengthType"/>
570
+ <xs:element name="gravityResistant" minOccurs="0" type="gml:MeasureType"/>
571
+ <xs:element name="form" minOccurs="0" type="gml:CodeType"/>
572
+ <xs:element name="areaType" minOccurs="0" type="gml:CodeType"/>
573
+ <xs:element name="mainVessels" minOccurs="0" type="gml:CodeType"/>
574
+ <xs:element name="isDredged" minOccurs="0" type="xs:boolean"/>
575
+ <xs:element name="mooringPostWeight" minOccurs="0" type="gml:MeasureType"/>
576
+ <xs:element name="numberOfMooringPosts" minOccurs="0" type="xs:integer"/>
577
+ <xs:element name="resistantMaterial" minOccurs="0" type="xs:integer"/>
578
+ <xs:element name="lighting" minOccurs="0" type="xs:integer"/>
579
+ <xs:element name="stairs" minOccurs="0" type="xs:integer"/>
580
+ <xs:element name="lifesaving" minOccurs="0" type="xs:string"/>
581
+ <xs:element name="lifesavingNumber" minOccurs="0" type="xs:integer"/>
582
+ <xs:element name="bumper" minOccurs="0" type="gml:LengthType"/>
583
+ <xs:element name="numberOfVehicleBoardings" minOccurs="0" type="xs:integer"/>
584
+ <xs:element name="vehicleBoardingWidth" minOccurs="0" type="gml:LengthType"/>
585
+ <xs:element name="shipType" minOccurs="0" type="xs:string"/>
586
+ <xs:element name="numberOfSeats" minOccurs="0" type="xs:integer"/>
587
+ <xs:element name="mainCargo" minOccurs="0" type="gml:CodeType"/>
588
+ <xs:element name="storageCapacity" minOccurs="0" type="xs:integer"/>
589
+ <xs:element name="storageCapacityUnit" minOccurs="0" type="gml:CodeType"/>
590
+ <xs:element name="structureType" minOccurs="0" type="gml:CodeType"/>
591
+ <xs:element name="mainMaterial" minOccurs="0" type="gml:CodeType"/>
592
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
593
+ <xs:element name="subsidy" minOccurs="0" type="xs:integer"/>
594
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
595
+ </xs:sequence>
596
+ </xs:extension>
597
+ </xs:complexContent>
598
+ </xs:complexType>
599
+ <xs:complexType name="CyberportMarinaAndPBSPropertyType">
600
+ <xs:sequence>
601
+ <xs:element ref="uro:CyberportMarinaAndPBS"/>
602
+ </xs:sequence>
603
+ </xs:complexType>
604
+ <xs:element name="DamAttribute" substitutionGroup="uro:ConstructionStructureAttribute" type="uro:DamAttributeType"/>
605
+ <xs:complexType name="DamAttributeType">
606
+ <xs:complexContent>
607
+ <xs:extension base="uro:ConstructionStructureAttributeType">
608
+ <xs:sequence>
609
+ <xs:element name="damCode" minOccurs="0" type="gml:CodeType"/>
610
+ <xs:element name="totalWaterStorage" minOccurs="0" type="gml:MeasureType"/>
611
+ </xs:sequence>
612
+ </xs:extension>
613
+ </xs:complexContent>
614
+ </xs:complexType>
615
+ <xs:complexType name="DamAttributePropertyType">
616
+ <xs:sequence>
617
+ <xs:element ref="uro:DamAttribute"/>
618
+ </xs:sequence>
619
+ </xs:complexType>
620
+ <xs:element name="DataQualityAttribute" type="uro:DataQualityAttributeType"/>
621
+ <xs:complexType name="DataQualityAttributeType">
622
+ <xs:sequence>
623
+ <xs:element name="geometrySrcDescLod0" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
624
+ <xs:element name="geometrySrcDescLod1" maxOccurs="unbounded" type="gml:CodeType"/>
625
+ <xs:element name="geometrySrcDescLod2" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
626
+ <xs:element name="geometrySrcDescLod3" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
627
+ <xs:element name="geometrySrcDescLod4" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
628
+ <xs:element name="thematicSrcDesc" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
629
+ <xs:element name="appearanceSrcDescLod0" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
630
+ <xs:element name="appearanceSrcDescLod1" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
631
+ <xs:element name="appearanceSrcDescLod2" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
632
+ <xs:element name="appearanceSrcDescLod3" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
633
+ <xs:element name="appearanceSrcDescLod4" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
634
+ <xs:element name="lodType" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
635
+ <xs:element name="lod1HeightType" minOccurs="0" type="gml:CodeType"/>
636
+ <xs:element name="tranDataAcquisition" minOccurs="0" type="xs:string"/>
637
+ <xs:element name="publicSurveyDataQualityAttribute" minOccurs="0" type="uro:PublicSurveyDataQualityAttributePropertyType"/>
638
+ </xs:sequence>
639
+ </xs:complexType>
640
+ <xs:complexType name="DataQualityAttributePropertyType">
641
+ <xs:sequence>
642
+ <xs:element ref="uro:DataQualityAttribute"/>
643
+ </xs:sequence>
644
+ </xs:complexType>
645
+ <xs:element name="DisasterRiskAttribute" abstract="true" type="uro:DisasterRiskAttributeType"/>
646
+ <xs:complexType name="DisasterRiskAttributeType" abstract="true">
647
+ <xs:sequence>
648
+ <xs:element name="description" type="gml:CodeType"/>
649
+ </xs:sequence>
650
+ </xs:complexType>
651
+ <xs:complexType name="DisasterRiskAttributePropertyType">
652
+ <xs:sequence>
653
+ <xs:element ref="uro:DisasterRiskAttribute"/>
654
+ </xs:sequence>
655
+ </xs:complexType>
656
+ <xs:element name="DmAnnotation" substitutionGroup="uro:DmAttribute" type="uro:DmAnnotationType"/>
657
+ <xs:complexType name="DmAnnotationType">
658
+ <xs:complexContent>
659
+ <xs:extension base="uro:DmAttributeType">
660
+ <xs:sequence>
661
+ <xs:element name="geometryType" type="gml:CodeType"/>
662
+ <xs:element name="shapeType" type="gml:CodeType"/>
663
+ <xs:element name="label" type="xs:string"/>
664
+ <xs:element name="isVertical" type="xs:boolean"/>
665
+ <xs:element name="size" type="xs:integer"/>
666
+ <xs:element name="orientation" type="xs:integer"/>
667
+ <xs:element name="linewidth" type="xs:integer"/>
668
+ <xs:element name="spacing" type="xs:integer"/>
669
+ <xs:element name="lod0anchorPoint" type="gml:GeometryPropertyType"/>
670
+ </xs:sequence>
671
+ </xs:extension>
672
+ </xs:complexContent>
673
+ </xs:complexType>
674
+ <xs:complexType name="DmAnnotationPropertyType">
675
+ <xs:sequence>
676
+ <xs:element ref="uro:DmAnnotation"/>
677
+ </xs:sequence>
678
+ </xs:complexType>
679
+ <xs:element name="DmAttribute" abstract="true" type="uro:DmAttributeType"/>
680
+ <xs:complexType name="DmAttributeType" abstract="true">
681
+ <xs:sequence>
682
+ <xs:element name="dmCode" type="gml:CodeType"/>
683
+ <xs:element name="meshCode" minOccurs="0" type="gml:CodeType"/>
684
+ <xs:element name="dmElement" minOccurs="0" type="uro:DmElementPropertyType"/>
685
+ </xs:sequence>
686
+ </xs:complexType>
687
+ <xs:complexType name="DmAttributePropertyType">
688
+ <xs:sequence>
689
+ <xs:element ref="uro:DmAttribute"/>
690
+ </xs:sequence>
691
+ </xs:complexType>
692
+ <xs:element name="DmElement" type="uro:DmElementType"/>
693
+ <xs:complexType name="DmElementType">
694
+ <xs:sequence>
695
+ <xs:element name="locationType" minOccurs="0" type="gml:CodeType"/>
696
+ <xs:element name="infoType" minOccurs="0" type="gml:CodeType"/>
697
+ <xs:element name="elementKey" minOccurs="0" type="xs:string"/>
698
+ <xs:element name="hierarchyLevel" minOccurs="0" type="xs:string"/>
699
+ <xs:element name="dataType" minOccurs="0" type="gml:CodeType"/>
700
+ <xs:element name="annotationType" minOccurs="0" type="gml:CodeType"/>
701
+ <xs:element name="precisionType" minOccurs="0" type="gml:CodeType"/>
702
+ <xs:element name="dislocationType" minOccurs="0" type="gml:CodeType"/>
703
+ <xs:element name="breakType" minOccurs="0" type="gml:CodeType"/>
704
+ <xs:element name="attributeValue" minOccurs="0" type="xs:string"/>
705
+ <xs:element name="attributeType" minOccurs="0" type="gml:CodeType"/>
706
+ <xs:element name="attributeValueType" minOccurs="0" type="xs:string"/>
707
+ <xs:element name="creationDate" minOccurs="0" type="xs:gYearMonth"/>
708
+ <xs:element name="updateDate" minOccurs="0" type="xs:gYearMonth"/>
709
+ <xs:element name="terminationDate" minOccurs="0" type="xs:gYearMonth"/>
710
+ <xs:element name="freeSpace" minOccurs="0" type="xs:string"/>
711
+ </xs:sequence>
712
+ </xs:complexType>
713
+ <xs:complexType name="DmElementPropertyType">
714
+ <xs:sequence>
715
+ <xs:element ref="uro:DmElement"/>
716
+ </xs:sequence>
717
+ </xs:complexType>
718
+ <xs:element name="DmGeometricAttribute" substitutionGroup="uro:DmAttribute" type="uro:DmGeometricAttributeType"/>
719
+ <xs:complexType name="DmGeometricAttributeType">
720
+ <xs:complexContent>
721
+ <xs:extension base="uro:DmAttributeType">
722
+ <xs:sequence>
723
+ <xs:element name="geometryType" type="gml:CodeType"/>
724
+ <xs:element name="mapLevel" type="gml:CodeType"/>
725
+ <xs:element name="shapeType" type="gml:CodeType"/>
726
+ <xs:element name="visibility" minOccurs="0" type="xs:boolean"/>
727
+ <xs:element name="is3d" minOccurs="0" type="xs:boolean"/>
728
+ <xs:element name="isInstallation" minOccurs="0" type="xs:boolean"/>
729
+ <xs:element name="isEdited" minOccurs="0" type="xs:boolean"/>
730
+ <xs:element name="isSupplementarySymbol" minOccurs="0" type="xs:boolean"/>
731
+ <xs:element name="angle" minOccurs="0" type="xs:double"/>
732
+ <xs:element name="elevation" minOccurs="0" type="gml:LengthType"/>
733
+ <xs:element name="lod0Geometry" minOccurs="0" type="gml:GeometryPropertyType"/>
734
+ </xs:sequence>
735
+ </xs:extension>
736
+ </xs:complexContent>
737
+ </xs:complexType>
738
+ <xs:complexType name="DmGeometricAttributePropertyType">
739
+ <xs:sequence>
740
+ <xs:element ref="uro:DmGeometricAttribute"/>
741
+ </xs:sequence>
742
+ </xs:complexType>
743
+ <xs:element name="Duct" substitutionGroup="uro:UtilityLink" type="uro:DuctType"/>
744
+ <xs:complexType name="DuctType">
745
+ <xs:complexContent>
746
+ <xs:extension base="uro:UtilityLinkType">
747
+ <xs:sequence>
748
+ <xs:element name="width" minOccurs="0" type="gml:LengthType"/>
749
+ </xs:sequence>
750
+ </xs:extension>
751
+ </xs:complexContent>
752
+ </xs:complexType>
753
+ <xs:complexType name="DuctPropertyType">
754
+ <xs:sequence minOccurs="0">
755
+ <xs:element ref="uro:Duct"/>
756
+ </xs:sequence>
757
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
758
+ </xs:complexType>
759
+ <xs:element name="ElectricityCable" substitutionGroup="uro:Cable" type="uro:ElectricityCableType"/>
760
+ <xs:complexType name="ElectricityCableType">
761
+ <xs:complexContent>
762
+ <xs:extension base="uro:CableType">
763
+ <xs:sequence/>
764
+ </xs:extension>
765
+ </xs:complexContent>
766
+ </xs:complexType>
767
+ <xs:complexType name="ElectricityCablePropertyType">
768
+ <xs:sequence minOccurs="0">
769
+ <xs:element ref="uro:ElectricityCable"/>
770
+ </xs:sequence>
771
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
772
+ </xs:complexType>
773
+ <xs:element name="Elevation" type="uro:ElevationType"/>
774
+ <xs:complexType name="ElevationType">
775
+ <xs:sequence>
776
+ <xs:element name="elevationReference" type="gml:CodeType"/>
777
+ <xs:element name="elevationValue" type="gml:DirectPositionType"/>
778
+ </xs:sequence>
779
+ </xs:complexType>
780
+ <xs:complexType name="ElevationPropertyType">
781
+ <xs:sequence>
782
+ <xs:element ref="uro:Elevation"/>
783
+ </xs:sequence>
784
+ </xs:complexType>
785
+ <xs:element name="EmbankmentAttribute" substitutionGroup="uro:ConstructionStructureAttribute" type="uro:EmbankmentAttributeType"/>
786
+ <xs:complexType name="EmbankmentAttributeType">
787
+ <xs:complexContent>
788
+ <xs:extension base="uro:ConstructionStructureAttributeType">
789
+ <xs:sequence>
790
+ <xs:element name="mainPartLength" minOccurs="0" type="gml:LengthType"/>
791
+ <xs:element name="ceilingHeight" minOccurs="0" type="gml:LengthType"/>
792
+ <xs:element name="waveDissipatorLength" minOccurs="0" type="gml:LengthType"/>
793
+ </xs:sequence>
794
+ </xs:extension>
795
+ </xs:complexContent>
796
+ </xs:complexType>
797
+ <xs:complexType name="EmbankmentAttributePropertyType">
798
+ <xs:sequence>
799
+ <xs:element ref="uro:EmbankmentAttribute"/>
800
+ </xs:sequence>
801
+ </xs:complexType>
802
+ <xs:element name="FacilityAttribute" abstract="true" type="uro:FacilityAttributeType"/>
803
+ <xs:complexType name="FacilityAttributeType" abstract="true">
804
+ <xs:sequence>
805
+ <xs:element name="facilityId" minOccurs="0" type="xs:string"/>
806
+ </xs:sequence>
807
+ </xs:complexType>
808
+ <xs:complexType name="FacilityAttributePropertyType">
809
+ <xs:sequence>
810
+ <xs:element ref="uro:FacilityAttribute"/>
811
+ </xs:sequence>
812
+ </xs:complexType>
813
+ <xs:element name="FacilityIdAttribute" type="uro:FacilityIdAttributeType"/>
814
+ <xs:complexType name="FacilityIdAttributeType">
815
+ <xs:sequence>
816
+ <xs:element name="id" minOccurs="0" type="xs:string"/>
817
+ <xs:element name="partId" minOccurs="0" type="xs:string"/>
818
+ <xs:element name="branchId" minOccurs="0" type="xs:string"/>
819
+ <xs:element name="prefecture" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
820
+ <xs:element name="city" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
821
+ <xs:element name="route" minOccurs="0" type="xs:string"/>
822
+ <xs:element name="startPost" minOccurs="0" type="xs:string"/>
823
+ <xs:element name="endPost" minOccurs="0" type="xs:string"/>
824
+ <xs:element name="startLat" minOccurs="0" type="xs:double"/>
825
+ <xs:element name="startLong" minOccurs="0" type="xs:double"/>
826
+ <xs:element name="alternativeName" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
827
+ </xs:sequence>
828
+ </xs:complexType>
829
+ <xs:complexType name="FacilityIdAttributePropertyType">
830
+ <xs:sequence>
831
+ <xs:element ref="uro:FacilityIdAttribute"/>
832
+ </xs:sequence>
833
+ </xs:complexType>
834
+ <xs:element name="FacilityTypeAttribute" type="uro:FacilityTypeAttributeType"/>
835
+ <xs:complexType name="FacilityTypeAttributeType">
836
+ <xs:sequence>
837
+ <xs:element name="class" minOccurs="0" type="gml:CodeType"/>
838
+ <xs:element name="function" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
839
+ </xs:sequence>
840
+ </xs:complexType>
841
+ <xs:complexType name="FacilityTypeAttributePropertyType">
842
+ <xs:sequence>
843
+ <xs:element ref="uro:FacilityTypeAttribute"/>
844
+ </xs:sequence>
845
+ </xs:complexType>
846
+ <xs:element name="FishingPortAttribute" abstract="true" substitutionGroup="uro:FacilityAttribute" type="uro:FishingPortAttributeType"/>
847
+ <xs:complexType name="FishingPortAttributeType" abstract="true">
848
+ <xs:complexContent>
849
+ <xs:extension base="uro:FacilityAttributeType">
850
+ <xs:sequence/>
851
+ </xs:extension>
852
+ </xs:complexContent>
853
+ </xs:complexType>
854
+ <xs:complexType name="FishingPortAttributePropertyType">
855
+ <xs:sequence>
856
+ <xs:element ref="uro:FishingPortAttribute"/>
857
+ </xs:sequence>
858
+ </xs:complexType>
859
+ <xs:element name="FishingPortCapacity" substitutionGroup="uro:FishingPortAttribute" type="uro:FishingPortCapacityType"/>
860
+ <xs:complexType name="FishingPortCapacityType">
861
+ <xs:complexContent>
862
+ <xs:extension base="uro:FishingPortAttributeType">
863
+ <xs:sequence>
864
+ <xs:element name="capacity" minOccurs="0" type="xs:string"/>
865
+ <xs:element name="weightCapacity" minOccurs="0" type="gml:MeasureType"/>
866
+ <xs:element name="hullForm" minOccurs="0" type="xs:integer"/>
867
+ <xs:element name="shipNumber" minOccurs="0" type="xs:integer"/>
868
+ <xs:element name="waterDepth-2m" minOccurs="0" type="gml:MeasureType"/>
869
+ <xs:element name="waterDepth2-3m" minOccurs="0" type="gml:MeasureType"/>
870
+ <xs:element name="waterDepth3-6m" minOccurs="0" type="gml:MeasureType"/>
871
+ <xs:element name="waterDepth6-m" minOccurs="0" type="gml:MeasureType"/>
872
+ <xs:element name="heightAboveAWL" minOccurs="0" type="gml:LengthType"/>
873
+ <xs:element name="heightOnFoundations" minOccurs="0" type="gml:LengthType"/>
874
+ <xs:element name="luminousRange" minOccurs="0" type="gml:LengthType"/>
875
+ <xs:element name="luminousColor" minOccurs="0" type="xs:string"/>
876
+ <xs:element name="candlePower" minOccurs="0" type="xs:integer"/>
877
+ <xs:element name="lightType" minOccurs="0" type="xs:string"/>
878
+ <xs:element name="period" minOccurs="0" type="xs:string"/>
879
+ <xs:element name="maximumGroundingWeight" minOccurs="0" type="xs:integer"/>
880
+ <xs:element name="handleablePower" minOccurs="0" type="xs:integer"/>
881
+ <xs:element name="maximumWaterSupply" minOccurs="0" type="xs:integer"/>
882
+ <xs:element name="maximumRefueling" minOccurs="0" type="xs:string"/>
883
+ <xs:element name="people" minOccurs="0" type="xs:integer"/>
884
+ <xs:element name="other" minOccurs="0" type="xs:string"/>
885
+ </xs:sequence>
886
+ </xs:extension>
887
+ </xs:complexContent>
888
+ </xs:complexType>
889
+ <xs:complexType name="FishingPortCapacityPropertyType">
890
+ <xs:sequence>
891
+ <xs:element ref="uro:FishingPortCapacity"/>
892
+ </xs:sequence>
893
+ </xs:complexType>
894
+ <xs:element name="FishingPortFacility" substitutionGroup="uro:FishingPortAttribute" type="uro:FishingPortFacilityType"/>
895
+ <xs:complexType name="FishingPortFacilityType">
896
+ <xs:complexContent>
897
+ <xs:extension base="uro:FishingPortAttributeType">
898
+ <xs:sequence>
899
+ <xs:element name="facilityDetailsType" type="gml:CodeType"/>
900
+ <xs:element name="portName" type="xs:string"/>
901
+ <xs:element name="portType" type="gml:CodeType"/>
902
+ <xs:element name="address" type="xs:string"/>
903
+ <xs:element name="designatedArea" type="xs:string"/>
904
+ <xs:element name="designation" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
905
+ <xs:element name="designatedAdministrator" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
906
+ <xs:element name="referenceNumber" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
907
+ <xs:element name="grantType" minOccurs="0" type="gml:CodeType"/>
908
+ <xs:element name="administrator" minOccurs="0" type="xs:string"/>
909
+ <xs:element name="facilityManager" minOccurs="0" type="xs:string"/>
910
+ <xs:element name="structureType" minOccurs="0" type="gml:CodeType"/>
911
+ <xs:element name="mainMaterial" minOccurs="0" type="gml:CodeType"/>
912
+ <xs:element name="otherStructure" minOccurs="0" type="xs:string"/>
913
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
914
+ <xs:element name="width" minOccurs="0" type="gml:LengthType"/>
915
+ <xs:element name="ceilingHeight" minOccurs="0" type="gml:LengthType"/>
916
+ <xs:element name="depth" minOccurs="0" type="gml:LengthType"/>
917
+ <xs:element name="area" minOccurs="0" type="gml:MeasureType"/>
918
+ <xs:element name="otherSizeDescription" minOccurs="0" type="xs:string"/>
919
+ <xs:element name="dateOfConstructionOrAcquisition" minOccurs="0" type="xs:date"/>
920
+ <xs:element name="cost" minOccurs="0" type="xs:integer"/>
921
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
922
+ </xs:sequence>
923
+ </xs:extension>
924
+ </xs:complexContent>
925
+ </xs:complexType>
926
+ <xs:complexType name="FishingPortFacilityPropertyType">
927
+ <xs:sequence>
928
+ <xs:element ref="uro:FishingPortFacility"/>
929
+ </xs:sequence>
930
+ </xs:complexType>
931
+ <xs:element name="FloodingRiskAttribute" abstract="true" substitutionGroup="uro:DisasterRiskAttribute" type="uro:FloodingRiskAttributeType"/>
932
+ <xs:complexType name="FloodingRiskAttributeType" abstract="true">
933
+ <xs:complexContent>
934
+ <xs:extension base="uro:DisasterRiskAttributeType">
935
+ <xs:sequence>
936
+ <xs:element name="rank" minOccurs="0" type="gml:CodeType"/>
937
+ <xs:element name="rankOrg" minOccurs="0" type="gml:CodeType"/>
938
+ <xs:element name="depth" minOccurs="0" type="gml:LengthType"/>
939
+ </xs:sequence>
940
+ </xs:extension>
941
+ </xs:complexContent>
942
+ </xs:complexType>
943
+ <xs:complexType name="FloodingRiskAttributePropertyType">
944
+ <xs:sequence>
945
+ <xs:element ref="uro:FloodingRiskAttribute"/>
946
+ </xs:sequence>
947
+ </xs:complexType>
948
+ <xs:element name="GroundSurface" substitutionGroup="uro:_BoundarySurface" type="uro:GroundSurfaceType"/>
949
+ <xs:complexType name="GroundSurfaceType">
950
+ <xs:complexContent>
951
+ <xs:extension base="uro:_BoundarySurfaceType">
952
+ <xs:sequence/>
953
+ </xs:extension>
954
+ </xs:complexContent>
955
+ </xs:complexType>
956
+ <xs:complexType name="GroundSurfacePropertyType">
957
+ <xs:sequence minOccurs="0">
958
+ <xs:element ref="uro:GroundSurface"/>
959
+ </xs:sequence>
960
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
961
+ </xs:complexType>
962
+ <xs:element name="Handhole" substitutionGroup="uro:UtilityNodeContainer" type="uro:HandholeType"/>
963
+ <xs:complexType name="HandholeType">
964
+ <xs:complexContent>
965
+ <xs:extension base="uro:UtilityNodeContainerType">
966
+ <xs:sequence/>
967
+ </xs:extension>
968
+ </xs:complexContent>
969
+ </xs:complexType>
970
+ <xs:complexType name="HandholePropertyType">
971
+ <xs:sequence minOccurs="0">
972
+ <xs:element ref="uro:Handhole"/>
973
+ </xs:sequence>
974
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
975
+ </xs:complexType>
976
+ <xs:element name="HarborFacility" substitutionGroup="uro:PortAttribute" type="uro:HarborFacilityType"/>
977
+ <xs:complexType name="HarborFacilityType">
978
+ <xs:complexContent>
979
+ <xs:extension base="uro:PortAttributeType">
980
+ <xs:sequence>
981
+ <xs:element name="geologicalType" minOccurs="0" type="gml:CodeType"/>
982
+ <xs:element name="obstructingStructures" minOccurs="0" type="xs:string"/>
983
+ <xs:element name="structuralLimitations" minOccurs="0" type="gml:LengthType"/>
984
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
985
+ <xs:element name="minimumWidth" minOccurs="0" type="gml:LengthType"/>
986
+ <xs:element name="maximumWidth" minOccurs="0" type="gml:LengthType"/>
987
+ <xs:element name="plannedDepth" minOccurs="0" type="gml:LengthType"/>
988
+ <xs:element name="currentDepth" minOccurs="0" type="gml:LengthType"/>
989
+ <xs:element name="isDredged" minOccurs="0" type="xs:boolean"/>
990
+ <xs:element name="areaType" minOccurs="0" type="gml:CodeType"/>
991
+ <xs:element name="innerArea" minOccurs="0" type="gml:MeasureType"/>
992
+ <xs:element name="outerArea" minOccurs="0" type="gml:MeasureType"/>
993
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
994
+ <xs:element name="subsidy" minOccurs="0" type="xs:integer"/>
995
+ <xs:element name="note" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
996
+ </xs:sequence>
997
+ </xs:extension>
998
+ </xs:complexContent>
999
+ </xs:complexType>
1000
+ <xs:complexType name="HarborFacilityPropertyType">
1001
+ <xs:sequence>
1002
+ <xs:element ref="uro:HarborFacility"/>
1003
+ </xs:sequence>
1004
+ </xs:complexType>
1005
+ <xs:element name="Height" type="uro:HeightType"/>
1006
+ <xs:complexType name="HeightType">
1007
+ <xs:sequence>
1008
+ <xs:element name="highReference" type="gml:CodeType"/>
1009
+ <xs:element name="lowReference" type="gml:CodeType"/>
1010
+ <xs:element name="status" type="uro:HightStatusValue"/>
1011
+ <xs:element name="value" type="gml:LengthType"/>
1012
+ </xs:sequence>
1013
+ </xs:complexType>
1014
+ <xs:complexType name="HeightPropertyType">
1015
+ <xs:sequence>
1016
+ <xs:element ref="uro:Height"/>
1017
+ </xs:sequence>
1018
+ </xs:complexType>
1019
+ <xs:element name="HighTideRiskAttribute" substitutionGroup="uro:FloodingRiskAttribute" type="uro:HighTideRiskAttributeType"/>
1020
+ <xs:complexType name="HighTideRiskAttributeType">
1021
+ <xs:complexContent>
1022
+ <xs:extension base="uro:FloodingRiskAttributeType">
1023
+ <xs:sequence/>
1024
+ </xs:extension>
1025
+ </xs:complexContent>
1026
+ </xs:complexType>
1027
+ <xs:simpleType name="HightStatusValue">
1028
+ <xs:restriction base="xs:string">
1029
+ <xs:enumeration value="estimated"/>
1030
+ <xs:enumeration value="measured"/>
1031
+ </xs:restriction>
1032
+ </xs:simpleType>
1033
+ <xs:simpleType name="IFCStateEnum">
1034
+ <xs:restriction base="xs:string">
1035
+ <xs:enumeration value="READWRITE"/>
1036
+ <xs:enumeration value="READONLY"/>
1037
+ <xs:enumeration value="LOCKED"/>
1038
+ <xs:enumeration value="READWHITELOCKED"/>
1039
+ <xs:enumeration value="READONLYLOCKED"/>
1040
+ </xs:restriction>
1041
+ </xs:simpleType>
1042
+ <xs:element name="IfcAttribute" abstract="true" type="uro:IfcAttributeType"/>
1043
+ <xs:complexType name="IfcAttributeType" abstract="true">
1044
+ <xs:sequence/>
1045
+ </xs:complexType>
1046
+ <xs:complexType name="IfcAttributePropertyType">
1047
+ <xs:sequence>
1048
+ <xs:element ref="uro:IfcAttribute"/>
1049
+ </xs:sequence>
1050
+ </xs:complexType>
1051
+ <xs:element name="IfcAxis2Placement3D" type="uro:IfcAxis2Placement3DType"/>
1052
+ <xs:complexType name="IfcAxis2Placement3DType">
1053
+ <xs:sequence>
1054
+ <xs:element name="location" minOccurs="0" type="gml:PointPropertyType"/>
1055
+ <xs:element name="axis" minOccurs="0" type="gml:doubleList"/>
1056
+ <xs:element name="refDirection" minOccurs="0" type="gml:doubleList"/>
1057
+ </xs:sequence>
1058
+ </xs:complexType>
1059
+ <xs:complexType name="IfcAxis2Placement3DPropertyType">
1060
+ <xs:sequence>
1061
+ <xs:element ref="uro:IfcAxis2Placement3D"/>
1062
+ </xs:sequence>
1063
+ </xs:complexType>
1064
+ <xs:element name="IfcBuilding" substitutionGroup="uro:IfcSpatialStructureElement" type="uro:IfcBuildingType"/>
1065
+ <xs:complexType name="IfcBuildingType">
1066
+ <xs:complexContent>
1067
+ <xs:extension base="uro:IfcSpatialStructureElementType">
1068
+ <xs:sequence>
1069
+ <xs:element name="elevationOfRefHeight" minOccurs="0" type="gml:LengthType"/>
1070
+ <xs:element name="elevationOfTerrain" minOccurs="0" type="gml:LengthType"/>
1071
+ <xs:element name="buildingAddress" minOccurs="0" type="core:AddressPropertyType"/>
1072
+ </xs:sequence>
1073
+ </xs:extension>
1074
+ </xs:complexContent>
1075
+ </xs:complexType>
1076
+ <xs:complexType name="IfcBuildingPropertyType">
1077
+ <xs:sequence>
1078
+ <xs:element ref="uro:IfcBuilding"/>
1079
+ </xs:sequence>
1080
+ </xs:complexType>
1081
+ <xs:element name="IfcBuildingElement" substitutionGroup="uro:IfcElement" type="uro:IfcBuildingElementType"/>
1082
+ <xs:complexType name="IfcBuildingElementType">
1083
+ <xs:complexContent>
1084
+ <xs:extension base="uro:IfcElementType">
1085
+ <xs:sequence>
1086
+ <xs:element name="elementType" minOccurs="0" type="gml:CodeType"/>
1087
+ <xs:element name="predefinedType" minOccurs="0" type="gml:CodeType"/>
1088
+ <xs:element name="shapeType" minOccurs="0" type="gml:CodeType"/>
1089
+ <xs:element name="numberOfRiser" minOccurs="0" type="xs:integer"/>
1090
+ <xs:element name="numberOfTreads" minOccurs="0" type="xs:integer"/>
1091
+ <xs:element name="riserHeight" minOccurs="0" type="gml:LengthType"/>
1092
+ <xs:element name="treadLength" minOccurs="0" type="gml:LengthType"/>
1093
+ <xs:element name="operationType" minOccurs="0" type="uro:IfcTransportElementTypeEnum"/>
1094
+ <xs:element name="capacityByWeight" minOccurs="0" type="gml:MeasureType"/>
1095
+ <xs:element name="capacityByNumber" minOccurs="0" type="xs:integer"/>
1096
+ </xs:sequence>
1097
+ </xs:extension>
1098
+ </xs:complexContent>
1099
+ </xs:complexType>
1100
+ <xs:complexType name="IfcBuildingElementPropertyType">
1101
+ <xs:sequence>
1102
+ <xs:element ref="uro:IfcBuildingElement"/>
1103
+ </xs:sequence>
1104
+ </xs:complexType>
1105
+ <xs:element name="IfcBuildingStorey" substitutionGroup="uro:IfcSpatialStructureElement" type="uro:IfcBuildingStoreyType"/>
1106
+ <xs:complexType name="IfcBuildingStoreyType">
1107
+ <xs:complexContent>
1108
+ <xs:extension base="uro:IfcSpatialStructureElementType">
1109
+ <xs:sequence>
1110
+ <xs:element name="elevation" minOccurs="0" type="gml:LengthType"/>
1111
+ </xs:sequence>
1112
+ </xs:extension>
1113
+ </xs:complexContent>
1114
+ </xs:complexType>
1115
+ <xs:complexType name="IfcBuildingStoreyPropertyType">
1116
+ <xs:sequence>
1117
+ <xs:element ref="uro:IfcBuildingStorey"/>
1118
+ </xs:sequence>
1119
+ </xs:complexType>
1120
+ <xs:element name="IfcClassification" type="uro:IfcClassificationType"/>
1121
+ <xs:complexType name="IfcClassificationType">
1122
+ <xs:sequence>
1123
+ <xs:element name="source" minOccurs="0" type="xs:string"/>
1124
+ <xs:element name="edition" minOccurs="0" type="xs:string"/>
1125
+ <xs:element name="editionDate" minOccurs="0" type="xs:date"/>
1126
+ <xs:element name="name" minOccurs="0" type="xs:string"/>
1127
+ </xs:sequence>
1128
+ </xs:complexType>
1129
+ <xs:complexType name="IfcClassificationPropertyType">
1130
+ <xs:sequence>
1131
+ <xs:element ref="uro:IfcClassification"/>
1132
+ </xs:sequence>
1133
+ </xs:complexType>
1134
+ <xs:element name="IfcClassificationReference" substitutionGroup="uro:IfcAttribute" type="uro:IfcClassificationReferenceType"/>
1135
+ <xs:complexType name="IfcClassificationReferenceType">
1136
+ <xs:complexContent>
1137
+ <xs:extension base="uro:IfcAttributeType">
1138
+ <xs:sequence>
1139
+ <xs:element name="location" minOccurs="0" type="xs:anyURI"/>
1140
+ <xs:element name="itemReference" minOccurs="0" type="gml:CodeType"/>
1141
+ <xs:element name="name" minOccurs="0" type="xs:string"/>
1142
+ <xs:element name="referencedSource" minOccurs="0" type="uro:IfcClassificationPropertyType"/>
1143
+ </xs:sequence>
1144
+ </xs:extension>
1145
+ </xs:complexContent>
1146
+ </xs:complexType>
1147
+ <xs:complexType name="IfcClassificationReferencePropertyType">
1148
+ <xs:sequence>
1149
+ <xs:element ref="uro:IfcClassificationReference"/>
1150
+ </xs:sequence>
1151
+ </xs:complexType>
1152
+ <xs:element name="IfcCoordinateReferenceSystem" substitutionGroup="uro:IfcAttribute" type="uro:IfcCoordinateReferenceSystemType"/>
1153
+ <xs:complexType name="IfcCoordinateReferenceSystemType">
1154
+ <xs:complexContent>
1155
+ <xs:extension base="uro:IfcAttributeType">
1156
+ <xs:sequence>
1157
+ <xs:element name="name" minOccurs="0" type="xs:string"/>
1158
+ <xs:element name="description" minOccurs="0" type="xs:string"/>
1159
+ <xs:element name="geodeticDatum" minOccurs="0" type="xs:string"/>
1160
+ <xs:element name="verticalDatum" minOccurs="0" type="xs:string"/>
1161
+ </xs:sequence>
1162
+ </xs:extension>
1163
+ </xs:complexContent>
1164
+ </xs:complexType>
1165
+ <xs:complexType name="IfcCoordinateReferenceSystemPropertyType">
1166
+ <xs:sequence>
1167
+ <xs:element ref="uro:IfcCoordinateReferenceSystem"/>
1168
+ </xs:sequence>
1169
+ </xs:complexType>
1170
+ <xs:element name="IfcCoordinateReferenceSystemSelect" type="uro:IfcCoordinateReferenceSystemSelectType"/>
1171
+ <xs:complexType name="IfcCoordinateReferenceSystemSelectType">
1172
+ <xs:choice>
1173
+ <xs:element name="crs" type="uro:IfcCoordinateReferenceSystemPropertyType"/>
1174
+ <xs:element name="context" type="uro:IfcGeometricRepresentationContextPropertyType"/>
1175
+ </xs:choice>
1176
+ </xs:complexType>
1177
+ <xs:element name="IfcCurtainWall" substitutionGroup="uro:IfcBuildingElement" type="uro:IfcCurtainWallType"/>
1178
+ <xs:complexType name="IfcCurtainWallType">
1179
+ <xs:complexContent>
1180
+ <xs:extension base="uro:IfcBuildingElementType">
1181
+ <xs:sequence/>
1182
+ </xs:extension>
1183
+ </xs:complexContent>
1184
+ </xs:complexType>
1185
+ <xs:complexType name="IfcCurtainWallPropertyType">
1186
+ <xs:sequence>
1187
+ <xs:element ref="uro:IfcCurtainWall"/>
1188
+ </xs:sequence>
1189
+ </xs:complexType>
1190
+ <xs:element name="IfcDoor" substitutionGroup="uro:IfcBuildingElement" type="uro:IfcDoorType"/>
1191
+ <xs:complexType name="IfcDoorType">
1192
+ <xs:complexContent>
1193
+ <xs:extension base="uro:IfcBuildingElementType">
1194
+ <xs:sequence>
1195
+ <xs:element name="overallHeight" minOccurs="0" type="gml:LengthType"/>
1196
+ <xs:element name="overallWidth" minOccurs="0" type="gml:LengthType"/>
1197
+ </xs:sequence>
1198
+ </xs:extension>
1199
+ </xs:complexContent>
1200
+ </xs:complexType>
1201
+ <xs:complexType name="IfcDoorPropertyType">
1202
+ <xs:sequence>
1203
+ <xs:element ref="uro:IfcDoor"/>
1204
+ </xs:sequence>
1205
+ </xs:complexType>
1206
+ <xs:element name="IfcElement" abstract="true" substitutionGroup="uro:IfcProduct" type="uro:IfcElementType"/>
1207
+ <xs:complexType name="IfcElementType" abstract="true">
1208
+ <xs:complexContent>
1209
+ <xs:extension base="uro:IfcProductType">
1210
+ <xs:sequence>
1211
+ <xs:element name="tag" minOccurs="0" type="xs:string"/>
1212
+ </xs:sequence>
1213
+ </xs:extension>
1214
+ </xs:complexContent>
1215
+ </xs:complexType>
1216
+ <xs:complexType name="IfcElementPropertyType">
1217
+ <xs:sequence>
1218
+ <xs:element ref="uro:IfcElement"/>
1219
+ </xs:sequence>
1220
+ </xs:complexType>
1221
+ <xs:simpleType name="IfcElementCompositionEnum">
1222
+ <xs:restriction base="xs:string">
1223
+ <xs:enumeration value="COMPLEX"/>
1224
+ <xs:enumeration value="ELEMENT"/>
1225
+ <xs:enumeration value="PARTIAL"/>
1226
+ </xs:restriction>
1227
+ </xs:simpleType>
1228
+ <xs:element name="IfcFurnishingElement" substitutionGroup="uro:IfcElement" type="uro:IfcFurnishingElementType"/>
1229
+ <xs:complexType name="IfcFurnishingElementType">
1230
+ <xs:complexContent>
1231
+ <xs:extension base="uro:IfcElementType">
1232
+ <xs:sequence/>
1233
+ </xs:extension>
1234
+ </xs:complexContent>
1235
+ </xs:complexType>
1236
+ <xs:complexType name="IfcFurnishingElementPropertyType">
1237
+ <xs:sequence>
1238
+ <xs:element ref="uro:IfcFurnishingElement"/>
1239
+ </xs:sequence>
1240
+ </xs:complexType>
1241
+ <xs:element name="IfcGeometricRepresentationContext" type="uro:IfcGeometricRepresentationContextType"/>
1242
+ <xs:complexType name="IfcGeometricRepresentationContextType">
1243
+ <xs:sequence>
1244
+ <xs:element name="contextIdentifier" minOccurs="0" type="xs:string"/>
1245
+ <xs:element name="contextType" minOccurs="0" type="xs:string"/>
1246
+ <xs:element name="coordinateSpaceDimension" minOccurs="0" type="xs:integer"/>
1247
+ <xs:element name="precision" minOccurs="0" type="xs:double"/>
1248
+ <xs:element name="worldCoordinateSystem" type="uro:IfcAxis2Placement3DPropertyType"/>
1249
+ <xs:element name="trueNorth" minOccurs="0" type="gml:doubleList"/>
1250
+ </xs:sequence>
1251
+ </xs:complexType>
1252
+ <xs:complexType name="IfcGeometricRepresentationContextPropertyType">
1253
+ <xs:sequence>
1254
+ <xs:element ref="uro:IfcGeometricRepresentationContext"/>
1255
+ </xs:sequence>
1256
+ </xs:complexType>
1257
+ <xs:element name="IfcGroup" substitutionGroup="uro:IfcObject" type="uro:IfcGroupType"/>
1258
+ <xs:complexType name="IfcGroupType">
1259
+ <xs:complexContent>
1260
+ <xs:extension base="uro:IfcObjectType">
1261
+ <xs:sequence/>
1262
+ </xs:extension>
1263
+ </xs:complexContent>
1264
+ </xs:complexType>
1265
+ <xs:complexType name="IfcGroupPropertyType">
1266
+ <xs:sequence>
1267
+ <xs:element ref="uro:IfcGroup"/>
1268
+ </xs:sequence>
1269
+ </xs:complexType>
1270
+ <xs:element name="IfcMapConversion" substitutionGroup="uro:IfcAttribute" type="uro:IfcMapConversionType"/>
1271
+ <xs:complexType name="IfcMapConversionType">
1272
+ <xs:complexContent>
1273
+ <xs:extension base="uro:IfcAttributeType">
1274
+ <xs:sequence>
1275
+ <xs:element name="sourceCRS" minOccurs="0" type="uro:IfcCoordinateReferenceSystemSelectType"/>
1276
+ <xs:element name="targetCRS" minOccurs="0" type="uro:IfcCoordinateReferenceSystemPropertyType"/>
1277
+ <xs:element name="eastings" minOccurs="0" type="gml:LengthType"/>
1278
+ <xs:element name="northings" minOccurs="0" type="gml:LengthType"/>
1279
+ <xs:element name="orthogonalHeight" minOccurs="0" type="gml:LengthType"/>
1280
+ <xs:element name="xAxisAbscissa" minOccurs="0" type="xs:double"/>
1281
+ <xs:element name="xAxisOrdinate" minOccurs="0" type="xs:double"/>
1282
+ <xs:element name="scale" minOccurs="0" type="xs:double"/>
1283
+ </xs:sequence>
1284
+ </xs:extension>
1285
+ </xs:complexContent>
1286
+ </xs:complexType>
1287
+ <xs:complexType name="IfcMapConversionPropertyType">
1288
+ <xs:sequence>
1289
+ <xs:element ref="uro:IfcMapConversion"/>
1290
+ </xs:sequence>
1291
+ </xs:complexType>
1292
+ <xs:element name="IfcObject" abstract="true" substitutionGroup="uro:IfcObjectDefinition" type="uro:IfcObjectType"/>
1293
+ <xs:complexType name="IfcObjectType" abstract="true">
1294
+ <xs:complexContent>
1295
+ <xs:extension base="uro:IfcObjectDefinitionType">
1296
+ <xs:sequence>
1297
+ <xs:element name="objectType" minOccurs="0" type="xs:string"/>
1298
+ </xs:sequence>
1299
+ </xs:extension>
1300
+ </xs:complexContent>
1301
+ </xs:complexType>
1302
+ <xs:complexType name="IfcObjectPropertyType">
1303
+ <xs:sequence>
1304
+ <xs:element ref="uro:IfcObject"/>
1305
+ </xs:sequence>
1306
+ </xs:complexType>
1307
+ <xs:element name="IfcObjectDefinition" abstract="true" substitutionGroup="uro:IfcRoot" type="uro:IfcObjectDefinitionType"/>
1308
+ <xs:complexType name="IfcObjectDefinitionType" abstract="true">
1309
+ <xs:complexContent>
1310
+ <xs:extension base="uro:IfcRootType">
1311
+ <xs:sequence/>
1312
+ </xs:extension>
1313
+ </xs:complexContent>
1314
+ </xs:complexType>
1315
+ <xs:complexType name="IfcObjectDefinitionPropertyType">
1316
+ <xs:sequence>
1317
+ <xs:element ref="uro:IfcObjectDefinition"/>
1318
+ </xs:sequence>
1319
+ </xs:complexType>
1320
+ <xs:element name="IfcOpeningElement" substitutionGroup="uro:IfcElement" type="uro:IfcOpeningElementType"/>
1321
+ <xs:complexType name="IfcOpeningElementType">
1322
+ <xs:complexContent>
1323
+ <xs:extension base="uro:IfcElementType">
1324
+ <xs:sequence>
1325
+ <xs:element name="nominalArea" minOccurs="0" type="gml:MeasureType"/>
1326
+ <xs:element name="nominalVolume" minOccurs="0" type="gml:MeasureType"/>
1327
+ </xs:sequence>
1328
+ </xs:extension>
1329
+ </xs:complexContent>
1330
+ </xs:complexType>
1331
+ <xs:complexType name="IfcOpeningElementPropertyType">
1332
+ <xs:sequence>
1333
+ <xs:element ref="uro:IfcOpeningElement"/>
1334
+ </xs:sequence>
1335
+ </xs:complexType>
1336
+ <xs:element name="IfcProduct" abstract="true" substitutionGroup="uro:IfcObject" type="uro:IfcProductType"/>
1337
+ <xs:complexType name="IfcProductType" abstract="true">
1338
+ <xs:complexContent>
1339
+ <xs:extension base="uro:IfcObjectType">
1340
+ <xs:sequence/>
1341
+ </xs:extension>
1342
+ </xs:complexContent>
1343
+ </xs:complexType>
1344
+ <xs:complexType name="IfcProductPropertyType">
1345
+ <xs:sequence>
1346
+ <xs:element ref="uro:IfcProduct"/>
1347
+ </xs:sequence>
1348
+ </xs:complexType>
1349
+ <xs:element name="IfcProject" substitutionGroup="uro:IfcObject" type="uro:IfcProjectType"/>
1350
+ <xs:complexType name="IfcProjectType">
1351
+ <xs:complexContent>
1352
+ <xs:extension base="uro:IfcObjectType">
1353
+ <xs:sequence>
1354
+ <xs:element name="longName" minOccurs="0" type="xs:string"/>
1355
+ <xs:element name="phase" minOccurs="0" type="xs:string"/>
1356
+ <xs:element name="representationContexts" minOccurs="0" type="uro:IfcGeometricRepresentationContextPropertyType"/>
1357
+ <xs:element name="unitsInContext" maxOccurs="unbounded" minOccurs="0" type="uro:IfcUnitPropertyType"/>
1358
+ </xs:sequence>
1359
+ </xs:extension>
1360
+ </xs:complexContent>
1361
+ </xs:complexType>
1362
+ <xs:complexType name="IfcProjectPropertyType">
1363
+ <xs:sequence>
1364
+ <xs:element ref="uro:IfcProject"/>
1365
+ </xs:sequence>
1366
+ </xs:complexType>
1367
+ <xs:element name="IfcProjectedCRS" substitutionGroup="uro:IfcCoordinateReferenceSystem" type="uro:IfcProjectedCRSType"/>
1368
+ <xs:complexType name="IfcProjectedCRSType">
1369
+ <xs:complexContent>
1370
+ <xs:extension base="uro:IfcCoordinateReferenceSystemType">
1371
+ <xs:sequence>
1372
+ <xs:element name="mapUnit" minOccurs="0" type="xs:string"/>
1373
+ <xs:element name="mapProjection" minOccurs="0" type="xs:string"/>
1374
+ <xs:element name="mapZone" minOccurs="0" type="xs:string"/>
1375
+ </xs:sequence>
1376
+ </xs:extension>
1377
+ </xs:complexContent>
1378
+ </xs:complexType>
1379
+ <xs:complexType name="IfcProjectedCRSPropertyType">
1380
+ <xs:sequence>
1381
+ <xs:element ref="uro:IfcProjectedCRS"/>
1382
+ </xs:sequence>
1383
+ </xs:complexType>
1384
+ <xs:element name="IfcPsetBuildingCommon" substitutionGroup="uro:IfcAttribute" type="uro:IfcPsetBuildingCommonType"/>
1385
+ <xs:complexType name="IfcPsetBuildingCommonType">
1386
+ <xs:complexContent>
1387
+ <xs:extension base="uro:IfcAttributeType">
1388
+ <xs:sequence>
1389
+ <xs:element name="buildingId" minOccurs="0" type="xs:string"/>
1390
+ <xs:element name="isPermanentId" minOccurs="0" type="xs:boolean"/>
1391
+ <xs:element name="mainFireUse" minOccurs="0" type="xs:string"/>
1392
+ <xs:element name="ancillaryFireUse" minOccurs="0" type="xs:string"/>
1393
+ <xs:element name="sprinklerProtection" minOccurs="0" type="xs:boolean"/>
1394
+ <xs:element name="sprinklerProtectionAutomatic" minOccurs="0" type="xs:boolean"/>
1395
+ <xs:element name="occupancyType" minOccurs="0" type="gml:CodeType"/>
1396
+ <xs:element name="grossPlannedArea" minOccurs="0" type="gml:MeasureType"/>
1397
+ <xs:element name="numberOfStoreys" minOccurs="0" type="xs:integer"/>
1398
+ <xs:element name="yearOfConstruction" minOccurs="0" type="xs:gYear"/>
1399
+ <xs:element name="isLandmarked" minOccurs="0" type="xs:boolean"/>
1400
+ </xs:sequence>
1401
+ </xs:extension>
1402
+ </xs:complexContent>
1403
+ </xs:complexType>
1404
+ <xs:complexType name="IfcPsetBuildingCommonPropertyType">
1405
+ <xs:sequence>
1406
+ <xs:element ref="uro:IfcPsetBuildingCommon"/>
1407
+ </xs:sequence>
1408
+ </xs:complexType>
1409
+ <xs:element name="IfcPsetDoorCommon" substitutionGroup="uro:IfcAttribute" type="uro:IfcPsetDoorCommonType"/>
1410
+ <xs:complexType name="IfcPsetDoorCommonType">
1411
+ <xs:complexContent>
1412
+ <xs:extension base="uro:IfcAttributeType">
1413
+ <xs:sequence>
1414
+ <xs:element name="reference" minOccurs="0" type="xs:string"/>
1415
+ <xs:element name="acousticRating" minOccurs="0" type="xs:string"/>
1416
+ <xs:element name="firerating" minOccurs="0" type="xs:string"/>
1417
+ <xs:element name="securityRating" minOccurs="0" type="xs:string"/>
1418
+ <xs:element name="isExternal" minOccurs="0" type="xs:boolean"/>
1419
+ <xs:element name="infiltration" minOccurs="0" type="xs:double"/>
1420
+ <xs:element name="thermalTransmittance" minOccurs="0" type="xs:double"/>
1421
+ <xs:element name="glazingAreaFraction" minOccurs="0" type="xs:double"/>
1422
+ <xs:element name="handicapAccessible" minOccurs="0" type="xs:boolean"/>
1423
+ <xs:element name="fireExit" minOccurs="0" type="xs:boolean"/>
1424
+ <xs:element name="selfClosing" minOccurs="0" type="xs:boolean"/>
1425
+ <xs:element name="smokeStop" minOccurs="0" type="xs:boolean"/>
1426
+ </xs:sequence>
1427
+ </xs:extension>
1428
+ </xs:complexContent>
1429
+ </xs:complexType>
1430
+ <xs:complexType name="IfcPsetDoorCommonPropertyType">
1431
+ <xs:sequence>
1432
+ <xs:element ref="uro:IfcPsetDoorCommon"/>
1433
+ </xs:sequence>
1434
+ </xs:complexType>
1435
+ <xs:element name="IfcPsetOpeningElementCommon" substitutionGroup="uro:IfcAttribute" type="uro:IfcPsetOpeningElementCommonType"/>
1436
+ <xs:complexType name="IfcPsetOpeningElementCommonType">
1437
+ <xs:complexContent>
1438
+ <xs:extension base="uro:IfcAttributeType">
1439
+ <xs:sequence>
1440
+ <xs:element name="reference" minOccurs="0" type="xs:string"/>
1441
+ <xs:element name="purpose" minOccurs="0" type="xs:string"/>
1442
+ <xs:element name="fireExit" minOccurs="0" type="xs:boolean"/>
1443
+ <xs:element name="protectedOpening" minOccurs="0" type="xs:boolean"/>
1444
+ <xs:element name="parallelJambs" minOccurs="0" type="xs:boolean"/>
1445
+ </xs:sequence>
1446
+ </xs:extension>
1447
+ </xs:complexContent>
1448
+ </xs:complexType>
1449
+ <xs:complexType name="IfcPsetOpeningElementCommonPropertyType">
1450
+ <xs:sequence>
1451
+ <xs:element ref="uro:IfcPsetOpeningElementCommon"/>
1452
+ </xs:sequence>
1453
+ </xs:complexType>
1454
+ <xs:element name="IfcPsetSiteCommon" substitutionGroup="uro:IfcAttribute" type="uro:IfcPsetSiteCommonType"/>
1455
+ <xs:complexType name="IfcPsetSiteCommonType">
1456
+ <xs:complexContent>
1457
+ <xs:extension base="uro:IfcAttributeType">
1458
+ <xs:sequence>
1459
+ <xs:element name="buildableArea" minOccurs="0" type="gml:MeasureType"/>
1460
+ <xs:element name="totalArea" minOccurs="0" type="gml:MeasureType"/>
1461
+ <xs:element name="buildingHeightLimit" minOccurs="0" type="gml:LengthType"/>
1462
+ </xs:sequence>
1463
+ </xs:extension>
1464
+ </xs:complexContent>
1465
+ </xs:complexType>
1466
+ <xs:complexType name="IfcPsetSiteCommonPropertyType">
1467
+ <xs:sequence>
1468
+ <xs:element ref="uro:IfcPsetSiteCommon"/>
1469
+ </xs:sequence>
1470
+ </xs:complexType>
1471
+ <xs:element name="IfcPsetSpaceCommon" substitutionGroup="uro:IfcAttribute" type="uro:IfcPsetSpaceCommonType"/>
1472
+ <xs:complexType name="IfcPsetSpaceCommonType">
1473
+ <xs:complexContent>
1474
+ <xs:extension base="uro:IfcAttributeType">
1475
+ <xs:sequence>
1476
+ <xs:element name="reference" minOccurs="0" type="xs:string"/>
1477
+ <xs:element name="category" minOccurs="0" type="xs:string"/>
1478
+ <xs:element name="floorCovering" minOccurs="0" type="xs:string"/>
1479
+ <xs:element name="wallCovering" minOccurs="0" type="xs:string"/>
1480
+ <xs:element name="ceilingCovering" minOccurs="0" type="xs:string"/>
1481
+ <xs:element name="skirtingBoard" minOccurs="0" type="xs:string"/>
1482
+ <xs:element name="grossPlannedArea" minOccurs="0" type="gml:MeasureType"/>
1483
+ <xs:element name="netPlannedArea" minOccurs="0" type="gml:MeasureType"/>
1484
+ <xs:element name="publiclyAccessible" minOccurs="0" type="xs:boolean"/>
1485
+ <xs:element name="handicapAccessible" minOccurs="0" type="xs:boolean"/>
1486
+ <xs:element name="concealedFlooring" minOccurs="0" type="xs:boolean"/>
1487
+ <xs:element name="concealedCeiling" minOccurs="0" type="xs:boolean"/>
1488
+ </xs:sequence>
1489
+ </xs:extension>
1490
+ </xs:complexContent>
1491
+ </xs:complexType>
1492
+ <xs:complexType name="IfcPsetSpaceCommonPropertyType">
1493
+ <xs:sequence>
1494
+ <xs:element ref="uro:IfcPsetSpaceCommon"/>
1495
+ </xs:sequence>
1496
+ </xs:complexType>
1497
+ <xs:element name="IfcPsetWindowCommon" substitutionGroup="uro:IfcAttribute" type="uro:IfcPsetWindowCommonType"/>
1498
+ <xs:complexType name="IfcPsetWindowCommonType">
1499
+ <xs:complexContent>
1500
+ <xs:extension base="uro:IfcAttributeType">
1501
+ <xs:sequence>
1502
+ <xs:element name="reference" minOccurs="0" type="xs:string"/>
1503
+ <xs:element name="acousticRating" minOccurs="0" type="xs:string"/>
1504
+ <xs:element name="fireRating" minOccurs="0" type="xs:string"/>
1505
+ <xs:element name="securityRating" minOccurs="0" type="xs:string"/>
1506
+ <xs:element name="isExternal" minOccurs="0" type="xs:boolean"/>
1507
+ <xs:element name="infiltration" minOccurs="0" type="xs:double"/>
1508
+ <xs:element name="thermalTransmittance" minOccurs="0" type="xs:double"/>
1509
+ <xs:element name="glazingAreaFraction" minOccurs="0" type="xs:double"/>
1510
+ <xs:element name="smokeStop" minOccurs="0" type="xs:boolean"/>
1511
+ </xs:sequence>
1512
+ </xs:extension>
1513
+ </xs:complexContent>
1514
+ </xs:complexType>
1515
+ <xs:complexType name="IfcPsetWindowCommonPropertyType">
1516
+ <xs:sequence>
1517
+ <xs:element ref="uro:IfcPsetWindowCommon"/>
1518
+ </xs:sequence>
1519
+ </xs:complexType>
1520
+ <xs:element name="IfcRoof" substitutionGroup="uro:IfcBuildingElement" type="uro:IfcRoofType"/>
1521
+ <xs:complexType name="IfcRoofType">
1522
+ <xs:complexContent>
1523
+ <xs:extension base="uro:IfcBuildingElementType">
1524
+ <xs:sequence/>
1525
+ </xs:extension>
1526
+ </xs:complexContent>
1527
+ </xs:complexType>
1528
+ <xs:complexType name="IfcRoofPropertyType">
1529
+ <xs:sequence>
1530
+ <xs:element ref="uro:IfcRoof"/>
1531
+ </xs:sequence>
1532
+ </xs:complexType>
1533
+ <xs:element name="IfcRoot" abstract="true" substitutionGroup="uro:IfcAttribute" type="uro:IfcRootType"/>
1534
+ <xs:complexType name="IfcRootType" abstract="true">
1535
+ <xs:complexContent>
1536
+ <xs:extension base="uro:IfcAttributeType">
1537
+ <xs:sequence>
1538
+ <xs:element name="globalId" minOccurs="0" type="xs:string"/>
1539
+ <xs:element name="name" minOccurs="0" type="xs:string"/>
1540
+ <xs:element name="description" minOccurs="0" type="xs:string"/>
1541
+ </xs:sequence>
1542
+ </xs:extension>
1543
+ </xs:complexContent>
1544
+ </xs:complexType>
1545
+ <xs:complexType name="IfcRootPropertyType">
1546
+ <xs:sequence>
1547
+ <xs:element ref="uro:IfcRoot"/>
1548
+ </xs:sequence>
1549
+ </xs:complexType>
1550
+ <xs:simpleType name="IfcSIPrefix">
1551
+ <xs:restriction base="xs:string">
1552
+ <xs:enumeration value="EXA"/>
1553
+ <xs:enumeration value="PETA"/>
1554
+ <xs:enumeration value="TERA"/>
1555
+ <xs:enumeration value="GIGA"/>
1556
+ <xs:enumeration value="MEGA"/>
1557
+ <xs:enumeration value="KILO"/>
1558
+ <xs:enumeration value="HECTO"/>
1559
+ <xs:enumeration value="DECA"/>
1560
+ <xs:enumeration value="DECI"/>
1561
+ <xs:enumeration value="CENTI"/>
1562
+ <xs:enumeration value="MILLI"/>
1563
+ <xs:enumeration value="MICRO"/>
1564
+ <xs:enumeration value="NANO"/>
1565
+ <xs:enumeration value="PICO"/>
1566
+ <xs:enumeration value="FEMTO"/>
1567
+ <xs:enumeration value="ATTO"/>
1568
+ </xs:restriction>
1569
+ </xs:simpleType>
1570
+ <xs:element name="IfcSite" substitutionGroup="uro:IfcSpatialStructureElement" type="uro:IfcSiteType"/>
1571
+ <xs:complexType name="IfcSiteType">
1572
+ <xs:complexContent>
1573
+ <xs:extension base="uro:IfcSpatialStructureElementType">
1574
+ <xs:sequence>
1575
+ <xs:element name="refLongitude" minOccurs="0" type="xs:double"/>
1576
+ <xs:element name="refLatitude" minOccurs="0" type="xs:double"/>
1577
+ <xs:element name="refElevation" minOccurs="0" type="gml:LengthType"/>
1578
+ <xs:element name="landTitleNumber" minOccurs="0" type="xs:string"/>
1579
+ <xs:element name="siteAddress" minOccurs="0" type="core:AddressPropertyType"/>
1580
+ </xs:sequence>
1581
+ </xs:extension>
1582
+ </xs:complexContent>
1583
+ </xs:complexType>
1584
+ <xs:complexType name="IfcSitePropertyType">
1585
+ <xs:sequence>
1586
+ <xs:element ref="uro:IfcSite"/>
1587
+ </xs:sequence>
1588
+ </xs:complexType>
1589
+ <xs:element name="IfcSpace" substitutionGroup="uro:IfcSpatialStructureElement" type="uro:IfcSpaceType"/>
1590
+ <xs:complexType name="IfcSpaceType">
1591
+ <xs:complexContent>
1592
+ <xs:extension base="uro:IfcSpatialStructureElementType">
1593
+ <xs:sequence>
1594
+ <xs:element name="interiorOrExteriorSpace" minOccurs="0" type="uro:ifcInternalOrExternalEnum"/>
1595
+ <xs:element name="elevationWithFlooring" minOccurs="0" type="gml:LengthType"/>
1596
+ </xs:sequence>
1597
+ </xs:extension>
1598
+ </xs:complexContent>
1599
+ </xs:complexType>
1600
+ <xs:complexType name="IfcSpacePropertyType">
1601
+ <xs:sequence>
1602
+ <xs:element ref="uro:IfcSpace"/>
1603
+ </xs:sequence>
1604
+ </xs:complexType>
1605
+ <xs:element name="IfcSpaceBaseQuantity" substitutionGroup="uro:IfcAttribute" type="uro:IfcSpaceBaseQuantityType"/>
1606
+ <xs:complexType name="IfcSpaceBaseQuantityType">
1607
+ <xs:complexContent>
1608
+ <xs:extension base="uro:IfcAttributeType">
1609
+ <xs:sequence>
1610
+ <xs:element name="nominalHeight" minOccurs="0" type="gml:LengthType"/>
1611
+ <xs:element name="clearHeight" minOccurs="0" type="gml:LengthType"/>
1612
+ <xs:element name="finishCeilingHeight" minOccurs="0" type="gml:LengthType"/>
1613
+ <xs:element name="grossPerimeter" minOccurs="0" type="gml:LengthType"/>
1614
+ <xs:element name="netPerimeter" minOccurs="0" type="gml:LengthType"/>
1615
+ <xs:element name="grossCeilingArea" minOccurs="0" type="gml:MeasureType"/>
1616
+ <xs:element name="grossFloorArea" minOccurs="0" type="gml:MeasureType"/>
1617
+ <xs:element name="netCeilingArea" minOccurs="0" type="gml:MeasureType"/>
1618
+ <xs:element name="netFloorArea" minOccurs="0" type="gml:MeasureType"/>
1619
+ <xs:element name="grossWallArea" minOccurs="0" type="gml:MeasureType"/>
1620
+ <xs:element name="netWallArea" minOccurs="0" type="gml:MeasureType"/>
1621
+ <xs:element name="grossVolume" minOccurs="0" type="gml:MeasureType"/>
1622
+ <xs:element name="netVolume" minOccurs="0" type="gml:MeasureType"/>
1623
+ </xs:sequence>
1624
+ </xs:extension>
1625
+ </xs:complexContent>
1626
+ </xs:complexType>
1627
+ <xs:complexType name="IfcSpaceBaseQuantityPropertyType">
1628
+ <xs:sequence>
1629
+ <xs:element ref="uro:IfcSpaceBaseQuantity"/>
1630
+ </xs:sequence>
1631
+ </xs:complexType>
1632
+ <xs:element name="IfcSpatialStructureElement" abstract="true" substitutionGroup="uro:IfcProduct" type="uro:IfcSpatialStructureElementType"/>
1633
+ <xs:complexType name="IfcSpatialStructureElementType" abstract="true">
1634
+ <xs:complexContent>
1635
+ <xs:extension base="uro:IfcProductType">
1636
+ <xs:sequence>
1637
+ <xs:element name="longName" minOccurs="0" type="xs:string"/>
1638
+ <xs:element name="compositionType" minOccurs="0" type="uro:IfcElementCompositionEnum"/>
1639
+ </xs:sequence>
1640
+ </xs:extension>
1641
+ </xs:complexContent>
1642
+ </xs:complexType>
1643
+ <xs:complexType name="IfcSpatialStructureElementPropertyType">
1644
+ <xs:sequence>
1645
+ <xs:element ref="uro:IfcSpatialStructureElement"/>
1646
+ </xs:sequence>
1647
+ </xs:complexType>
1648
+ <xs:simpleType name="IfcTransportElementTypeEnum">
1649
+ <xs:restriction base="xs:string">
1650
+ <xs:enumeration value="ELEVATOR"/>
1651
+ <xs:enumeration value="ESCALATOR"/>
1652
+ <xs:enumeration value="NOTDEFINED"/>
1653
+ <xs:enumeration value="USERDEFINED"/>
1654
+ </xs:restriction>
1655
+ </xs:simpleType>
1656
+ <xs:element name="IfcUnit" type="uro:IfcUnitType"/>
1657
+ <xs:complexType name="IfcUnitType">
1658
+ <xs:sequence>
1659
+ <xs:element name="dimensions" minOccurs="0" type="xs:integer"/>
1660
+ <xs:element name="unitType" minOccurs="0" type="uro:IfcUnitEnum"/>
1661
+ <xs:element name="prefix" minOccurs="0" type="xs:string"/>
1662
+ <xs:element name="name" minOccurs="0" type="xs:string"/>
1663
+ </xs:sequence>
1664
+ </xs:complexType>
1665
+ <xs:complexType name="IfcUnitPropertyType">
1666
+ <xs:sequence>
1667
+ <xs:element ref="uro:IfcUnit"/>
1668
+ </xs:sequence>
1669
+ </xs:complexType>
1670
+ <xs:simpleType name="IfcUnitEnum">
1671
+ <xs:restriction base="xs:string">
1672
+ <xs:enumeration value="ABSORBEDDOSEUNIT"/>
1673
+ <xs:enumeration value="AMOUNTOFSUBSTANCEUNIT"/>
1674
+ <xs:enumeration value="AREAUNIT"/>
1675
+ <xs:enumeration value="DOSEEQUIVALENTUNIT"/>
1676
+ <xs:enumeration value="ELECTRICCAPACITANCEUNIT"/>
1677
+ <xs:enumeration value="ELECTRICCHARGEUNIT"/>
1678
+ <xs:enumeration value="ELECTRICCONDUCTANCEUNIT"/>
1679
+ <xs:enumeration value="ELECTRICCURRENTUNIT"/>
1680
+ <xs:enumeration value="ELECTRICRESISTANCEUNIT"/>
1681
+ <xs:enumeration value="ELECTRICVOLTAGEUNIT"/>
1682
+ <xs:enumeration value="ENERGYUNIT"/>
1683
+ <xs:enumeration value="FORCEUNIT"/>
1684
+ <xs:enumeration value="FREQUENCYUNIT"/>
1685
+ <xs:enumeration value="ILLUMINANCEUNIT"/>
1686
+ <xs:enumeration value="INDUCTANCEUNIT"/>
1687
+ <xs:enumeration value="LENGTHUNIT"/>
1688
+ <xs:enumeration value="LUMINOUSFLUXUNIT"/>
1689
+ <xs:enumeration value="LUMINOUSINTENSITYUNIT"/>
1690
+ <xs:enumeration value="MAGNETICFLUXDENSITYUNIT"/>
1691
+ <xs:enumeration value="MAGNETICFLUXUNIT"/>
1692
+ <xs:enumeration value="MASSUNIT"/>
1693
+ <xs:enumeration value="PLANEANGLEUNIT"/>
1694
+ <xs:enumeration value="POWERUNIT"/>
1695
+ <xs:enumeration value="PRESSUREUNIT"/>
1696
+ <xs:enumeration value="RADIOACTIVITYUNIT"/>
1697
+ <xs:enumeration value="SOLIDANGLEUNIT"/>
1698
+ <xs:enumeration value="THERMODYNAMICTEMPERATUREUNIT"/>
1699
+ <xs:enumeration value="TIMEUNIT"/>
1700
+ <xs:enumeration value="VOLUMEUNIT"/>
1701
+ <xs:enumeration value="USERDEFINED"/>
1702
+ </xs:restriction>
1703
+ </xs:simpleType>
1704
+ <xs:element name="IfcWall" substitutionGroup="uro:IfcBuildingElement" type="uro:IfcWallType"/>
1705
+ <xs:complexType name="IfcWallType">
1706
+ <xs:complexContent>
1707
+ <xs:extension base="uro:IfcBuildingElementType">
1708
+ <xs:sequence>
1709
+ <xs:element name="nominalLength" minOccurs="0" type="gml:LengthType"/>
1710
+ <xs:element name="nominalWidth" minOccurs="0" type="gml:LengthType"/>
1711
+ <xs:element name="nominalHeight" minOccurs="0" type="gml:LengthType"/>
1712
+ <xs:element name="grossFootPrintArea" minOccurs="0" type="gml:MeasureType"/>
1713
+ <xs:element name="netFootPrintArea" minOccurs="0" type="gml:MeasureType"/>
1714
+ <xs:element name="grossSideArea" minOccurs="0" type="gml:MeasureType"/>
1715
+ <xs:element name="netSideArea" minOccurs="0" type="gml:MeasureType"/>
1716
+ <xs:element name="grossSideAreaLeft" minOccurs="0" type="gml:MeasureType"/>
1717
+ <xs:element name="netSideAreaLeft" minOccurs="0" type="gml:MeasureType"/>
1718
+ <xs:element name="grossSideAreaRight" minOccurs="0" type="gml:MeasureType"/>
1719
+ <xs:element name="netSideAreaRight" minOccurs="0" type="gml:MeasureType"/>
1720
+ <xs:element name="grossVolume" minOccurs="0" type="gml:MeasureType"/>
1721
+ <xs:element name="netVolume" minOccurs="0" type="gml:MeasureType"/>
1722
+ </xs:sequence>
1723
+ </xs:extension>
1724
+ </xs:complexContent>
1725
+ </xs:complexType>
1726
+ <xs:complexType name="IfcWallPropertyType">
1727
+ <xs:sequence>
1728
+ <xs:element ref="uro:IfcWall"/>
1729
+ </xs:sequence>
1730
+ </xs:complexType>
1731
+ <xs:element name="IfcWallStandardCase" substitutionGroup="uro:IfcWall" type="uro:IfcWallStandardCaseType"/>
1732
+ <xs:complexType name="IfcWallStandardCaseType">
1733
+ <xs:complexContent>
1734
+ <xs:extension base="uro:IfcWallType">
1735
+ <xs:sequence/>
1736
+ </xs:extension>
1737
+ </xs:complexContent>
1738
+ </xs:complexType>
1739
+ <xs:complexType name="IfcWallStandardCasePropertyType">
1740
+ <xs:sequence>
1741
+ <xs:element ref="uro:IfcWallStandardCase"/>
1742
+ </xs:sequence>
1743
+ </xs:complexType>
1744
+ <xs:element name="IfcWindow" substitutionGroup="uro:IfcBuildingElement" type="uro:IfcWindowType"/>
1745
+ <xs:complexType name="IfcWindowType">
1746
+ <xs:complexContent>
1747
+ <xs:extension base="uro:IfcBuildingElementType">
1748
+ <xs:sequence>
1749
+ <xs:element name="overallHeight" minOccurs="0" type="gml:LengthType"/>
1750
+ <xs:element name="overallWidth" minOccurs="0" type="gml:LengthType"/>
1751
+ </xs:sequence>
1752
+ </xs:extension>
1753
+ </xs:complexContent>
1754
+ </xs:complexType>
1755
+ <xs:complexType name="IfcWindowPropertyType">
1756
+ <xs:sequence>
1757
+ <xs:element ref="uro:IfcWindow"/>
1758
+ </xs:sequence>
1759
+ </xs:complexType>
1760
+ <xs:element name="IfcZone" substitutionGroup="uro:IfcGroup" type="uro:IfcZoneType"/>
1761
+ <xs:complexType name="IfcZoneType">
1762
+ <xs:complexContent>
1763
+ <xs:extension base="uro:IfcGroupType">
1764
+ <xs:sequence/>
1765
+ </xs:extension>
1766
+ </xs:complexContent>
1767
+ </xs:complexType>
1768
+ <xs:complexType name="IfcZonePropertyType">
1769
+ <xs:sequence>
1770
+ <xs:element ref="uro:IfcZone"/>
1771
+ </xs:sequence>
1772
+ </xs:complexType>
1773
+ <xs:element name="IndoorAttribute" abstract="true" type="uro:IndoorAttributeType"/>
1774
+ <xs:complexType name="IndoorAttributeType" abstract="true">
1775
+ <xs:sequence>
1776
+ <xs:element name="source" minOccurs="0" type="gml:CodeType"/>
1777
+ </xs:sequence>
1778
+ </xs:complexType>
1779
+ <xs:complexType name="IndoorAttributePropertyType">
1780
+ <xs:sequence>
1781
+ <xs:element ref="uro:IndoorAttribute"/>
1782
+ </xs:sequence>
1783
+ </xs:complexType>
1784
+ <xs:element name="IndoorFacilityAttribute" substitutionGroup="uro:IndoorAttribute" type="uro:IndoorFacilityAttributeType"/>
1785
+ <xs:complexType name="IndoorFacilityAttributeType">
1786
+ <xs:complexContent>
1787
+ <xs:extension base="uro:IndoorAttributeType">
1788
+ <xs:sequence>
1789
+ <xs:element name="weekdayHours" minOccurs="0" type="xs:string"/>
1790
+ <xs:element name="weekendHours" minOccurs="0" type="xs:string"/>
1791
+ <xs:element name="phone" minOccurs="0" type="xs:string"/>
1792
+ <xs:element name="website" minOccurs="0" type="xs:string"/>
1793
+ </xs:sequence>
1794
+ </xs:extension>
1795
+ </xs:complexContent>
1796
+ </xs:complexType>
1797
+ <xs:complexType name="IndoorFacilityAttributePropertyType">
1798
+ <xs:sequence>
1799
+ <xs:element ref="uro:IndoorFacilityAttribute"/>
1800
+ </xs:sequence>
1801
+ </xs:complexType>
1802
+ <xs:element name="IndoorFurnishingAttribute" substitutionGroup="uro:IndoorAttribute" type="uro:IndoorFurnishingAttributeType"/>
1803
+ <xs:complexType name="IndoorFurnishingAttributeType">
1804
+ <xs:complexContent>
1805
+ <xs:extension base="uro:IndoorAttributeType">
1806
+ <xs:sequence>
1807
+ <xs:element name="floorId" minOccurs="0" type="xs:string"/>
1808
+ </xs:sequence>
1809
+ </xs:extension>
1810
+ </xs:complexContent>
1811
+ </xs:complexType>
1812
+ <xs:complexType name="IndoorFurnishingAttributePropertyType">
1813
+ <xs:sequence>
1814
+ <xs:element ref="uro:IndoorFurnishingAttribute"/>
1815
+ </xs:sequence>
1816
+ </xs:complexType>
1817
+ <xs:element name="IndoorPublicTagAttribute" substitutionGroup="uro:IndoorAttribute" type="uro:IndoorPublicTagAttributeType"/>
1818
+ <xs:complexType name="IndoorPublicTagAttributeType">
1819
+ <xs:complexContent>
1820
+ <xs:extension base="uro:IndoorAttributeType">
1821
+ <xs:sequence>
1822
+ <xs:element name="ucode" minOccurs="0" type="xs:string"/>
1823
+ </xs:sequence>
1824
+ </xs:extension>
1825
+ </xs:complexContent>
1826
+ </xs:complexType>
1827
+ <xs:complexType name="IndoorPublicTagAttributePropertyType">
1828
+ <xs:sequence>
1829
+ <xs:element ref="uro:IndoorPublicTagAttribute"/>
1830
+ </xs:sequence>
1831
+ </xs:complexType>
1832
+ <xs:element name="IndoorSpaceAttribute" substitutionGroup="uro:IndoorAttribute" type="uro:IndoorSpaceAttributeType"/>
1833
+ <xs:complexType name="IndoorSpaceAttributeType">
1834
+ <xs:complexContent>
1835
+ <xs:extension base="uro:IndoorAttributeType">
1836
+ <xs:sequence>
1837
+ <xs:element name="floorId" minOccurs="0" type="xs:string"/>
1838
+ <xs:element name="isRestricted" minOccurs="0" type="xs:boolean"/>
1839
+ <xs:element name="suite" minOccurs="0" type="xs:string"/>
1840
+ <xs:element name="isPublic" minOccurs="0" type="xs:boolean"/>
1841
+ <xs:element name="tollType" minOccurs="0" type="gml:CodeType"/>
1842
+ </xs:sequence>
1843
+ </xs:extension>
1844
+ </xs:complexContent>
1845
+ </xs:complexType>
1846
+ <xs:complexType name="IndoorSpaceAttributePropertyType">
1847
+ <xs:sequence>
1848
+ <xs:element ref="uro:IndoorSpaceAttribute"/>
1849
+ </xs:sequence>
1850
+ </xs:complexType>
1851
+ <xs:element name="IndoorStoreyAttribute" substitutionGroup="uro:IndoorAttribute" type="uro:IndoorStoreyAttributeType"/>
1852
+ <xs:complexType name="IndoorStoreyAttributeType">
1853
+ <xs:complexContent>
1854
+ <xs:extension base="uro:IndoorAttributeType">
1855
+ <xs:sequence>
1856
+ <xs:element name="category" minOccurs="0" type="xs:boolean"/>
1857
+ <xs:element name="ordinal" minOccurs="0" type="xs:double"/>
1858
+ </xs:sequence>
1859
+ </xs:extension>
1860
+ </xs:complexContent>
1861
+ </xs:complexType>
1862
+ <xs:complexType name="IndoorStoreyAttributePropertyType">
1863
+ <xs:sequence>
1864
+ <xs:element ref="uro:IndoorStoreyAttribute"/>
1865
+ </xs:sequence>
1866
+ </xs:complexType>
1867
+ <xs:element name="IndoorTactileTileAttribute" substitutionGroup="uro:IndoorAttribute" type="uro:IndoorTactileTileAttributeType"/>
1868
+ <xs:complexType name="IndoorTactileTileAttributeType">
1869
+ <xs:complexContent>
1870
+ <xs:extension base="uro:IndoorAttributeType">
1871
+ <xs:sequence>
1872
+ <xs:element name="startNode" minOccurs="0" type="xs:string"/>
1873
+ <xs:element name="endNode" minOccurs="0" type="xs:string"/>
1874
+ <xs:element name="category" minOccurs="0" type="gml:CodeType"/>
1875
+ <xs:element name="roof" minOccurs="0" type="gml:CodeType"/>
1876
+ <xs:element name="floorId" minOccurs="0" type="xs:string"/>
1877
+ </xs:sequence>
1878
+ </xs:extension>
1879
+ </xs:complexContent>
1880
+ </xs:complexType>
1881
+ <xs:complexType name="IndoorTactileTileAttributePropertyType">
1882
+ <xs:sequence>
1883
+ <xs:element ref="uro:IndoorTactileTileAttribute"/>
1884
+ </xs:sequence>
1885
+ </xs:complexType>
1886
+ <xs:element name="IndoorUserDefinedAttribute" substitutionGroup="uro:IndoorAttribute" type="uro:IndoorUserDefinedAttributeType"/>
1887
+ <xs:complexType name="IndoorUserDefinedAttributeType">
1888
+ <xs:complexContent>
1889
+ <xs:extension base="uro:IndoorAttributeType">
1890
+ <xs:sequence>
1891
+ <xs:element name="name" minOccurs="0" type="xs:string"/>
1892
+ <xs:element name="nominalValue" minOccurs="0" type="uro:UserDefinedValuePropertyType"/>
1893
+ <xs:element name="description" minOccurs="0" type="xs:string"/>
1894
+ <xs:element name="unit" minOccurs="0" type="xs:string"/>
1895
+ </xs:sequence>
1896
+ </xs:extension>
1897
+ </xs:complexContent>
1898
+ </xs:complexType>
1899
+ <xs:complexType name="IndoorUserDefinedAttributePropertyType">
1900
+ <xs:sequence>
1901
+ <xs:element ref="uro:IndoorUserDefinedAttribute"/>
1902
+ </xs:sequence>
1903
+ </xs:complexType>
1904
+ <xs:element name="IndoorZoneAttribute" substitutionGroup="uro:IndoorAttribute" type="uro:IndoorZoneAttributeType"/>
1905
+ <xs:complexType name="IndoorZoneAttributeType">
1906
+ <xs:complexContent>
1907
+ <xs:extension base="uro:IndoorAttributeType">
1908
+ <xs:sequence>
1909
+ <xs:element name="floorId" minOccurs="0" type="xs:string"/>
1910
+ </xs:sequence>
1911
+ </xs:extension>
1912
+ </xs:complexContent>
1913
+ </xs:complexType>
1914
+ <xs:complexType name="IndoorZoneAttributePropertyType">
1915
+ <xs:sequence>
1916
+ <xs:element ref="uro:IndoorZoneAttribute"/>
1917
+ </xs:sequence>
1918
+ </xs:complexType>
1919
+ <xs:element name="InlandFloodingRiskAttribute" substitutionGroup="uro:FloodingRiskAttribute" type="uro:InlandFloodingRiskAttributeType"/>
1920
+ <xs:complexType name="InlandFloodingRiskAttributeType">
1921
+ <xs:complexContent>
1922
+ <xs:extension base="uro:FloodingRiskAttributeType">
1923
+ <xs:sequence/>
1924
+ </xs:extension>
1925
+ </xs:complexContent>
1926
+ </xs:complexType>
1927
+ <xs:element name="KeyValuePairAttribute" type="uro:KeyValuePairAttributeType"/>
1928
+ <xs:complexType name="KeyValuePairAttributeType">
1929
+ <xs:sequence>
1930
+ <xs:element name="key" type="gml:CodeType"/>
1931
+ <xs:element name="codeValue" type="gml:CodeType"/>
1932
+ </xs:sequence>
1933
+ </xs:complexType>
1934
+ <xs:complexType name="KeyValuePairAttributePropertyType">
1935
+ <xs:sequence>
1936
+ <xs:element ref="uro:KeyValuePairAttribute"/>
1937
+ </xs:sequence>
1938
+ </xs:complexType>
1939
+ <xs:element name="LandSlideRiskAttribute" substitutionGroup="uro:DisasterRiskAttribute" type="uro:LandSlideRiskAttributeType"/>
1940
+ <xs:complexType name="LandSlideRiskAttributeType">
1941
+ <xs:complexContent>
1942
+ <xs:extension base="uro:DisasterRiskAttributeType">
1943
+ <xs:sequence>
1944
+ <xs:element name="areaType" type="gml:CodeType"/>
1945
+ </xs:sequence>
1946
+ </xs:extension>
1947
+ </xs:complexContent>
1948
+ </xs:complexType>
1949
+ <xs:element name="LandUseAttribute" abstract="true" type="uro:LandUseAttributeType"/>
1950
+ <xs:complexType name="LandUseAttributeType" abstract="true">
1951
+ <xs:sequence/>
1952
+ </xs:complexType>
1953
+ <xs:complexType name="LandUseAttributePropertyType">
1954
+ <xs:sequence>
1955
+ <xs:element ref="uro:LandUseAttribute"/>
1956
+ </xs:sequence>
1957
+ </xs:complexType>
1958
+ <xs:element name="LandUseDetailAttribute" substitutionGroup="uro:LandUseAttribute" type="uro:LandUseDetailAttributeType"/>
1959
+ <xs:complexType name="LandUseDetailAttributeType">
1960
+ <xs:complexContent>
1961
+ <xs:extension base="uro:LandUseAttributeType">
1962
+ <xs:sequence>
1963
+ <xs:element name="id" minOccurs="0" type="xs:string"/>
1964
+ <xs:element name="orgLandUse" minOccurs="0" type="gml:CodeType"/>
1965
+ <xs:element name="nominalArea" minOccurs="0" type="gml:MeasureType"/>
1966
+ <xs:element name="ownerType" minOccurs="0" type="gml:CodeType"/>
1967
+ <xs:element name="owner" minOccurs="0" type="xs:string"/>
1968
+ <xs:element name="areaInSquareMeter" minOccurs="0" type="gml:MeasureType"/>
1969
+ <xs:element name="areaInHa" minOccurs="0" type="gml:MeasureType"/>
1970
+ <xs:element name="buildingCoverageRate" minOccurs="0" type="xs:double"/>
1971
+ <xs:element name="floorAreaRate" minOccurs="0" type="xs:double"/>
1972
+ <xs:element name="specifiedBuildingCoverageRate" minOccurs="0" type="xs:double"/>
1973
+ <xs:element name="specifiedFloorAreaRate" minOccurs="0" type="xs:double"/>
1974
+ <xs:element name="standardFloorAreaRate" minOccurs="0" type="xs:double"/>
1975
+ <xs:element name="urbanPlanType" minOccurs="0" type="gml:CodeType"/>
1976
+ <xs:element name="areaClassificationType" minOccurs="0" type="gml:CodeType"/>
1977
+ <xs:element name="districtsAndZonesType" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
1978
+ <xs:element name="prefecture" minOccurs="0" type="gml:CodeType"/>
1979
+ <xs:element name="city" minOccurs="0" type="gml:CodeType"/>
1980
+ <xs:element name="reference" minOccurs="0" type="xs:string"/>
1981
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
1982
+ <xs:element name="surveyYear" minOccurs="0" type="xs:gYear"/>
1983
+ </xs:sequence>
1984
+ </xs:extension>
1985
+ </xs:complexContent>
1986
+ </xs:complexType>
1987
+ <xs:complexType name="LandUseDetailAttributePropertyType">
1988
+ <xs:sequence>
1989
+ <xs:element ref="uro:LandUseDetailAttribute"/>
1990
+ </xs:sequence>
1991
+ </xs:complexType>
1992
+ <xs:element name="LargeCustomerFacilityAttribute" substitutionGroup="uro:BuildingAttribute" type="uro:LargeCustomerFacilityAttributeType"/>
1993
+ <xs:complexType name="LargeCustomerFacilityAttributeType">
1994
+ <xs:complexContent>
1995
+ <xs:extension base="uro:BuildingAttributeType">
1996
+ <xs:sequence>
1997
+ <xs:element name="class" minOccurs="0" type="gml:CodeType"/>
1998
+ <xs:element name="name" minOccurs="0" type="xs:string"/>
1999
+ <xs:element name="capacity" minOccurs="0" type="xs:integer"/>
2000
+ <xs:element name="owner" minOccurs="0" type="xs:string"/>
2001
+ <xs:element name="totalFloorArea" minOccurs="0" type="gml:MeasureType"/>
2002
+ <xs:element name="totalStoreFloorArea" minOccurs="0" type="gml:MeasureType"/>
2003
+ <xs:element name="inauguralDate" minOccurs="0" type="xs:date"/>
2004
+ <xs:element name="yearOpened" minOccurs="0" type="xs:gYear"/>
2005
+ <xs:element name="yearClosed" minOccurs="0" type="xs:gYear"/>
2006
+ <xs:element name="keyTenants" minOccurs="0" type="xs:string"/>
2007
+ <xs:element name="availability" minOccurs="0" type="xs:boolean"/>
2008
+ <xs:element name="urbanPlanType" minOccurs="0" type="gml:CodeType"/>
2009
+ <xs:element name="areaClassificationType" minOccurs="0" type="gml:CodeType"/>
2010
+ <xs:element name="districtsAndZonesType" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2011
+ <xs:element name="landUseType" minOccurs="0" type="gml:CodeType"/>
2012
+ <xs:element name="reference" minOccurs="0" type="xs:string"/>
2013
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2014
+ <xs:element name="surveyYear" type="xs:gYear"/>
2015
+ </xs:sequence>
2016
+ </xs:extension>
2017
+ </xs:complexContent>
2018
+ </xs:complexType>
2019
+ <xs:complexType name="LargeCustomerFacilityAttributePropertyType">
2020
+ <xs:sequence>
2021
+ <xs:element ref="uro:LargeCustomerFacilityAttribute"/>
2022
+ </xs:sequence>
2023
+ </xs:complexType>
2024
+ <xs:element name="LengthAttribute" type="uro:LengthAttributeType"/>
2025
+ <xs:complexType name="LengthAttributeType">
2026
+ <xs:sequence>
2027
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
2028
+ <xs:element name="measureType" minOccurs="0" type="gml:CodeType"/>
2029
+ <xs:element name="phaseType" minOccurs="0" type="gml:CodeType"/>
2030
+ </xs:sequence>
2031
+ </xs:complexType>
2032
+ <xs:complexType name="LengthAttributePropertyType">
2033
+ <xs:sequence>
2034
+ <xs:element ref="uro:LengthAttribute"/>
2035
+ </xs:sequence>
2036
+ </xs:complexType>
2037
+ <xs:element name="LongevityMeasures" type="uro:LongevityMeasuresType"/>
2038
+ <xs:complexType name="LongevityMeasuresType">
2039
+ <xs:sequence>
2040
+ <xs:element name="fiscalYearForCountermeasures" type="xs:gYear"/>
2041
+ <xs:element name="countermeasuresCost" minOccurs="0" type="uro:CountermeasuresCostPropertyType"/>
2042
+ <xs:element name="description" minOccurs="0" type="xs:string"/>
2043
+ </xs:sequence>
2044
+ </xs:complexType>
2045
+ <xs:complexType name="LongevityMeasuresPropertyType">
2046
+ <xs:sequence>
2047
+ <xs:element ref="uro:LongevityMeasures"/>
2048
+ </xs:sequence>
2049
+ </xs:complexType>
2050
+ <xs:element name="MaintenanceHistoryAttribute" substitutionGroup="uro:FacilityAttribute" type="uro:MaintenanceHistoryAttributeType"/>
2051
+ <xs:complexType name="MaintenanceHistoryAttributeType">
2052
+ <xs:complexContent>
2053
+ <xs:extension base="uro:FacilityAttributeType">
2054
+ <xs:sequence>
2055
+ <xs:element name="maintenanceType" type="gml:CodeType"/>
2056
+ <xs:element name="maintenanceFiscalYear" minOccurs="0" type="xs:gYear"/>
2057
+ <xs:element name="maintenanceYear" minOccurs="0" type="xs:gYear"/>
2058
+ <xs:element name="maintenanceDate" minOccurs="0" type="xs:date"/>
2059
+ <xs:element name="status" minOccurs="0" type="xs:string"/>
2060
+ <xs:element name="description" minOccurs="0" type="gml:StringOrRefType"/>
2061
+ </xs:sequence>
2062
+ </xs:extension>
2063
+ </xs:complexContent>
2064
+ </xs:complexType>
2065
+ <xs:complexType name="MaintenanceHistoryAttributePropertyType">
2066
+ <xs:sequence>
2067
+ <xs:element ref="uro:MaintenanceHistoryAttribute"/>
2068
+ </xs:sequence>
2069
+ </xs:complexType>
2070
+ <xs:element name="Manhole" substitutionGroup="uro:UtilityNodeContainer" type="uro:ManholeType"/>
2071
+ <xs:complexType name="ManholeType">
2072
+ <xs:complexContent>
2073
+ <xs:extension base="uro:UtilityNodeContainerType">
2074
+ <xs:sequence>
2075
+ <xs:element name="elevation" minOccurs="0" type="gml:LengthType"/>
2076
+ </xs:sequence>
2077
+ </xs:extension>
2078
+ </xs:complexContent>
2079
+ </xs:complexType>
2080
+ <xs:complexType name="ManholePropertyType">
2081
+ <xs:sequence minOccurs="0">
2082
+ <xs:element ref="uro:Manhole"/>
2083
+ </xs:sequence>
2084
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2085
+ </xs:complexType>
2086
+ <xs:element name="MooringFacility" substitutionGroup="uro:PortAttribute" type="uro:MooringFacilityType"/>
2087
+ <xs:complexType name="MooringFacilityType">
2088
+ <xs:complexContent>
2089
+ <xs:extension base="uro:PortAttributeType">
2090
+ <xs:sequence>
2091
+ <xs:element name="mainPartLength" minOccurs="0" type="gml:LengthType"/>
2092
+ <xs:element name="totalLength" minOccurs="0" type="gml:LengthType"/>
2093
+ <xs:element name="facilityWidth" minOccurs="0" type="gml:LengthType"/>
2094
+ <xs:element name="apronWidth" minOccurs="0" type="gml:LengthType"/>
2095
+ <xs:element name="plannedDepth" minOccurs="0" type="gml:LengthType"/>
2096
+ <xs:element name="currentDepth" minOccurs="0" type="gml:LengthType"/>
2097
+ <xs:element name="area" minOccurs="0" type="gml:MeasureType"/>
2098
+ <xs:element name="ceilingHeight" minOccurs="0" type="gml:LengthType"/>
2099
+ <xs:element name="gravityResistant" minOccurs="0" type="gml:MeasureType"/>
2100
+ <xs:element name="form" minOccurs="0" type="gml:CodeType"/>
2101
+ <xs:element name="mainVessels" minOccurs="0" type="gml:CodeType"/>
2102
+ <xs:element name="mooringPostWeight" minOccurs="0" type="gml:MeasureType"/>
2103
+ <xs:element name="numberOfMooringPosts" minOccurs="0" type="xs:integer"/>
2104
+ <xs:element name="resistantMaterial" minOccurs="0" type="xs:integer"/>
2105
+ <xs:element name="lighting" minOccurs="0" type="xs:integer"/>
2106
+ <xs:element name="stairs" minOccurs="0" type="xs:integer"/>
2107
+ <xs:element name="lifesavingAppliances" minOccurs="0" type="xs:string"/>
2108
+ <xs:element name="numberOfLifesavingAppliances" minOccurs="0" type="xs:integer"/>
2109
+ <xs:element name="bumper" minOccurs="0" type="gml:LengthType"/>
2110
+ <xs:element name="numberOfVehicleBoardings" minOccurs="0" type="xs:integer"/>
2111
+ <xs:element name="vehicleBoardingWidth" minOccurs="0" type="gml:LengthType"/>
2112
+ <xs:element name="shipType" minOccurs="0" type="xs:string"/>
2113
+ <xs:element name="numberOfSeats" minOccurs="0" type="xs:integer"/>
2114
+ <xs:element name="mainCargo" minOccurs="0" type="gml:CodeType"/>
2115
+ <xs:element name="structureType" minOccurs="0" type="gml:CodeType"/>
2116
+ <xs:element name="mainMaterial" minOccurs="0" type="gml:CodeType"/>
2117
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2118
+ <xs:element name="subsidy" minOccurs="0" type="xs:integer"/>
2119
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2120
+ </xs:sequence>
2121
+ </xs:extension>
2122
+ </xs:complexContent>
2123
+ </xs:complexType>
2124
+ <xs:complexType name="MooringFacilityPropertyType">
2125
+ <xs:sequence>
2126
+ <xs:element ref="uro:MooringFacility"/>
2127
+ </xs:sequence>
2128
+ </xs:complexType>
2129
+ <xs:element name="NavigationAssistanceFacility" substitutionGroup="uro:PortAttribute" type="uro:NavigationAssistanceFacilityType"/>
2130
+ <xs:complexType name="NavigationAssistanceFacilityType">
2131
+ <xs:complexContent>
2132
+ <xs:extension base="uro:PortAttributeType">
2133
+ <xs:sequence>
2134
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2135
+ <xs:element name="subsidy" minOccurs="0" type="xs:string"/>
2136
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2137
+ </xs:sequence>
2138
+ </xs:extension>
2139
+ </xs:complexContent>
2140
+ </xs:complexType>
2141
+ <xs:complexType name="NavigationAssistanceFacilityPropertyType">
2142
+ <xs:sequence>
2143
+ <xs:element ref="uro:NavigationAssistanceFacility"/>
2144
+ </xs:sequence>
2145
+ </xs:complexType>
2146
+ <xs:element name="NumberOfFacilities" type="uro:NumberOfFacilitiesType"/>
2147
+ <xs:complexType name="NumberOfFacilitiesType">
2148
+ <xs:sequence>
2149
+ <xs:element name="quantity" type="xs:integer"/>
2150
+ <xs:element name="quantityUnit" type="gml:CodeType"/>
2151
+ </xs:sequence>
2152
+ </xs:complexType>
2153
+ <xs:complexType name="NumberOfFacilitiesPropertyType">
2154
+ <xs:sequence>
2155
+ <xs:element ref="uro:NumberOfFacilities"/>
2156
+ </xs:sequence>
2157
+ </xs:complexType>
2158
+ <xs:element name="Occupancy" type="uro:OccupancyType"/>
2159
+ <xs:complexType name="OccupancyType">
2160
+ <xs:sequence>
2161
+ <xs:element name="interval" minOccurs="0" type="gml:CodeType"/>
2162
+ <xs:element name="numberOfOccupants" type="xs:integer"/>
2163
+ <xs:element name="occupantType" minOccurs="0" type="gml:CodeType"/>
2164
+ </xs:sequence>
2165
+ </xs:complexType>
2166
+ <xs:complexType name="OccupancyPropertyType">
2167
+ <xs:sequence>
2168
+ <xs:element ref="uro:Occupancy"/>
2169
+ </xs:sequence>
2170
+ </xs:complexType>
2171
+ <xs:element name="OffsetDepth" type="uro:OffsetDepthType"/>
2172
+ <xs:complexType name="OffsetDepthType">
2173
+ <xs:sequence>
2174
+ <xs:element name="pos" minOccurs="0" type="gml:DirectPositionType"/>
2175
+ <xs:element name="offset" minOccurs="0" type="gml:LengthType"/>
2176
+ <xs:element name="depth" minOccurs="0" type="gml:LengthType"/>
2177
+ <xs:element name="minDepth" minOccurs="0" type="gml:LengthType"/>
2178
+ <xs:element name="maxDepth" minOccurs="0" type="gml:LengthType"/>
2179
+ </xs:sequence>
2180
+ </xs:complexType>
2181
+ <xs:complexType name="OffsetDepthPropertyType">
2182
+ <xs:sequence>
2183
+ <xs:element ref="uro:OffsetDepth"/>
2184
+ </xs:sequence>
2185
+ </xs:complexType>
2186
+ <xs:element name="OilGasChemicalsPipe" substitutionGroup="uro:Pipe" type="uro:OilGasChemicalsPipeType"/>
2187
+ <xs:complexType name="OilGasChemicalsPipeType">
2188
+ <xs:complexContent>
2189
+ <xs:extension base="uro:PipeType">
2190
+ <xs:sequence/>
2191
+ </xs:extension>
2192
+ </xs:complexContent>
2193
+ </xs:complexType>
2194
+ <xs:complexType name="OilGasChemicalsPipePropertyType">
2195
+ <xs:sequence minOccurs="0">
2196
+ <xs:element ref="uro:OilGasChemicalsPipe"/>
2197
+ </xs:sequence>
2198
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2199
+ </xs:complexType>
2200
+ <xs:element name="OtherConstruction" substitutionGroup="uro:AbstractConstruction" type="uro:OtherConstructionType"/>
2201
+ <xs:complexType name="OtherConstructionType">
2202
+ <xs:complexContent>
2203
+ <xs:extension base="uro:AbstractConstructionType">
2204
+ <xs:sequence>
2205
+ <xs:element name="class" minOccurs="0" type="gml:CodeType"/>
2206
+ <xs:element name="function" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2207
+ <xs:element name="usage" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2208
+ </xs:sequence>
2209
+ </xs:extension>
2210
+ </xs:complexContent>
2211
+ </xs:complexType>
2212
+ <xs:complexType name="OtherConstructionPropertyType">
2213
+ <xs:sequence minOccurs="0">
2214
+ <xs:element ref="uro:OtherConstruction"/>
2215
+ </xs:sequence>
2216
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2217
+ </xs:complexType>
2218
+ <xs:element name="OuterCeilingSurface" substitutionGroup="uro:_BoundarySurface" type="uro:OuterCeilingSurfaceType"/>
2219
+ <xs:complexType name="OuterCeilingSurfaceType">
2220
+ <xs:complexContent>
2221
+ <xs:extension base="uro:_BoundarySurfaceType">
2222
+ <xs:sequence/>
2223
+ </xs:extension>
2224
+ </xs:complexContent>
2225
+ </xs:complexType>
2226
+ <xs:complexType name="OuterCeilingSurfacePropertyType">
2227
+ <xs:sequence minOccurs="0">
2228
+ <xs:element ref="uro:OuterCeilingSurface"/>
2229
+ </xs:sequence>
2230
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2231
+ </xs:complexType>
2232
+ <xs:element name="OuterFloorSurface" substitutionGroup="uro:_BoundarySurface" type="uro:OuterFloorSurfaceType"/>
2233
+ <xs:complexType name="OuterFloorSurfaceType">
2234
+ <xs:complexContent>
2235
+ <xs:extension base="uro:_BoundarySurfaceType">
2236
+ <xs:sequence/>
2237
+ </xs:extension>
2238
+ </xs:complexContent>
2239
+ </xs:complexType>
2240
+ <xs:complexType name="OuterFloorSurfacePropertyType">
2241
+ <xs:sequence minOccurs="0">
2242
+ <xs:element ref="uro:OuterFloorSurface"/>
2243
+ </xs:sequence>
2244
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2245
+ </xs:complexType>
2246
+ <xs:element name="ParkFacilityLongevityPlanAttribute" substitutionGroup="uro:FacilityAttribute" type="uro:ParkFacilityLongevityPlanAttributeType"/>
2247
+ <xs:complexType name="ParkFacilityLongevityPlanAttributeType">
2248
+ <xs:complexContent>
2249
+ <xs:extension base="uro:FacilityAttributeType">
2250
+ <xs:sequence>
2251
+ <xs:element name="parkCode" type="gml:CodeType"/>
2252
+ <xs:element name="parkName" type="gml:CodeType"/>
2253
+ <xs:element name="parkType" type="gml:CodeType"/>
2254
+ <xs:element name="facilityName" minOccurs="0" type="gml:CodeType"/>
2255
+ <xs:element name="facilityNameOptional" minOccurs="0" type="xs:string"/>
2256
+ <xs:element name="specificFacilityName" type="xs:string"/>
2257
+ <xs:element name="numberOfFacilities" minOccurs="0" type="uro:NumberOfFacilitiesPropertyType"/>
2258
+ <xs:element name="size" minOccurs="0" type="xs:string"/>
2259
+ <xs:element name="mainMaterial" minOccurs="0" type="gml:CodeType"/>
2260
+ <xs:element name="mainMaterialOptional" minOccurs="0" type="xs:string"/>
2261
+ <xs:element name="installationYear" type="xs:gYear"/>
2262
+ <xs:element name="disposalLimitPeriod" minOccurs="0" type="xs:integer"/>
2263
+ <xs:element name="expectedUsagePeriod" minOccurs="0" type="xs:integer"/>
2264
+ <xs:element name="repairsBeforeParkHealthAssessment" minOccurs="0" type="uro:RepairsBeforeParkHealthAssessmentPropertyType"/>
2265
+ <xs:element name="parkHealthAssessment" maxOccurs="unbounded" minOccurs="0" type="uro:ParkHealthAssessmentPropertyType"/>
2266
+ <xs:element name="managementType" minOccurs="0" type="gml:CodeType"/>
2267
+ <xs:element name="expectedRenewalYearWithMeasures" minOccurs="0" type="xs:gYear"/>
2268
+ <xs:element name="longevityMeasures" maxOccurs="unbounded" minOccurs="0" type="uro:LongevityMeasuresPropertyType"/>
2269
+ <xs:element name="noteForLongevity" minOccurs="0" type="xs:string"/>
2270
+ </xs:sequence>
2271
+ </xs:extension>
2272
+ </xs:complexContent>
2273
+ </xs:complexType>
2274
+ <xs:complexType name="ParkFacilityLongevityPlanAttributePropertyType">
2275
+ <xs:sequence>
2276
+ <xs:element ref="uro:ParkFacilityLongevityPlanAttribute"/>
2277
+ </xs:sequence>
2278
+ </xs:complexType>
2279
+ <xs:element name="ParkHealthAssessment" type="uro:ParkHealthAssessmentType"/>
2280
+ <xs:complexType name="ParkHealthAssessmentType">
2281
+ <xs:sequence>
2282
+ <xs:element name="assessmentFiscalYear" type="xs:gYear"/>
2283
+ <xs:element name="deteriorationStatus" minOccurs="0" type="xs:string"/>
2284
+ <xs:element name="condition" minOccurs="0" type="gml:CodeType"/>
2285
+ <xs:element name="urgency" minOccurs="0" type="gml:CodeType"/>
2286
+ </xs:sequence>
2287
+ </xs:complexType>
2288
+ <xs:complexType name="ParkHealthAssessmentPropertyType">
2289
+ <xs:sequence>
2290
+ <xs:element ref="uro:ParkHealthAssessment"/>
2291
+ </xs:sequence>
2292
+ </xs:complexType>
2293
+ <xs:element name="Pipe" substitutionGroup="uro:UtilityLink" type="uro:PipeType"/>
2294
+ <xs:complexType name="PipeType">
2295
+ <xs:complexContent>
2296
+ <xs:extension base="uro:UtilityLinkType">
2297
+ <xs:sequence>
2298
+ <xs:element name="innerDiameter" minOccurs="0" type="gml:LengthType"/>
2299
+ <xs:element name="outerDiameter" minOccurs="0" type="gml:LengthType"/>
2300
+ <xs:element name="sleeveType" minOccurs="0" type="gml:CodeType"/>
2301
+ </xs:sequence>
2302
+ </xs:extension>
2303
+ </xs:complexContent>
2304
+ </xs:complexType>
2305
+ <xs:complexType name="PipePropertyType">
2306
+ <xs:sequence minOccurs="0">
2307
+ <xs:element ref="uro:Pipe"/>
2308
+ </xs:sequence>
2309
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2310
+ </xs:complexType>
2311
+ <xs:element name="PointCloud" substitutionGroup="uro:AbstractPointCloud" type="uro:PointCloudType"/>
2312
+ <xs:complexType name="PointCloudType">
2313
+ <xs:complexContent>
2314
+ <xs:extension base="uro:AbstractPointCloudType">
2315
+ <xs:sequence>
2316
+ <xs:element name="mimeType" minOccurs="0" type="gml:CodeType"/>
2317
+ <xs:element name="pointFile" minOccurs="0" type="xs:anyURI"/>
2318
+ <xs:element name="pointFileSrsName" minOccurs="0" type="xs:string"/>
2319
+ <xs:element name="points" minOccurs="0" type="gml:MultiPointPropertyType"/>
2320
+ <xs:element name="pointCloudSpecAttribute" minOccurs="0" type="uro:PointCloudSpecAttributePropertyType"/>
2321
+ </xs:sequence>
2322
+ </xs:extension>
2323
+ </xs:complexContent>
2324
+ </xs:complexType>
2325
+ <xs:complexType name="PointCloudPropertyType">
2326
+ <xs:sequence minOccurs="0">
2327
+ <xs:element ref="uro:PointCloud"/>
2328
+ </xs:sequence>
2329
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2330
+ </xs:complexType>
2331
+ <xs:element name="PointCloudSpecAttribute" type="uro:PointCloudSpecAttributeType"/>
2332
+ <xs:complexType name="PointCloudSpecAttributeType">
2333
+ <xs:sequence>
2334
+ <xs:element name="class" type="gml:CodeType"/>
2335
+ <xs:element name="function" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2336
+ <xs:element name="srcScale" minOccurs="0" type="gml:CodeType"/>
2337
+ <xs:element name="srcRequiredHorizontalAccuracy" minOccurs="0" type="gml:LengthType"/>
2338
+ <xs:element name="srcRequiredVerticalAccuracy" minOccurs="0" type="gml:LengthType"/>
2339
+ <xs:element name="srcRequiredPointDensity" minOccurs="0" type="gml:MeasureType"/>
2340
+ <xs:element name="srcFilteringCriteria" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2341
+ <xs:element name="srcGridInterval" minOccurs="0" type="gml:MeasureType"/>
2342
+ <xs:element name="isIntensity" minOccurs="0" type="xs:boolean"/>
2343
+ <xs:element name="spectralBandSet" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2344
+ <xs:element name="isReturnInfo" minOccurs="0" type="xs:boolean"/>
2345
+ <xs:element name="isStandardClassification" minOccurs="0" type="xs:boolean"/>
2346
+ <xs:element name="customClassificationType" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2347
+ <xs:element name="pointCloudAssociationMethod" type="gml:CodeType"/>
2348
+ <xs:element name="pointSubsamplingInfo" minOccurs="0" type="gml:CodeType"/>
2349
+ </xs:sequence>
2350
+ </xs:complexType>
2351
+ <xs:complexType name="PointCloudSpecAttributePropertyType">
2352
+ <xs:sequence>
2353
+ <xs:element ref="uro:PointCloudSpecAttribute"/>
2354
+ </xs:sequence>
2355
+ </xs:complexType>
2356
+ <xs:element name="PortAttribute" abstract="true" substitutionGroup="uro:FacilityAttribute" type="uro:PortAttributeType"/>
2357
+ <xs:complexType name="PortAttributeType" abstract="true">
2358
+ <xs:complexContent>
2359
+ <xs:extension base="uro:FacilityAttributeType">
2360
+ <xs:sequence>
2361
+ <xs:element name="portFacilityDetailsType" type="gml:CodeType"/>
2362
+ <xs:element name="portName" type="xs:string"/>
2363
+ <xs:element name="portStatus" minOccurs="0" type="gml:CodeType"/>
2364
+ <xs:element name="district" minOccurs="0" type="xs:string"/>
2365
+ <xs:element name="grantType" minOccurs="0" type="gml:CodeType"/>
2366
+ <xs:element name="isDesignated" minOccurs="0" type="xs:boolean"/>
2367
+ <xs:element name="degradationLevel" minOccurs="0" type="xs:integer"/>
2368
+ </xs:sequence>
2369
+ </xs:extension>
2370
+ </xs:complexContent>
2371
+ </xs:complexType>
2372
+ <xs:complexType name="PortAttributePropertyType">
2373
+ <xs:sequence>
2374
+ <xs:element ref="uro:PortAttribute"/>
2375
+ </xs:sequence>
2376
+ </xs:complexType>
2377
+ <xs:element name="PortEnvironmentalImprovementFacility" substitutionGroup="uro:PortAttribute" type="uro:PortEnvironmentalImprovementFacilityType"/>
2378
+ <xs:complexType name="PortEnvironmentalImprovementFacilityType">
2379
+ <xs:complexContent>
2380
+ <xs:extension base="uro:PortAttributeType">
2381
+ <xs:sequence>
2382
+ <xs:element name="usage" minOccurs="0" type="xs:string"/>
2383
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
2384
+ <xs:element name="area" minOccurs="0" type="gml:MeasureType"/>
2385
+ <xs:element name="totalFloorArea" minOccurs="0" type="gml:MeasureType"/>
2386
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2387
+ <xs:element name="subsidy" minOccurs="0" type="xs:integer"/>
2388
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2389
+ </xs:sequence>
2390
+ </xs:extension>
2391
+ </xs:complexContent>
2392
+ </xs:complexType>
2393
+ <xs:complexType name="PortEnvironmentalImprovementFacilityPropertyType">
2394
+ <xs:sequence>
2395
+ <xs:element ref="uro:PortEnvironmentalImprovementFacility"/>
2396
+ </xs:sequence>
2397
+ </xs:complexType>
2398
+ <xs:element name="PortManagementFacility" substitutionGroup="uro:PortAttribute" type="uro:PortManagementFacilityType"/>
2399
+ <xs:complexType name="PortManagementFacilityType">
2400
+ <xs:complexContent>
2401
+ <xs:extension base="uro:PortAttributeType">
2402
+ <xs:sequence>
2403
+ <xs:element name="totalFloorArea" minOccurs="0" type="gml:MeasureType"/>
2404
+ <xs:element name="numberOfShipTypes" minOccurs="0" type="xs:integer"/>
2405
+ <xs:element name="unitOfShipType" minOccurs="0" type="gml:CodeType"/>
2406
+ <xs:element name="loadingCapacity" minOccurs="0" type="xs:integer"/>
2407
+ <xs:element name="acquisitionYear" minOccurs="0" type="xs:gYear"/>
2408
+ <xs:element name="usage" minOccurs="0" type="xs:string"/>
2409
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2410
+ <xs:element name="subsidy" minOccurs="0" type="xs:integer"/>
2411
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2412
+ </xs:sequence>
2413
+ </xs:extension>
2414
+ </xs:complexContent>
2415
+ </xs:complexType>
2416
+ <xs:complexType name="PortManagementFacilityPropertyType">
2417
+ <xs:sequence>
2418
+ <xs:element ref="uro:PortManagementFacility"/>
2419
+ </xs:sequence>
2420
+ </xs:complexType>
2421
+ <xs:element name="PortPassengerFacility" substitutionGroup="uro:PortAttribute" type="uro:PortPassengerFacilityType"/>
2422
+ <xs:complexType name="PortPassengerFacilityType">
2423
+ <xs:complexContent>
2424
+ <xs:extension base="uro:PortAttributeType">
2425
+ <xs:sequence>
2426
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
2427
+ <xs:element name="width" minOccurs="0" type="gml:LengthType"/>
2428
+ <xs:element name="mainMaterial" minOccurs="0" type="gml:CodeType"/>
2429
+ <xs:element name="totalFloorArea" minOccurs="0" type="gml:MeasureType"/>
2430
+ <xs:element name="acquisitionYear" minOccurs="0" type="xs:gYear"/>
2431
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2432
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2433
+ </xs:sequence>
2434
+ </xs:extension>
2435
+ </xs:complexContent>
2436
+ </xs:complexType>
2437
+ <xs:complexType name="PortPassengerFacilityPropertyType">
2438
+ <xs:sequence>
2439
+ <xs:element ref="uro:PortPassengerFacility"/>
2440
+ </xs:sequence>
2441
+ </xs:complexType>
2442
+ <xs:element name="PortPollutionControlFacility" substitutionGroup="uro:PortAttribute" type="uro:PortPollutionControlFacilityType"/>
2443
+ <xs:complexType name="PortPollutionControlFacilityType">
2444
+ <xs:complexContent>
2445
+ <xs:extension base="uro:PortAttributeType">
2446
+ <xs:sequence>
2447
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
2448
+ <xs:element name="width" minOccurs="0" type="gml:LengthType"/>
2449
+ <xs:element name="crossSectionalArea" minOccurs="0" type="gml:MeasureType"/>
2450
+ <xs:element name="area" minOccurs="0" type="gml:MeasureType"/>
2451
+ <xs:element name="height" minOccurs="0" type="gml:LengthType"/>
2452
+ <xs:element name="mainMaterial" minOccurs="0" type="gml:CodeType"/>
2453
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2454
+ <xs:element name="subsidy" minOccurs="0" type="xs:integer"/>
2455
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2456
+ </xs:sequence>
2457
+ </xs:extension>
2458
+ </xs:complexContent>
2459
+ </xs:complexType>
2460
+ <xs:complexType name="PortPollutionControlFacilityPropertyType">
2461
+ <xs:sequence>
2462
+ <xs:element ref="uro:PortPollutionControlFacility"/>
2463
+ </xs:sequence>
2464
+ </xs:complexType>
2465
+ <xs:element name="PortProtectiveFacility" substitutionGroup="uro:PortAttribute" type="uro:PortProtectiveFacilityType"/>
2466
+ <xs:complexType name="PortProtectiveFacilityType">
2467
+ <xs:complexContent>
2468
+ <xs:extension base="uro:PortAttributeType">
2469
+ <xs:sequence>
2470
+ <xs:element name="structureType" minOccurs="0" type="gml:CodeType"/>
2471
+ <xs:element name="mainMaterial" minOccurs="0" type="gml:CodeType"/>
2472
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2473
+ <xs:element name="subsidy" minOccurs="0" type="xs:integer"/>
2474
+ <xs:element name="note" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
2475
+ </xs:sequence>
2476
+ </xs:extension>
2477
+ </xs:complexContent>
2478
+ </xs:complexType>
2479
+ <xs:complexType name="PortProtectiveFacilityPropertyType">
2480
+ <xs:sequence>
2481
+ <xs:element ref="uro:PortProtectiveFacility"/>
2482
+ </xs:sequence>
2483
+ </xs:complexType>
2484
+ <xs:element name="PortStorageFacility" substitutionGroup="uro:PortAttribute" type="uro:PortStorageFacilityType"/>
2485
+ <xs:complexType name="PortStorageFacilityType">
2486
+ <xs:complexContent>
2487
+ <xs:extension base="uro:PortAttributeType">
2488
+ <xs:sequence>
2489
+ <xs:element name="innerTotalFloorArea" minOccurs="0" type="gml:MeasureType"/>
2490
+ <xs:element name="innerOfSiteArea" minOccurs="0" type="gml:MeasureType"/>
2491
+ <xs:element name="outerOfTotalFloorArea" minOccurs="0" type="gml:MeasureType"/>
2492
+ <xs:element name="outerSiteArea" minOccurs="0" type="gml:MeasureType"/>
2493
+ <xs:element name="mainCargo" minOccurs="0" type="gml:CodeType"/>
2494
+ <xs:element name="storageCapacity" minOccurs="0" type="xs:integer"/>
2495
+ <xs:element name="storageCapacityUnit" minOccurs="0" type="gml:CodeType"/>
2496
+ <xs:element name="mainMaterial" minOccurs="0" type="gml:CodeType"/>
2497
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2498
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2499
+ </xs:sequence>
2500
+ </xs:extension>
2501
+ </xs:complexContent>
2502
+ </xs:complexType>
2503
+ <xs:complexType name="PortStorageFacilityPropertyType">
2504
+ <xs:sequence>
2505
+ <xs:element ref="uro:PortStorageFacility"/>
2506
+ </xs:sequence>
2507
+ </xs:complexType>
2508
+ <xs:element name="PortTransportationFacility" substitutionGroup="uro:PortAttribute" type="uro:PortTransportationFacilityType"/>
2509
+ <xs:complexType name="PortTransportationFacilityType">
2510
+ <xs:complexContent>
2511
+ <xs:extension base="uro:PortAttributeType">
2512
+ <xs:sequence>
2513
+ <xs:element name="structureType" minOccurs="0" type="gml:CodeType"/>
2514
+ <xs:element name="startingPoint" minOccurs="0" type="xs:string"/>
2515
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
2516
+ <xs:element name="area" minOccurs="0" type="gml:MeasureType"/>
2517
+ <xs:element name="beddingWidth" minOccurs="0" type="gml:LengthType"/>
2518
+ <xs:element name="numberOfLanes" minOccurs="0" type="xs:integer"/>
2519
+ <xs:element name="parkingLotCapacityOfBus" minOccurs="0" type="xs:integer"/>
2520
+ <xs:element name="parkingLotCapacityOfCars" minOccurs="0" type="xs:integer"/>
2521
+ <xs:element name="routeType" minOccurs="0" type="gml:CodeType"/>
2522
+ <xs:element name="heightToDigit" minOccurs="0" type="gml:LengthType"/>
2523
+ <xs:element name="heightLimit" minOccurs="0" type="gml:LengthType"/>
2524
+ <xs:element name="minimumWidth" minOccurs="0" type="gml:LengthType"/>
2525
+ <xs:element name="minimumDepth" minOccurs="0" type="gml:LengthType"/>
2526
+ <xs:element name="numberOfAircraftParkingSpaces" minOccurs="0" type="xs:integer"/>
2527
+ <xs:element name="pavementType" minOccurs="0" type="gml:CodeType"/>
2528
+ <xs:element name="mainCargo" minOccurs="0" type="gml:CodeType"/>
2529
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2530
+ <xs:element name="subsidy" minOccurs="0" type="xs:integer"/>
2531
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2532
+ </xs:sequence>
2533
+ </xs:extension>
2534
+ </xs:complexContent>
2535
+ </xs:complexType>
2536
+ <xs:complexType name="PortTransportationFacilityPropertyType">
2537
+ <xs:sequence>
2538
+ <xs:element ref="uro:PortTransportationFacility"/>
2539
+ </xs:sequence>
2540
+ </xs:complexType>
2541
+ <xs:element name="PortWasteTreatmentFacility" substitutionGroup="uro:PortAttribute" type="uro:PortWasteTreatmentFacilityType"/>
2542
+ <xs:complexType name="PortWasteTreatmentFacilityType">
2543
+ <xs:complexContent>
2544
+ <xs:extension base="uro:PortAttributeType">
2545
+ <xs:sequence>
2546
+ <xs:element name="structureType" minOccurs="0" type="gml:CodeType"/>
2547
+ <xs:element name="perimeter" minOccurs="0" type="gml:LengthType"/>
2548
+ <xs:element name="mainPartLength" minOccurs="0" type="gml:LengthType"/>
2549
+ <xs:element name="innerShoreLength" minOccurs="0" type="gml:LengthType"/>
2550
+ <xs:element name="ceilingHeight" minOccurs="0" type="gml:LengthType"/>
2551
+ <xs:element name="waveDissipatorLength" minOccurs="0" type="gml:LengthType"/>
2552
+ <xs:element name="mainMaterial" minOccurs="0" type="gml:CodeType"/>
2553
+ <xs:element name="wasteType" minOccurs="0" type="gml:CodeType"/>
2554
+ <xs:element name="plannedDisposalArea" minOccurs="0" type="gml:MeasureType"/>
2555
+ <xs:element name="plannedDisposalAmount" minOccurs="0" type="xs:integer"/>
2556
+ <xs:element name="receivingCapacity" minOccurs="0" type="xs:integer"/>
2557
+ <xs:element name="shipType" minOccurs="0" type="xs:string"/>
2558
+ <xs:element name="unitOfReceivingCapacity" minOccurs="0" type="gml:CodeType"/>
2559
+ <xs:element name="acquisitionYear" minOccurs="0" type="xs:gYear"/>
2560
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2561
+ <xs:element name="subsidy" minOccurs="0" type="xs:integer"/>
2562
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2563
+ </xs:sequence>
2564
+ </xs:extension>
2565
+ </xs:complexContent>
2566
+ </xs:complexType>
2567
+ <xs:complexType name="PortWasteTreatmentFacilityPropertyType">
2568
+ <xs:sequence>
2569
+ <xs:element ref="uro:PortWasteTreatmentFacility"/>
2570
+ </xs:sequence>
2571
+ </xs:complexType>
2572
+ <xs:element name="PortWelfareFacility" substitutionGroup="uro:PortAttribute" type="uro:PortWelfareFacilityType"/>
2573
+ <xs:complexType name="PortWelfareFacilityType">
2574
+ <xs:complexContent>
2575
+ <xs:extension base="uro:PortAttributeType">
2576
+ <xs:sequence>
2577
+ <xs:element name="totalFloorArea" minOccurs="0" type="gml:MeasureType"/>
2578
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2579
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2580
+ </xs:sequence>
2581
+ </xs:extension>
2582
+ </xs:complexContent>
2583
+ </xs:complexType>
2584
+ <xs:complexType name="PortWelfareFacilityPropertyType">
2585
+ <xs:sequence>
2586
+ <xs:element ref="uro:PortWelfareFacility"/>
2587
+ </xs:sequence>
2588
+ </xs:complexType>
2589
+ <xs:element name="PublicLand" substitutionGroup="luse:LandUse" type="uro:PublicLandType"/>
2590
+ <xs:complexType name="PublicLandType">
2591
+ <xs:complexContent>
2592
+ <xs:extension base="luse:LandUseType">
2593
+ <xs:sequence>
2594
+ <xs:element name="id" type="xs:string"/>
2595
+ <xs:element name="ownerName" minOccurs="0" type="xs:string"/>
2596
+ <xs:element name="ownerType" minOccurs="0" type="gml:CodeType"/>
2597
+ <xs:element name="landCategory" minOccurs="0" type="xs:string"/>
2598
+ <xs:element name="area" minOccurs="0" type="gml:MeasureType"/>
2599
+ <xs:element name="status" minOccurs="0" type="xs:string"/>
2600
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2601
+ </xs:sequence>
2602
+ </xs:extension>
2603
+ </xs:complexContent>
2604
+ </xs:complexType>
2605
+ <xs:complexType name="PublicLandPropertyType">
2606
+ <xs:sequence minOccurs="0">
2607
+ <xs:element ref="uro:PublicLand"/>
2608
+ </xs:sequence>
2609
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2610
+ </xs:complexType>
2611
+ <xs:element name="PublicSurveyDataQualityAttribute" type="uro:PublicSurveyDataQualityAttributeType"/>
2612
+ <xs:complexType name="PublicSurveyDataQualityAttributeType">
2613
+ <xs:sequence>
2614
+ <xs:element name="srcScaleLod0" minOccurs="0" type="gml:CodeType"/>
2615
+ <xs:element name="srcScaleLod1" minOccurs="0" type="gml:CodeType"/>
2616
+ <xs:element name="srcScaleLod2" minOccurs="0" type="gml:CodeType"/>
2617
+ <xs:element name="srcScaleLod3" minOccurs="0" type="gml:CodeType"/>
2618
+ <xs:element name="srcScaleLod4" minOccurs="0" type="gml:CodeType"/>
2619
+ <xs:element name="publicSurveySrcDescLod0" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2620
+ <xs:element name="publicSurveySrcDescLod1" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2621
+ <xs:element name="publicSurveySrcDescLod2" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2622
+ <xs:element name="publicSurveySrcDescLod3" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2623
+ <xs:element name="publicSurveySrcDescLod4" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2624
+ </xs:sequence>
2625
+ </xs:complexType>
2626
+ <xs:complexType name="PublicSurveyDataQualityAttributePropertyType">
2627
+ <xs:sequence>
2628
+ <xs:element ref="uro:PublicSurveyDataQualityAttribute"/>
2629
+ </xs:sequence>
2630
+ </xs:complexType>
2631
+ <xs:element name="RailwayRouteAttribute" type="uro:RailwayRouteAttributeType"/>
2632
+ <xs:complexType name="RailwayRouteAttributeType">
2633
+ <xs:sequence>
2634
+ <xs:element name="operatorType" type="gml:CodeType"/>
2635
+ <xs:element name="operator" type="xs:string"/>
2636
+ <xs:element name="alternativeName" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
2637
+ <xs:element name="railwayType" type="gml:CodeType"/>
2638
+ <xs:element name="startStation" type="xs:string"/>
2639
+ <xs:element name="endStation" type="xs:string"/>
2640
+ </xs:sequence>
2641
+ </xs:complexType>
2642
+ <xs:complexType name="RailwayRouteAttributePropertyType">
2643
+ <xs:sequence>
2644
+ <xs:element ref="uro:RailwayRouteAttribute"/>
2645
+ </xs:sequence>
2646
+ </xs:complexType>
2647
+ <xs:element name="RailwayTrackAttribute" type="uro:RailwayTrackAttributeType"/>
2648
+ <xs:complexType name="RailwayTrackAttributeType">
2649
+ <xs:sequence>
2650
+ <xs:element name="routeName" minOccurs="0" type="xs:string"/>
2651
+ <xs:element name="directionType" minOccurs="0" type="gml:CodeType"/>
2652
+ <xs:element name="trackType" minOccurs="0" type="gml:CodeType"/>
2653
+ <xs:element name="startPost" minOccurs="0" type="xs:string"/>
2654
+ <xs:element name="endPost" minOccurs="0" type="xs:string"/>
2655
+ <xs:element name="alignmentType" minOccurs="0" type="gml:CodeType"/>
2656
+ <xs:element name="lod2Network" minOccurs="0" type="gml:GeometricComplexPropertyType"/>
2657
+ <xs:element name="lod3Network" minOccurs="0" type="gml:GeometricComplexPropertyType"/>
2658
+ <xs:element name="controlPoint" maxOccurs="unbounded" minOccurs="0" type="uro:ControlPointPropertyType"/>
2659
+ </xs:sequence>
2660
+ </xs:complexType>
2661
+ <xs:complexType name="RailwayTrackAttributePropertyType">
2662
+ <xs:sequence>
2663
+ <xs:element ref="uro:RailwayTrackAttribute"/>
2664
+ </xs:sequence>
2665
+ </xs:complexType>
2666
+ <xs:element name="RealEstateIDAttribute" type="uro:RealEstateIDAttributeType"/>
2667
+ <xs:complexType name="RealEstateIDAttributeType">
2668
+ <xs:sequence>
2669
+ <xs:element name="realEstateIDOfBuilding" type="xs:string"/>
2670
+ <xs:element name="numberOfBuildingUnitOwnership" minOccurs="0" type="xs:integer"/>
2671
+ <xs:element name="realEstateIDOfBuildingUnitOwnership" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
2672
+ <xs:element name="numberOfRealEstateIDOfLand" minOccurs="0" type="xs:integer"/>
2673
+ <xs:element name="realEstateIDOfLand" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
2674
+ <xs:element name="matchingScore" type="xs:integer"/>
2675
+ </xs:sequence>
2676
+ </xs:complexType>
2677
+ <xs:complexType name="RealEstateIDAttributePropertyType">
2678
+ <xs:sequence>
2679
+ <xs:element ref="uro:RealEstateIDAttribute"/>
2680
+ </xs:sequence>
2681
+ </xs:complexType>
2682
+ <xs:element name="RepairsBeforeParkHealthAssessment" type="uro:RepairsBeforeParkHealthAssessmentType"/>
2683
+ <xs:complexType name="RepairsBeforeParkHealthAssessmentType">
2684
+ <xs:sequence>
2685
+ <xs:element name="repair" type="gml:CodeType"/>
2686
+ <xs:element name="repairFiscalYear" minOccurs="0" type="xs:gYear"/>
2687
+ </xs:sequence>
2688
+ </xs:complexType>
2689
+ <xs:complexType name="RepairsBeforeParkHealthAssessmentPropertyType">
2690
+ <xs:sequence>
2691
+ <xs:element ref="uro:RepairsBeforeParkHealthAssessment"/>
2692
+ </xs:sequence>
2693
+ </xs:complexType>
2694
+ <xs:element name="ReservoirFloodingRiskAttribute" substitutionGroup="uro:FloodingRiskAttribute" type="uro:ReservoirFloodingRiskAttributeType"/>
2695
+ <xs:complexType name="ReservoirFloodingRiskAttributeType">
2696
+ <xs:complexContent>
2697
+ <xs:extension base="uro:FloodingRiskAttributeType">
2698
+ <xs:sequence/>
2699
+ </xs:extension>
2700
+ </xs:complexContent>
2701
+ </xs:complexType>
2702
+ <xs:element name="RiverFacilityIdAttribute" substitutionGroup="uro:FacilityIdAttribute" type="uro:RiverFacilityIdAttributeType"/>
2703
+ <xs:complexType name="RiverFacilityIdAttributeType">
2704
+ <xs:complexContent>
2705
+ <xs:extension base="uro:FacilityIdAttributeType">
2706
+ <xs:sequence>
2707
+ <xs:element name="riverCode" type="gml:CodeType"/>
2708
+ <xs:element name="riverName" minOccurs="0" type="xs:string"/>
2709
+ <xs:element name="sideType" type="gml:CodeType"/>
2710
+ <xs:element name="leftPost" minOccurs="0" type="gml:LengthType"/>
2711
+ <xs:element name="leftDistance" minOccurs="0" type="gml:LengthType"/>
2712
+ <xs:element name="rightPost" minOccurs="0" type="gml:LengthType"/>
2713
+ <xs:element name="rightDistance" minOccurs="0" type="gml:LengthType"/>
2714
+ <xs:element name="leftStartPost" minOccurs="0" type="gml:LengthType"/>
2715
+ <xs:element name="leftStartDistance" minOccurs="0" type="gml:LengthType"/>
2716
+ <xs:element name="leftEndPost" minOccurs="0" type="gml:LengthType"/>
2717
+ <xs:element name="leftEndDistance" minOccurs="0" type="gml:LengthType"/>
2718
+ <xs:element name="rightStartPost" minOccurs="0" type="gml:LengthType"/>
2719
+ <xs:element name="rightStartDistance" minOccurs="0" type="gml:LengthType"/>
2720
+ <xs:element name="rightEndPost" minOccurs="0" type="gml:LengthType"/>
2721
+ <xs:element name="rightEndDistance" minOccurs="0" type="gml:LengthType"/>
2722
+ </xs:sequence>
2723
+ </xs:extension>
2724
+ </xs:complexContent>
2725
+ </xs:complexType>
2726
+ <xs:complexType name="RiverFacilityIdAttributePropertyType">
2727
+ <xs:sequence>
2728
+ <xs:element ref="uro:RiverFacilityIdAttribute"/>
2729
+ </xs:sequence>
2730
+ </xs:complexType>
2731
+ <xs:element name="RiverFloodingRiskAttribute" substitutionGroup="uro:FloodingRiskAttribute" type="uro:RiverFloodingRiskAttributeType"/>
2732
+ <xs:complexType name="RiverFloodingRiskAttributeType">
2733
+ <xs:complexContent>
2734
+ <xs:extension base="uro:FloodingRiskAttributeType">
2735
+ <xs:sequence>
2736
+ <xs:element name="adminType" type="gml:CodeType"/>
2737
+ <xs:element name="scale" type="gml:CodeType"/>
2738
+ <xs:element name="duration" minOccurs="0" type="gml:MeasureType"/>
2739
+ </xs:sequence>
2740
+ </xs:extension>
2741
+ </xs:complexContent>
2742
+ </xs:complexType>
2743
+ <xs:element name="RoadAttribute" abstract="true" type="uro:RoadAttributeType"/>
2744
+ <xs:complexType name="RoadAttributeType" abstract="true">
2745
+ <xs:sequence/>
2746
+ </xs:complexType>
2747
+ <xs:complexType name="RoadAttributePropertyType">
2748
+ <xs:sequence>
2749
+ <xs:element ref="uro:RoadAttribute"/>
2750
+ </xs:sequence>
2751
+ </xs:complexType>
2752
+ <xs:element name="RoadStructureAttribute" substitutionGroup="uro:RoadAttribute" type="uro:RoadStructureAttributeType"/>
2753
+ <xs:complexType name="RoadStructureAttributeType">
2754
+ <xs:complexContent>
2755
+ <xs:extension base="uro:RoadAttributeType">
2756
+ <xs:sequence>
2757
+ <xs:element name="widthType" minOccurs="0" type="gml:CodeType"/>
2758
+ <xs:element name="width" minOccurs="0" type="gml:LengthType"/>
2759
+ <xs:element name="numberOfLanes" minOccurs="0" type="xs:integer"/>
2760
+ <xs:element name="sectionType" minOccurs="0" type="gml:CodeType"/>
2761
+ </xs:sequence>
2762
+ </xs:extension>
2763
+ </xs:complexContent>
2764
+ </xs:complexType>
2765
+ <xs:complexType name="RoadStructureAttributePropertyType">
2766
+ <xs:sequence>
2767
+ <xs:element ref="uro:RoadStructureAttribute"/>
2768
+ </xs:sequence>
2769
+ </xs:complexType>
2770
+ <xs:element name="RoadType" type="uro:RoadTypeType"/>
2771
+ <xs:complexType name="RoadTypeType">
2772
+ <xs:sequence>
2773
+ <xs:element name="id" minOccurs="0" type="xs:string"/>
2774
+ <xs:element name="creationDate" minOccurs="0" type="xs:date"/>
2775
+ <xs:element name="isTemporary" minOccurs="0" type="xs:boolean"/>
2776
+ <xs:element name="roadType" minOccurs="0" type="gml:CodeType"/>
2777
+ <xs:element name="widthType" minOccurs="0" type="gml:CodeType"/>
2778
+ <xs:element name="isTollRoad" minOccurs="0" type="xs:boolean"/>
2779
+ <xs:element name="separator" minOccurs="0" type="gml:LengthType"/>
2780
+ <xs:element name="isHighWay" minOccurs="0" type="xs:boolean"/>
2781
+ </xs:sequence>
2782
+ </xs:complexType>
2783
+ <xs:complexType name="RoadTypePropertyType">
2784
+ <xs:sequence>
2785
+ <xs:element ref="uro:RoadType"/>
2786
+ </xs:sequence>
2787
+ </xs:complexType>
2788
+ <xs:element name="RoofSurface" substitutionGroup="uro:_BoundarySurface" type="uro:RoofSurfaceType"/>
2789
+ <xs:complexType name="RoofSurfaceType">
2790
+ <xs:complexContent>
2791
+ <xs:extension base="uro:_BoundarySurfaceType">
2792
+ <xs:sequence/>
2793
+ </xs:extension>
2794
+ </xs:complexContent>
2795
+ </xs:complexType>
2796
+ <xs:complexType name="RoofSurfacePropertyType">
2797
+ <xs:sequence minOccurs="0">
2798
+ <xs:element ref="uro:RoofSurface"/>
2799
+ </xs:sequence>
2800
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2801
+ </xs:complexType>
2802
+ <xs:element name="RoomAttribute" abstract="true" type="uro:RoomAttributeType"/>
2803
+ <xs:complexType name="RoomAttributeType" abstract="true">
2804
+ <xs:sequence/>
2805
+ </xs:complexType>
2806
+ <xs:complexType name="RoomAttributePropertyType">
2807
+ <xs:sequence>
2808
+ <xs:element ref="uro:RoomAttribute"/>
2809
+ </xs:sequence>
2810
+ </xs:complexType>
2811
+ <xs:element name="SewerPipe" substitutionGroup="uro:Pipe" type="uro:SewerPipeType"/>
2812
+ <xs:complexType name="SewerPipeType">
2813
+ <xs:complexContent>
2814
+ <xs:extension base="uro:PipeType">
2815
+ <xs:sequence>
2816
+ <xs:element name="slope" minOccurs="0" type="gml:MeasureType"/>
2817
+ <xs:element name="invertElevationUpstream" minOccurs="0" type="gml:LengthType"/>
2818
+ <xs:element name="invertElevationDownstream" minOccurs="0" type="gml:LengthType"/>
2819
+ <xs:element name="flowDirection" minOccurs="0" type="xs:boolean"/>
2820
+ </xs:sequence>
2821
+ </xs:extension>
2822
+ </xs:complexContent>
2823
+ </xs:complexType>
2824
+ <xs:complexType name="SewerPipePropertyType">
2825
+ <xs:sequence minOccurs="0">
2826
+ <xs:element ref="uro:SewerPipe"/>
2827
+ </xs:sequence>
2828
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2829
+ </xs:complexType>
2830
+ <xs:element name="ShipServiceFacility" substitutionGroup="uro:PortAttribute" type="uro:ShipServiceFacilityType"/>
2831
+ <xs:complexType name="ShipServiceFacilityType">
2832
+ <xs:complexContent>
2833
+ <xs:extension base="uro:PortAttributeType">
2834
+ <xs:sequence>
2835
+ <xs:element name="shipType" minOccurs="0" type="xs:string"/>
2836
+ <xs:element name="supplyAbility" minOccurs="0" type="xs:integer"/>
2837
+ <xs:element name="supplyAbilityUnit" minOccurs="0" type="gml:CodeType"/>
2838
+ <xs:element name="mooringPlace" minOccurs="0" type="xs:string"/>
2839
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
2840
+ <xs:element name="width" minOccurs="0" type="gml:LengthType"/>
2841
+ <xs:element name="area" minOccurs="0" type="gml:MeasureType"/>
2842
+ <xs:element name="acquisitionYear" minOccurs="0" type="xs:gYear"/>
2843
+ <xs:element name="totalCost" minOccurs="0" type="xs:integer"/>
2844
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2845
+ </xs:sequence>
2846
+ </xs:extension>
2847
+ </xs:complexContent>
2848
+ </xs:complexType>
2849
+ <xs:complexType name="ShipServiceFacilityPropertyType">
2850
+ <xs:sequence>
2851
+ <xs:element ref="uro:ShipServiceFacility"/>
2852
+ </xs:sequence>
2853
+ </xs:complexType>
2854
+ <xs:element name="SlopeType" type="uro:SlopeTypeType"/>
2855
+ <xs:complexType name="SlopeTypeType">
2856
+ <xs:sequence>
2857
+ <xs:element name="angle" type="xs:double"/>
2858
+ <xs:element name="elevation" type="gml:LengthType"/>
2859
+ </xs:sequence>
2860
+ </xs:complexType>
2861
+ <xs:complexType name="SlopeTypePropertyType">
2862
+ <xs:sequence>
2863
+ <xs:element ref="uro:SlopeType"/>
2864
+ </xs:sequence>
2865
+ </xs:complexType>
2866
+ <xs:element name="SquareUrbanPlanAttribute" type="uro:SquareUrbanPlanAttributeType"/>
2867
+ <xs:complexType name="SquareUrbanPlanAttributeType">
2868
+ <xs:sequence>
2869
+ <xs:element name="prefecture" minOccurs="0" type="gml:CodeType"/>
2870
+ <xs:element name="city" minOccurs="0" type="gml:CodeType"/>
2871
+ <xs:element name="urbanPlanningAreaName" minOccurs="0" type="xs:string"/>
2872
+ <xs:element name="enforcer" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
2873
+ <xs:element name="dateOfDecision" minOccurs="0" type="xs:date"/>
2874
+ <xs:element name="dateOfRevision" maxOccurs="unbounded" minOccurs="0" type="xs:date"/>
2875
+ <xs:element name="areaPlanned" minOccurs="0" type="gml:MeasureType"/>
2876
+ <xs:element name="areaInService" minOccurs="0" type="gml:MeasureType"/>
2877
+ <xs:element name="remarks" minOccurs="0" type="xs:string"/>
2878
+ <xs:element name="status" minOccurs="0" type="gml:CodeType"/>
2879
+ <xs:element name="areaImproved" minOccurs="0" type="gml:MeasureType"/>
2880
+ <xs:element name="areaCompleted" minOccurs="0" type="gml:MeasureType"/>
2881
+ <xs:element name="projectStartDate" minOccurs="0" type="xs:date"/>
2882
+ <xs:element name="projectEndDate" minOccurs="0" type="xs:date"/>
2883
+ <xs:element name="isCompleted" minOccurs="0" type="xs:boolean"/>
2884
+ <xs:element name="isAuthorized" minOccurs="0" type="xs:boolean"/>
2885
+ <xs:element name="purpose" minOccurs="0" type="xs:string"/>
2886
+ <xs:element name="note" minOccurs="0" type="xs:string"/>
2887
+ </xs:sequence>
2888
+ </xs:complexType>
2889
+ <xs:complexType name="SquareUrbanPlanAttributePropertyType">
2890
+ <xs:sequence>
2891
+ <xs:element ref="uro:SquareUrbanPlanAttribute"/>
2892
+ </xs:sequence>
2893
+ </xs:complexType>
2894
+ <xs:element name="StationSquareAttribute" substitutionGroup="uro:SquareUrbanPlanAttribute" type="uro:StationSquareAttributeType"/>
2895
+ <xs:complexType name="StationSquareAttributeType">
2896
+ <xs:complexContent>
2897
+ <xs:extension base="uro:SquareUrbanPlanAttributeType">
2898
+ <xs:sequence>
2899
+ <xs:element name="station" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
2900
+ <xs:element name="route" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
2901
+ <xs:element name="railwayType" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
2902
+ </xs:sequence>
2903
+ </xs:extension>
2904
+ </xs:complexContent>
2905
+ </xs:complexType>
2906
+ <xs:complexType name="StationSquareAttributePropertyType">
2907
+ <xs:sequence>
2908
+ <xs:element ref="uro:StationSquareAttribute"/>
2909
+ </xs:sequence>
2910
+ </xs:complexType>
2911
+ <xs:element name="TelecommunicationsCable" substitutionGroup="uro:Cable" type="uro:TelecommunicationsCableType"/>
2912
+ <xs:complexType name="TelecommunicationsCableType">
2913
+ <xs:complexContent>
2914
+ <xs:extension base="uro:CableType">
2915
+ <xs:sequence/>
2916
+ </xs:extension>
2917
+ </xs:complexContent>
2918
+ </xs:complexType>
2919
+ <xs:complexType name="TelecommunicationsCablePropertyType">
2920
+ <xs:sequence minOccurs="0">
2921
+ <xs:element ref="uro:TelecommunicationsCable"/>
2922
+ </xs:sequence>
2923
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2924
+ </xs:complexType>
2925
+ <xs:element name="TerminalAttribute" substitutionGroup="uro:SquareUrbanPlanAttribute" type="uro:TerminalAttributeType"/>
2926
+ <xs:complexType name="TerminalAttributeType">
2927
+ <xs:complexContent>
2928
+ <xs:extension base="uro:SquareUrbanPlanAttributeType">
2929
+ <xs:sequence>
2930
+ <xs:element name="terminalType" minOccurs="0" type="gml:CodeType"/>
2931
+ <xs:element name="structure" minOccurs="0" type="xs:string"/>
2932
+ <xs:element name="numberOfBerthsPlanned" minOccurs="0" type="xs:integer"/>
2933
+ <xs:element name="numberOfBerthsInService" minOccurs="0" type="xs:integer"/>
2934
+ <xs:element name="userType" minOccurs="0" type="gml:CodeType"/>
2935
+ </xs:sequence>
2936
+ </xs:extension>
2937
+ </xs:complexContent>
2938
+ </xs:complexType>
2939
+ <xs:complexType name="TerminalAttributePropertyType">
2940
+ <xs:sequence>
2941
+ <xs:element ref="uro:TerminalAttribute"/>
2942
+ </xs:sequence>
2943
+ </xs:complexType>
2944
+ <xs:element name="ThematicShape" type="uro:ThematicShapeType"/>
2945
+ <xs:complexType name="ThematicShapeType">
2946
+ <xs:sequence>
2947
+ <xs:element name="horizontalType" minOccurs="0" type="gml:CodeType"/>
2948
+ <xs:element name="heightType" minOccurs="0" type="gml:CodeType"/>
2949
+ <xs:element name="shape" type="gml:GeometryPropertyType"/>
2950
+ </xs:sequence>
2951
+ </xs:complexType>
2952
+ <xs:complexType name="ThematicShapePropertyType">
2953
+ <xs:sequence>
2954
+ <xs:element ref="uro:ThematicShape"/>
2955
+ </xs:sequence>
2956
+ </xs:complexType>
2957
+ <xs:element name="ThermalPipe" substitutionGroup="uro:Pipe" type="uro:ThermalPipeType"/>
2958
+ <xs:complexType name="ThermalPipeType">
2959
+ <xs:complexContent>
2960
+ <xs:extension base="uro:PipeType">
2961
+ <xs:sequence/>
2962
+ </xs:extension>
2963
+ </xs:complexContent>
2964
+ </xs:complexType>
2965
+ <xs:complexType name="ThermalPipePropertyType">
2966
+ <xs:sequence minOccurs="0">
2967
+ <xs:element ref="uro:ThermalPipe"/>
2968
+ </xs:sequence>
2969
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
2970
+ </xs:complexType>
2971
+ <xs:element name="TrackAttribute" type="uro:TrackAttributeType"/>
2972
+ <xs:complexType name="TrackAttributeType">
2973
+ <xs:sequence>
2974
+ <xs:element name="alternativeName" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
2975
+ <xs:element name="adminType" minOccurs="0" type="gml:CodeType"/>
2976
+ <xs:element name="relativeLevel" minOccurs="0" type="xs:integer"/>
2977
+ <xs:element name="widthType" minOccurs="0" type="gml:CodeType"/>
2978
+ <xs:element name="structureType" minOccurs="0" type="gml:CodeType"/>
2979
+ <xs:element name="isTollRoad" minOccurs="0" type="xs:boolean"/>
2980
+ <xs:element name="separator" minOccurs="0" type="gml:LengthType"/>
2981
+ </xs:sequence>
2982
+ </xs:complexType>
2983
+ <xs:complexType name="TrackAttributePropertyType">
2984
+ <xs:sequence>
2985
+ <xs:element ref="uro:TrackAttribute"/>
2986
+ </xs:sequence>
2987
+ </xs:complexType>
2988
+ <xs:element name="TrafficAreaAttribute" abstract="true" type="uro:TrafficAreaAttributeType"/>
2989
+ <xs:complexType name="TrafficAreaAttributeType" abstract="true">
2990
+ <xs:sequence/>
2991
+ </xs:complexType>
2992
+ <xs:complexType name="TrafficAreaAttributePropertyType">
2993
+ <xs:sequence>
2994
+ <xs:element ref="uro:TrafficAreaAttribute"/>
2995
+ </xs:sequence>
2996
+ </xs:complexType>
2997
+ <xs:element name="TrafficAreaStructureAttribute" substitutionGroup="uro:TrafficAreaAttribute" type="uro:TrafficAreaStructureAttributeType"/>
2998
+ <xs:complexType name="TrafficAreaStructureAttributeType">
2999
+ <xs:complexContent>
3000
+ <xs:extension base="uro:TrafficAreaAttributeType">
3001
+ <xs:sequence>
3002
+ <xs:element name="numberOfLanes" minOccurs="0" type="xs:integer"/>
3003
+ </xs:sequence>
3004
+ </xs:extension>
3005
+ </xs:complexContent>
3006
+ </xs:complexType>
3007
+ <xs:complexType name="TrafficAreaStructureAttributePropertyType">
3008
+ <xs:sequence>
3009
+ <xs:element ref="uro:TrafficAreaStructureAttribute"/>
3010
+ </xs:sequence>
3011
+ </xs:complexType>
3012
+ <xs:element name="TrafficObjectUsecaseAttribute" type="uro:TrafficObjectUsecaseAttributeType"/>
3013
+ <xs:complexType name="TrafficObjectUsecaseAttributeType">
3014
+ <xs:sequence>
3015
+ <xs:element name="minWidth" minOccurs="0" type="gml:LengthType"/>
3016
+ <xs:element name="maxWidth" minOccurs="0" type="gml:LengthType"/>
3017
+ </xs:sequence>
3018
+ </xs:complexType>
3019
+ <xs:complexType name="TrafficObjectUsecaseAttributePropertyType">
3020
+ <xs:sequence>
3021
+ <xs:element ref="uro:TrafficObjectUsecaseAttribute"/>
3022
+ </xs:sequence>
3023
+ </xs:complexType>
3024
+ <xs:element name="TrafficVolumeAttribute" substitutionGroup="uro:RoadAttribute" type="uro:TrafficVolumeAttributeType"/>
3025
+ <xs:complexType name="TrafficVolumeAttributeType">
3026
+ <xs:complexContent>
3027
+ <xs:extension base="uro:RoadAttributeType">
3028
+ <xs:sequence>
3029
+ <xs:element name="sectionID" minOccurs="0" type="xs:string"/>
3030
+ <xs:element name="routeName" minOccurs="0" type="xs:string"/>
3031
+ <xs:element name="weekday12hourTrafficVolume" minOccurs="0" type="xs:integer"/>
3032
+ <xs:element name="weekday24hourTrafficVolume" minOccurs="0" type="xs:integer"/>
3033
+ <xs:element name="largeVehicleRate" minOccurs="0" type="xs:double"/>
3034
+ <xs:element name="congestionRate" minOccurs="0" type="xs:double"/>
3035
+ <xs:element name="averageTravelSpeedInCongestion" minOccurs="0" type="xs:double"/>
3036
+ <xs:element name="averageInboundTravelSpeedInCongestion" minOccurs="0" type="xs:double"/>
3037
+ <xs:element name="averageOutboundTravelSpeedInCongestion" minOccurs="0" type="xs:double"/>
3038
+ <xs:element name="averageInboundTravelSpeedNotCongestion" minOccurs="0" type="xs:double"/>
3039
+ <xs:element name="averageOutboundTravelSpeedNotCongestion" minOccurs="0" type="xs:double"/>
3040
+ <xs:element name="observationPointName" minOccurs="0" type="xs:string"/>
3041
+ <xs:element name="reference" minOccurs="0" type="xs:string"/>
3042
+ <xs:element name="surveyYear" minOccurs="0" type="xs:gYear"/>
3043
+ </xs:sequence>
3044
+ </xs:extension>
3045
+ </xs:complexContent>
3046
+ </xs:complexType>
3047
+ <xs:complexType name="TrafficVolumeAttributePropertyType">
3048
+ <xs:sequence>
3049
+ <xs:element ref="uro:TrafficVolumeAttribute"/>
3050
+ </xs:sequence>
3051
+ </xs:complexType>
3052
+ <xs:element name="TransitionCurveType" type="uro:TransitionCurveTypeType"/>
3053
+ <xs:complexType name="TransitionCurveTypeType">
3054
+ <xs:sequence>
3055
+ <xs:element name="intersection" type="gml:MeasureType"/>
3056
+ <xs:element name="distance" type="gml:LengthType"/>
3057
+ <xs:element name="curveLength" type="gml:LengthType"/>
3058
+ </xs:sequence>
3059
+ </xs:complexType>
3060
+ <xs:complexType name="TransitionCurveTypePropertyType">
3061
+ <xs:sequence>
3062
+ <xs:element ref="uro:TransitionCurveType"/>
3063
+ </xs:sequence>
3064
+ </xs:complexType>
3065
+ <xs:element name="TsunamiRiskAttribute" substitutionGroup="uro:FloodingRiskAttribute" type="uro:TsunamiRiskAttributeType"/>
3066
+ <xs:complexType name="TsunamiRiskAttributeType">
3067
+ <xs:complexContent>
3068
+ <xs:extension base="uro:FloodingRiskAttributeType">
3069
+ <xs:sequence/>
3070
+ </xs:extension>
3071
+ </xs:complexContent>
3072
+ </xs:complexType>
3073
+ <xs:element name="TunnelFunctionalAttribute" type="uro:TunnelFunctionalAttributeType"/>
3074
+ <xs:complexType name="TunnelFunctionalAttributeType">
3075
+ <xs:sequence>
3076
+ <xs:element name="directionType" minOccurs="0" type="gml:CodeType"/>
3077
+ <xs:element name="userType" minOccurs="0" type="gml:CodeType"/>
3078
+ </xs:sequence>
3079
+ </xs:complexType>
3080
+ <xs:complexType name="TunnelFunctionalAttributePropertyType">
3081
+ <xs:sequence>
3082
+ <xs:element ref="uro:TunnelFunctionalAttribute"/>
3083
+ </xs:sequence>
3084
+ </xs:complexType>
3085
+ <xs:element name="TunnelStructureAttribute" type="uro:TunnelStructureAttributeType"/>
3086
+ <xs:complexType name="TunnelStructureAttributeType">
3087
+ <xs:sequence>
3088
+ <xs:element name="tunnelType" minOccurs="0" type="gml:CodeType"/>
3089
+ <xs:element name="tunnelSubtype" minOccurs="0" type="gml:CodeType"/>
3090
+ <xs:element name="mouthType" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
3091
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
3092
+ <xs:element name="width" minOccurs="0" type="gml:LengthType"/>
3093
+ <xs:element name="area" minOccurs="0" type="gml:MeasureType"/>
3094
+ <xs:element name="innerHeight" minOccurs="0" type="gml:LengthType"/>
3095
+ <xs:element name="effectiveHeight" minOccurs="0" type="gml:LengthType"/>
3096
+ <xs:element name="slopeType" minOccurs="0" type="gml:CodeType"/>
3097
+ </xs:sequence>
3098
+ </xs:complexType>
3099
+ <xs:complexType name="TunnelStructureAttributePropertyType">
3100
+ <xs:sequence>
3101
+ <xs:element ref="uro:TunnelStructureAttribute"/>
3102
+ </xs:sequence>
3103
+ </xs:complexType>
3104
+ <xs:element name="UndergroundBuilding" substitutionGroup="bldg:_AbstractBuilding" type="uro:UndergroundBuildingType"/>
3105
+ <xs:complexType name="UndergroundBuildingType">
3106
+ <xs:complexContent>
3107
+ <xs:extension base="bldg:AbstractBuildingType">
3108
+ <xs:sequence/>
3109
+ </xs:extension>
3110
+ </xs:complexContent>
3111
+ </xs:complexType>
3112
+ <xs:complexType name="UndergroundBuildingPropertyType">
3113
+ <xs:sequence minOccurs="0">
3114
+ <xs:element ref="uro:UndergroundBuilding"/>
3115
+ </xs:sequence>
3116
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
3117
+ </xs:complexType>
3118
+ <xs:element name="UserDefinedValue" type="uro:UserDefinedValueType"/>
3119
+ <xs:complexType name="UserDefinedValueType">
3120
+ <xs:sequence>
3121
+ <xs:element name="stringValue" minOccurs="0" type="xs:string"/>
3122
+ <xs:element name="intValue" minOccurs="0" type="xs:integer"/>
3123
+ <xs:element name="doubleValue" minOccurs="0" type="xs:double"/>
3124
+ <xs:element name="codeValue" minOccurs="0" type="gml:CodeType"/>
3125
+ <xs:element name="dateValue" minOccurs="0" type="xs:date"/>
3126
+ <xs:element name="uriValue" minOccurs="0" type="xs:anyURI"/>
3127
+ <xs:element name="measuredValue" minOccurs="0" type="gml:MeasureType"/>
3128
+ </xs:sequence>
3129
+ </xs:complexType>
3130
+ <xs:complexType name="UserDefinedValuePropertyType">
3131
+ <xs:sequence>
3132
+ <xs:element ref="uro:UserDefinedValue"/>
3133
+ </xs:sequence>
3134
+ </xs:complexType>
3135
+ <xs:element name="UtilityLink" abstract="true" substitutionGroup="uro:UtilityNetworkElement" type="uro:UtilityLinkType"/>
3136
+ <xs:complexType name="UtilityLinkType" abstract="true">
3137
+ <xs:complexContent>
3138
+ <xs:extension base="uro:UtilityNetworkElementType">
3139
+ <xs:sequence>
3140
+ <xs:element name="routeStartNode" minOccurs="0" type="xs:string"/>
3141
+ <xs:element name="startNode" minOccurs="0" type="xs:string"/>
3142
+ <xs:element name="routeEndNode" minOccurs="0" type="xs:string"/>
3143
+ <xs:element name="endNode" minOccurs="0" type="xs:string"/>
3144
+ <xs:element name="depth" minOccurs="0" type="gml:LengthType"/>
3145
+ <xs:element name="minDepth" minOccurs="0" type="gml:LengthType"/>
3146
+ <xs:element name="maxDepth" minOccurs="0" type="gml:LengthType"/>
3147
+ <xs:element name="maxWidth" minOccurs="0" type="gml:LengthType"/>
3148
+ <xs:element name="offset" minOccurs="0" type="gml:LengthType"/>
3149
+ <xs:element name="material" minOccurs="0" type="gml:CodeType"/>
3150
+ <xs:element name="lengthAttribute" maxOccurs="unbounded" minOccurs="0" type="uro:LengthAttributePropertyType"/>
3151
+ </xs:sequence>
3152
+ </xs:extension>
3153
+ </xs:complexContent>
3154
+ </xs:complexType>
3155
+ <xs:complexType name="UtilityLinkPropertyType">
3156
+ <xs:sequence minOccurs="0">
3157
+ <xs:element ref="uro:UtilityLink"/>
3158
+ </xs:sequence>
3159
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
3160
+ </xs:complexType>
3161
+ <xs:element name="UtilityNetworkElement" abstract="true" substitutionGroup="frn:CityFurniture" type="uro:UtilityNetworkElementType"/>
3162
+ <xs:complexType name="UtilityNetworkElementType" abstract="true">
3163
+ <xs:complexContent>
3164
+ <xs:extension base="frn:CityFurnitureType">
3165
+ <xs:sequence>
3166
+ <xs:element name="occupierType" minOccurs="0" type="gml:CodeType"/>
3167
+ <xs:element name="occupierName" minOccurs="0" type="gml:CodeType"/>
3168
+ <xs:element name="year" minOccurs="0" type="xs:gYear"/>
3169
+ <xs:element name="yearType" minOccurs="0" type="gml:CodeType"/>
3170
+ <xs:element name="administrator" minOccurs="0" type="gml:CodeType"/>
3171
+ <xs:element name="offsetDepth" maxOccurs="unbounded" minOccurs="0" type="uro:OffsetDepthPropertyType"/>
3172
+ <xs:element name="thematicShape" maxOccurs="unbounded" minOccurs="0" type="uro:ThematicShapePropertyType"/>
3173
+ </xs:sequence>
3174
+ </xs:extension>
3175
+ </xs:complexContent>
3176
+ </xs:complexType>
3177
+ <xs:complexType name="UtilityNetworkElementPropertyType">
3178
+ <xs:sequence minOccurs="0">
3179
+ <xs:element ref="uro:UtilityNetworkElement"/>
3180
+ </xs:sequence>
3181
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
3182
+ </xs:complexType>
3183
+ <xs:element name="UtilityNode" abstract="true" substitutionGroup="uro:UtilityNetworkElement" type="uro:UtilityNodeType"/>
3184
+ <xs:complexType name="UtilityNodeType" abstract="true">
3185
+ <xs:complexContent>
3186
+ <xs:extension base="uro:UtilityNetworkElementType">
3187
+ <xs:sequence>
3188
+ <xs:element name="previousLink" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
3189
+ <xs:element name="nextLink" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
3190
+ <xs:element name="rotationAngle" minOccurs="0" type="xs:double"/>
3191
+ </xs:sequence>
3192
+ </xs:extension>
3193
+ </xs:complexContent>
3194
+ </xs:complexType>
3195
+ <xs:complexType name="UtilityNodePropertyType">
3196
+ <xs:sequence minOccurs="0">
3197
+ <xs:element ref="uro:UtilityNode"/>
3198
+ </xs:sequence>
3199
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
3200
+ </xs:complexType>
3201
+ <xs:element name="UtilityNodeContainer" abstract="true" substitutionGroup="uro:UtilityNetworkElement" type="uro:UtilityNodeContainerType"/>
3202
+ <xs:complexType name="UtilityNodeContainerType" abstract="true">
3203
+ <xs:complexContent>
3204
+ <xs:extension base="uro:UtilityNetworkElementType">
3205
+ <xs:sequence>
3206
+ <xs:element name="containerType" minOccurs="0" type="gml:CodeType"/>
3207
+ <xs:element name="innerDiameterLong" minOccurs="0" type="gml:LengthType"/>
3208
+ <xs:element name="outerDiameterLong" minOccurs="0" type="gml:LengthType"/>
3209
+ <xs:element name="innerDiameterShort" minOccurs="0" type="gml:LengthType"/>
3210
+ <xs:element name="outerDiameterShort" minOccurs="0" type="gml:LengthType"/>
3211
+ <xs:element name="depth" minOccurs="0" type="gml:LengthType"/>
3212
+ <xs:element name="appurtenance" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
3213
+ <xs:element name="rotationAngle" minOccurs="0" type="xs:double"/>
3214
+ </xs:sequence>
3215
+ </xs:extension>
3216
+ </xs:complexContent>
3217
+ </xs:complexType>
3218
+ <xs:complexType name="UtilityNodeContainerPropertyType">
3219
+ <xs:sequence minOccurs="0">
3220
+ <xs:element ref="uro:UtilityNodeContainer"/>
3221
+ </xs:sequence>
3222
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
3223
+ </xs:complexType>
3224
+ <xs:element name="VerticalCurveType" type="uro:VerticalCurveTypeType"/>
3225
+ <xs:complexType name="VerticalCurveTypeType">
3226
+ <xs:sequence>
3227
+ <xs:element name="length" type="gml:LengthType"/>
3228
+ <xs:element name="verticalDistance" type="gml:LengthType"/>
3229
+ </xs:sequence>
3230
+ </xs:complexType>
3231
+ <xs:complexType name="VerticalCurveTypePropertyType">
3232
+ <xs:sequence>
3233
+ <xs:element ref="uro:VerticalCurveType"/>
3234
+ </xs:sequence>
3235
+ </xs:complexType>
3236
+ <xs:element name="WallSurface" substitutionGroup="uro:_BoundarySurface" type="uro:WallSurfaceType"/>
3237
+ <xs:complexType name="WallSurfaceType">
3238
+ <xs:complexContent>
3239
+ <xs:extension base="uro:_BoundarySurfaceType">
3240
+ <xs:sequence/>
3241
+ </xs:extension>
3242
+ </xs:complexContent>
3243
+ </xs:complexType>
3244
+ <xs:complexType name="WallSurfacePropertyType">
3245
+ <xs:sequence minOccurs="0">
3246
+ <xs:element ref="uro:WallSurface"/>
3247
+ </xs:sequence>
3248
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
3249
+ </xs:complexType>
3250
+ <xs:element name="WaterBodyDetailAttribute" type="uro:WaterBodyDetailAttributeType"/>
3251
+ <xs:complexType name="WaterBodyDetailAttributeType">
3252
+ <xs:sequence>
3253
+ <xs:element name="kana" minOccurs="0" type="xs:string"/>
3254
+ <xs:element name="waterSystemCode" minOccurs="0" type="gml:CodeType"/>
3255
+ <xs:element name="riverCode" minOccurs="0" type="gml:CodeType"/>
3256
+ <xs:element name="adminType" minOccurs="0" type="gml:CodeType"/>
3257
+ <xs:element name="flowDirection" minOccurs="0" type="xs:boolean"/>
3258
+ <xs:element name="maximumDepth" minOccurs="0" type="gml:LengthType"/>
3259
+ <xs:element name="waterSurfaceElevation" minOccurs="0" type="gml:LengthType"/>
3260
+ <xs:element name="area" minOccurs="0" type="gml:MeasureType"/>
3261
+ <xs:element name="measurementYearMonth" minOccurs="0" type="xs:gYearMonth"/>
3262
+ <xs:element name="prefecture" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
3263
+ <xs:element name="city" maxOccurs="unbounded" minOccurs="0" type="gml:CodeType"/>
3264
+ </xs:sequence>
3265
+ </xs:complexType>
3266
+ <xs:complexType name="WaterBodyDetailAttributePropertyType">
3267
+ <xs:sequence>
3268
+ <xs:element ref="uro:WaterBodyDetailAttribute"/>
3269
+ </xs:sequence>
3270
+ </xs:complexType>
3271
+ <xs:element name="WaterPipe" substitutionGroup="uro:Pipe" type="uro:WaterPipeType"/>
3272
+ <xs:complexType name="WaterPipeType">
3273
+ <xs:complexContent>
3274
+ <xs:extension base="uro:PipeType">
3275
+ <xs:sequence/>
3276
+ </xs:extension>
3277
+ </xs:complexContent>
3278
+ </xs:complexType>
3279
+ <xs:complexType name="WaterPipePropertyType">
3280
+ <xs:sequence minOccurs="0">
3281
+ <xs:element ref="uro:WaterPipe"/>
3282
+ </xs:sequence>
3283
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
3284
+ </xs:complexType>
3285
+ <xs:element name="Waterway" substitutionGroup="tran:TransportationComplex" type="uro:WaterwayType"/>
3286
+ <xs:complexType name="WaterwayType">
3287
+ <xs:complexContent>
3288
+ <xs:extension base="tran:TransportationComplexType">
3289
+ <xs:sequence>
3290
+ <xs:element name="waterwayDetailAttribute" minOccurs="0" type="uro:WaterwayDetailAttributePropertyType"/>
3291
+ </xs:sequence>
3292
+ </xs:extension>
3293
+ </xs:complexContent>
3294
+ </xs:complexType>
3295
+ <xs:complexType name="WaterwayPropertyType">
3296
+ <xs:sequence minOccurs="0">
3297
+ <xs:element ref="uro:Waterway"/>
3298
+ </xs:sequence>
3299
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
3300
+ </xs:complexType>
3301
+ <xs:element name="WaterwayDetailAttribute" type="uro:WaterwayDetailAttributeType"/>
3302
+ <xs:complexType name="WaterwayDetailAttributeType">
3303
+ <xs:sequence>
3304
+ <xs:element name="routeId" type="xs:string"/>
3305
+ <xs:element name="routeDirection" minOccurs="0" type="gml:CodeType"/>
3306
+ <xs:element name="minimumWidth" minOccurs="0" type="gml:LengthType"/>
3307
+ <xs:element name="maximumWidth" minOccurs="0" type="gml:LengthType"/>
3308
+ <xs:element name="length" minOccurs="0" type="gml:LengthType"/>
3309
+ <xs:element name="navigation" minOccurs="0" type="xs:string"/>
3310
+ <xs:element name="plannedDepth" minOccurs="0" type="gml:LengthType"/>
3311
+ <xs:element name="speedLimit" minOccurs="0" type="gml:MeasureType"/>
3312
+ <xs:element name="targetShipType" maxOccurs="unbounded" minOccurs="0" type="xs:string"/>
3313
+ </xs:sequence>
3314
+ </xs:complexType>
3315
+ <xs:complexType name="WaterwayDetailAttributePropertyType">
3316
+ <xs:sequence>
3317
+ <xs:element ref="uro:WaterwayDetailAttribute"/>
3318
+ </xs:sequence>
3319
+ </xs:complexType>
3320
+ <xs:element name="_BoundarySurface" abstract="true" substitutionGroup="core:_CityObject" type="uro:_BoundarySurfaceType"/>
3321
+ <xs:complexType name="_BoundarySurfaceType" abstract="true">
3322
+ <xs:complexContent>
3323
+ <xs:extension base="core:AbstractCityObjectType">
3324
+ <xs:sequence>
3325
+ <xs:element name="lod2MultiSurface" minOccurs="0" type="gml:MultiSurfacePropertyType"/>
3326
+ <xs:element name="lod3MultiSurface" minOccurs="0" type="gml:MultiSurfacePropertyType"/>
3327
+ </xs:sequence>
3328
+ </xs:extension>
3329
+ </xs:complexContent>
3330
+ </xs:complexType>
3331
+ <xs:complexType name="_BoundarySurfacePropertyType">
3332
+ <xs:sequence minOccurs="0">
3333
+ <xs:element ref="uro:_BoundarySurface"/>
3334
+ </xs:sequence>
3335
+ <xs:attributeGroup ref="gml:AssociationAttributeGroup"/>
3336
+ </xs:complexType>
3337
+ <xs:simpleType name="ifcInternalOrExternalEnum">
3338
+ <xs:restriction base="xs:string">
3339
+ <xs:enumeration value="INTERNAL"/>
3340
+ <xs:enumeration value="EXTERNAL"/>
3341
+ <xs:enumeration value="NOTDEFINED"/>
3342
+ </xs:restriction>
3343
+ </xs:simpleType>
3344
+ </xs:schema>