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.
- checksums.yaml +4 -4
- data/.github/workflows/dependent-tests.yml +4 -0
- data/.github/workflows/docs.yml +59 -0
- data/.github/workflows/downstream-performance.yml +156 -0
- data/.github/workflows/performance.yml +33 -0
- data/.github/workflows/rake.yml +13 -0
- data/.github/workflows/release.yml +5 -0
- data/.gitignore +27 -1
- data/.rubocop.yml +14 -2
- data/.rubocop_todo.yml +574 -88
- data/Gemfile +15 -9
- data/README.adoc +13522 -6905
- data/RELEASE_NOTES.adoc +51 -0
- data/Rakefile +2 -0
- data/bench/baselines/.gitkeep +0 -0
- data/bench/bench_all.rb +52 -0
- data/bench/bench_common.rb +147 -0
- data/bench/bench_compare.rb +195 -0
- data/bench/bench_mml.rb +53 -0
- data/bench/bench_niso.rb +54 -0
- data/bench/bench_sts.rb +49 -0
- data/bench/bench_unitsml.rb +43 -0
- data/bench/bench_uniword.rb +69 -0
- data/bench/bench_xmi.rb +51 -0
- data/bench/gate_config.rb +127 -0
- data/benchmark/quick_benchmark.rb +297 -0
- data/benchmark/serialization_benchmark.rb +619 -0
- data/docs/.rubocop.yml +1 -0
- data/docs/.rubocop_todo.yml +7 -0
- data/docs/Gemfile +13 -0
- data/docs/PERFORMANCE_METHODOLOGY.md +645 -0
- data/docs/_config.yml +145 -0
- data/docs/_guides/advanced-mapping.adoc +564 -0
- data/docs/_guides/character-encoding.adoc +342 -0
- data/docs/_guides/collection-serialization.adoc +349 -0
- data/docs/_guides/creating-xsd.adoc +1221 -0
- data/docs/_guides/index.adoc +71 -0
- data/docs/_guides/keyvalue-serialization.adoc +1156 -0
- data/docs/_guides/liquid-templates.adoc +505 -0
- data/docs/_guides/missing-values-handling.adoc +1531 -0
- data/docs/_guides/ooxml-examples.adoc +755 -0
- data/docs/{schema_generation.adoc → _guides/schema-generation.adoc} +5 -0
- data/docs/{schema_import.adoc → _guides/schema-import.adoc} +276 -4
- data/docs/_guides/value-transformations.adoc +1388 -0
- data/docs/_guides/xml/namespace-presentation.adoc +476 -0
- data/docs/_guides/xml/namespace-semantics.adoc +677 -0
- data/docs/_guides/xml/reusable-mapping-classes.adoc +181 -0
- data/docs/_guides/xml/schema-location.adoc +245 -0
- data/docs/_guides/xml/type-namespaces.adoc +1011 -0
- data/docs/_guides/xml-mapping.adoc +1847 -0
- data/docs/_guides/xml-mappings-guide.adoc +21 -0
- data/docs/_guides/xml-namespace-declarations.adoc +662 -0
- data/docs/_guides/xml-namespace-qualification.adoc +720 -0
- data/docs/_guides/xml-namespaces.adoc +2613 -0
- data/docs/_guides/xml_mappings/01_introduction.adoc +65 -0
- data/docs/_guides/xml_mappings/02_core_concepts.adoc +177 -0
- data/docs/_guides/xml_mappings/03_architecture.adoc +205 -0
- data/docs/_guides/xml_mappings/04_xml_namespace_class.adoc +1754 -0
- data/docs/_guides/xml_mappings/05_common_patterns.adoc +1803 -0
- data/docs/_guides/xml_mappings/06_migration_guide.adoc +523 -0
- data/docs/_guides/xml_mappings/07_best_practices.adoc +959 -0
- data/docs/_guides/xml_mappings/08_troubleshooting.adoc +934 -0
- data/docs/_migrations/0-1-0-migrate-from-shale.adoc +304 -0
- data/docs/_migrations/0-8-0-namespace-restructuring.adoc +1572 -0
- data/docs/_migrations/0-8-0-xsd-features.adoc +729 -0
- data/docs/_migrations/index.adoc +18 -0
- data/docs/_migrations/xsd-type-migration.adoc +1294 -0
- data/docs/_pages/attributes.adoc +1156 -0
- data/docs/_pages/breaking-changes.adoc +154 -0
- data/docs/_pages/collections.adoc +1664 -0
- data/docs/_pages/comparison-with-shale.adoc +139 -0
- data/docs/_pages/configuration.adoc +192 -0
- data/docs/_pages/consolidation-mapping.adoc +252 -0
- data/docs/_pages/importable_models.adoc +591 -0
- data/docs/_pages/index.adoc +46 -0
- data/docs/_pages/installation.adoc +35 -0
- data/docs/_pages/models.adoc +332 -0
- data/docs/_pages/quick-start.adoc +124 -0
- data/docs/_pages/serialization_adapters.adoc +268 -0
- data/docs/_pages/troubleshooting.adoc +104 -0
- data/docs/_pages/validation.adoc +171 -0
- data/docs/_pages/value_types.adoc +1514 -0
- data/docs/_pages/xml-conformance.adoc +143 -0
- data/docs/_references/architecture.adoc +189 -0
- data/docs/{custom_adapters.adoc → _references/custom_adapters.adoc} +6 -1
- data/docs/_references/custom_registers.adoc +1026 -0
- data/docs/_references/data-modeling-in-a-nutshell.adoc +207 -0
- data/docs/_references/format-independent-features.adoc +713 -0
- data/docs/_references/index.adoc +47 -0
- data/docs/_references/instance-serialization.adoc +120 -0
- data/docs/_references/lutaml-namespace-planning.md +120 -0
- data/docs/_references/parent-root-context.adoc +122 -0
- data/docs/_references/reference_type.adoc +302 -0
- data/docs/_references/serialization-model-mappings.adoc +102 -0
- data/docs/_references/three-phase-namespace-architecture.adoc +470 -0
- data/docs/_references/xml-w3c-namespace-qualification.adoc +66 -0
- data/docs/_references/xsd-generation-with-namespace-support.adoc +449 -0
- data/docs/_references/xsd-schema-parsing.adoc +1260 -0
- data/docs/_references/xsd-type-architecture.adoc +534 -0
- data/docs/_tutorials/basic-model-definition.adoc +157 -0
- data/docs/_tutorials/custom-types-tutorial.adoc +258 -0
- data/docs/_tutorials/first-json-serialization.adoc +192 -0
- data/docs/_tutorials/first-xml-serialization.adoc +223 -0
- data/docs/_tutorials/index.adoc +60 -0
- data/docs/_tutorials/lutaml-xml-architecture.adoc +1354 -0
- data/docs/_tutorials/polymorphic-models-tutorial.adoc +253 -0
- data/docs/_tutorials/schema-compiler-module-namespaces.adoc +497 -0
- data/docs/_tutorials/validation-basics.adoc +232 -0
- data/docs/_tutorials/working-with-collections.adoc +201 -0
- data/docs/_tutorials/xml-element-attribute-namespace-guide.adoc +279 -0
- data/docs/_tutorials/xml-namespaces-basics.adoc +315 -0
- data/docs/_tutorials/xml-schema-primer-style-guide.adoc +1394 -0
- data/docs/architecture.md +424 -0
- data/docs/bugreports/BUGREPORT_element_order_render_empty.md +99 -0
- data/docs/cli_compare.adoc +249 -0
- data/docs/collection_validation.adoc +366 -0
- data/docs/index.adoc +106 -0
- data/docs/key_value_data_model.adoc +1229 -0
- data/docs/model_transforms.adoc +769 -0
- data/docs/namespace-management.adoc +1051 -0
- data/docs/xml-schema-qualification.md +171 -0
- data/lib/lutaml/{model/hash_adapter → hash_format/adapter}/document.rb +3 -4
- data/lib/lutaml/hash_format/adapter/mapping.rb +19 -0
- data/lib/lutaml/hash_format/adapter/mapping_rule.rb +9 -0
- data/lib/lutaml/{model/hash_adapter → hash_format/adapter}/standard_adapter.rb +3 -3
- data/lib/lutaml/hash_format/adapter/transform.rb +9 -0
- data/lib/lutaml/hash_format/adapter.rb +13 -0
- data/lib/lutaml/hash_format/type/serializers.rb +24 -0
- data/lib/lutaml/hash_format.rb +25 -0
- data/lib/lutaml/{model/json → json/adapter}/document.rb +3 -3
- data/lib/lutaml/json/adapter/mapping.rb +19 -0
- data/lib/lutaml/json/adapter/mapping_rule.rb +9 -0
- data/lib/lutaml/json/adapter/multi_json_adapter.rb +38 -0
- data/lib/lutaml/json/adapter/oj_adapter.rb +38 -0
- data/lib/lutaml/json/adapter/standard_adapter.rb +36 -0
- data/lib/lutaml/json/adapter/transform.rb +9 -0
- data/lib/lutaml/json/adapter.rb +20 -0
- data/lib/lutaml/json/schema/json_schema.rb +62 -0
- data/lib/lutaml/json/schema.rb +9 -0
- data/lib/lutaml/json/type/serializers.rb +72 -0
- data/lib/lutaml/json.rb +58 -0
- data/lib/lutaml/{model/jsonl → jsonl/adapter}/document.rb +2 -2
- data/lib/lutaml/jsonl/adapter/mapping.rb +19 -0
- data/lib/lutaml/jsonl/adapter/mapping_rule.rb +9 -0
- data/lib/lutaml/{model/jsonl → jsonl/adapter}/standard_adapter.rb +5 -4
- data/lib/lutaml/jsonl/adapter/transform.rb +26 -0
- data/lib/lutaml/jsonl/adapter.rb +13 -0
- data/lib/lutaml/jsonl.rb +21 -0
- data/lib/lutaml/key_value/adapter/hash/document.rb +13 -0
- data/lib/lutaml/key_value/adapter/hash/mapping.rb +19 -0
- data/lib/lutaml/key_value/adapter/hash/mapping_rule.rb +9 -0
- data/lib/lutaml/key_value/adapter/hash/standard_adapter.rb +19 -0
- data/lib/lutaml/key_value/adapter/hash/transform.rb +10 -0
- data/lib/lutaml/key_value/adapter/hash.rb +15 -0
- data/lib/lutaml/key_value/adapter/json/document.rb +16 -0
- data/lib/lutaml/key_value/adapter/json/mapping.rb +24 -0
- data/lib/lutaml/key_value/adapter/json/mapping_rule.rb +14 -0
- data/lib/lutaml/key_value/adapter/json/multi_json_adapter.rb +43 -0
- data/lib/lutaml/key_value/adapter/json/oj_adapter.rb +43 -0
- data/lib/lutaml/key_value/adapter/json/standard_adapter.rb +41 -0
- data/lib/lutaml/key_value/adapter/json/transform.rb +14 -0
- data/lib/lutaml/key_value/adapter/json.rb +24 -0
- data/lib/lutaml/key_value/adapter/jsonl/document.rb +16 -0
- data/lib/lutaml/key_value/adapter/jsonl/mapping.rb +19 -0
- data/lib/lutaml/key_value/adapter/jsonl/mapping_rule.rb +9 -0
- data/lib/lutaml/key_value/adapter/jsonl/standard_adapter.rb +36 -0
- data/lib/lutaml/key_value/adapter/jsonl/transform.rb +26 -0
- data/lib/lutaml/key_value/adapter/jsonl.rb +17 -0
- data/lib/lutaml/key_value/adapter/toml/document.rb +13 -0
- data/lib/lutaml/key_value/adapter/toml/mapping.rb +28 -0
- data/lib/lutaml/key_value/adapter/toml/mapping_rule.rb +9 -0
- data/lib/lutaml/key_value/adapter/toml/toml_rb_adapter.rb +40 -0
- data/lib/lutaml/key_value/adapter/toml/tomlib_adapter.rb +46 -0
- data/lib/lutaml/key_value/adapter/toml/transform.rb +10 -0
- data/lib/lutaml/key_value/adapter/toml.rb +21 -0
- data/lib/lutaml/key_value/adapter/yaml/document.rb +12 -0
- data/lib/lutaml/key_value/adapter/yaml/mapping.rb +19 -0
- data/lib/lutaml/key_value/adapter/yaml/mapping_rule.rb +9 -0
- data/lib/lutaml/key_value/adapter/yaml/standard_adapter.rb +41 -0
- data/lib/lutaml/key_value/adapter/yaml/transform.rb +10 -0
- data/lib/lutaml/key_value/adapter/yaml.rb +17 -0
- data/lib/lutaml/key_value/adapter/yamls/document.rb +16 -0
- data/lib/lutaml/key_value/adapter/yamls/mapping.rb +19 -0
- data/lib/lutaml/key_value/adapter/yamls/mapping_rule.rb +9 -0
- data/lib/lutaml/key_value/adapter/yamls/standard_adapter.rb +37 -0
- data/lib/lutaml/key_value/adapter/yamls/transform.rb +26 -0
- data/lib/lutaml/key_value/adapter/yamls.rb +17 -0
- data/lib/lutaml/key_value/adapter.rb +14 -0
- data/lib/lutaml/key_value/data_model/element.rb +222 -0
- data/lib/lutaml/key_value/data_model.rb +14 -0
- data/lib/lutaml/{model/key_value_document.rb → key_value/document.rb} +2 -2
- data/lib/lutaml/{model/mapping/key_value_mapping.rb → key_value/mapping.rb} +81 -43
- data/lib/lutaml/{model/mapping/key_value_mapping_rule.rb → key_value/mapping_rule.rb} +9 -10
- data/lib/lutaml/{model/transform/key_value_transform.rb → key_value/transform.rb} +111 -65
- data/lib/lutaml/key_value/transformation/collection_serializer.rb +575 -0
- data/lib/lutaml/key_value/transformation/rule_compiler.rb +294 -0
- data/lib/lutaml/key_value/transformation/value_serializer.rb +268 -0
- data/lib/lutaml/key_value/transformation.rb +1071 -0
- data/lib/lutaml/key_value/transformation_builder.rb +30 -0
- data/lib/lutaml/key_value.rb +24 -0
- data/lib/lutaml/model/attribute.rb +515 -121
- data/lib/lutaml/model/attribute_validator.rb +288 -0
- data/lib/lutaml/model/cached_type_resolver/concurrent_map_cache.rb +46 -0
- data/lib/lutaml/model/cached_type_resolver/mutex_hash_cache.rb +51 -0
- data/lib/lutaml/model/cached_type_resolver.rb +144 -0
- data/lib/lutaml/model/choice.rb +230 -13
- data/lib/lutaml/model/cli.rb +75 -121
- data/lib/lutaml/model/collection.rb +510 -43
- data/lib/lutaml/model/collection_handler.rb +106 -0
- data/lib/lutaml/model/comparable_model.rb +11 -3
- data/lib/lutaml/model/comparable_nil.rb +0 -2
- data/lib/lutaml/model/compiled_rule.rb +208 -0
- data/lib/lutaml/model/config.rb +56 -88
- data/lib/lutaml/model/configuration.rb +323 -0
- data/lib/lutaml/model/consolidation/attribute_grouper.rb +44 -0
- data/lib/lutaml/model/consolidation/dispatcher.rb +45 -0
- data/lib/lutaml/model/consolidation/engine.rb +33 -0
- data/lib/lutaml/model/consolidation/pattern_chunker.rb +87 -0
- data/lib/lutaml/model/consolidation_map.rb +68 -0
- data/lib/lutaml/model/consolidation_rule/dispatch_block.rb +34 -0
- data/lib/lutaml/model/consolidation_rule/gather_rule.rb +17 -0
- data/lib/lutaml/model/consolidation_rule/pattern_content_rule.rb +15 -0
- data/lib/lutaml/model/consolidation_rule/pattern_element_rule.rb +17 -0
- data/lib/lutaml/model/consolidation_rule.rb +27 -0
- data/lib/lutaml/model/constants.rb +5 -3
- data/lib/lutaml/model/context_registry.rb +208 -0
- data/lib/lutaml/model/error/element_count_out_of_range_error.rb +13 -7
- data/lib/lutaml/model/error/format_adapter_not_specified_error.rb +25 -0
- data/lib/lutaml/model/error/invalid_attribute_type_error.rb +98 -0
- data/lib/lutaml/model/error/invalid_format_error.rb +11 -0
- data/lib/lutaml/model/error/liquid_class_not_found_error.rb +9 -0
- data/lib/lutaml/model/error/mapping_already_exists_error.rb +6 -0
- data/lib/lutaml/model/error/mapping_attribute_missing_error.rb +6 -0
- data/lib/lutaml/model/error/mapping_attribute_type_error.rb +6 -0
- data/lib/lutaml/model/error/mixed_content_collection_error.rb +17 -0
- data/lib/lutaml/model/error/no_attributes_defined_liquid_error.rb +9 -0
- data/lib/lutaml/model/error/no_mapping_found_error.rb +9 -0
- data/lib/lutaml/model/error/required_attribute_missing_error.rb +9 -0
- data/lib/lutaml/model/error/reverse_transform_block_not_defined_error.rb +6 -0
- data/lib/lutaml/model/error/reverse_transformation_declaration_error.rb +6 -0
- data/lib/lutaml/model/error/sorting_configuration_conflict_error.rb +9 -0
- data/lib/lutaml/model/error/transform_block_not_defined_error.rb +6 -0
- data/lib/lutaml/model/error/type.rb +17 -0
- data/lib/lutaml/model/error/undefined_attribute_error.rb +9 -0
- data/lib/lutaml/model/error/unknown_adapter_type_error.rb +82 -3
- data/lib/lutaml/model/error/unknown_type_error.rb +25 -2
- data/lib/lutaml/model/error/unresolvable_type_error.rb +27 -0
- data/lib/lutaml/model/error.rb +2 -33
- data/lib/lutaml/model/errors.rb +4 -2
- data/lib/lutaml/model/finalization_cache.rb +51 -0
- data/lib/lutaml/model/format_registry.rb +236 -2
- data/lib/lutaml/model/global_context.rb +446 -0
- data/lib/lutaml/model/global_register.rb +106 -5
- data/lib/lutaml/model/hash.rb +15 -0
- data/lib/lutaml/model/import_registry.rb +250 -0
- data/lib/lutaml/model/instrumentation.rb +304 -0
- data/lib/lutaml/model/json.rb +17 -13
- data/lib/lutaml/model/jsonl.rb +7 -13
- data/lib/lutaml/model/liquefiable.rb +100 -12
- data/lib/lutaml/model/liquid/mapping.rb +30 -0
- data/lib/lutaml/model/liquid.rb +9 -0
- data/lib/lutaml/model/mapping/listener.rb +124 -0
- data/lib/lutaml/model/mapping/mapping.rb +99 -1
- data/lib/lutaml/model/mapping/mapping_rule.rb +172 -17
- data/lib/lutaml/model/mapping/model_mapping.rb +133 -0
- data/lib/lutaml/model/mapping/model_mapping_rule.rb +57 -0
- data/lib/lutaml/model/mapping_hash.rb +3 -1
- data/lib/lutaml/model/model_transformer.rb +101 -0
- data/lib/lutaml/model/one_entry_cache.rb +57 -0
- data/lib/lutaml/model/organization.rb +29 -0
- data/lib/lutaml/model/register/model_tree_importer.rb +88 -0
- data/lib/lutaml/model/register/namespace_binding.rb +92 -0
- data/lib/lutaml/model/register.rb +500 -35
- data/lib/lutaml/model/registrable.rb +2 -0
- data/lib/lutaml/model/render_policy.rb +154 -0
- data/lib/lutaml/model/runtime_compatibility.rb +95 -0
- data/lib/lutaml/model/schema/base_schema.rb +1 -3
- data/lib/lutaml/model/schema/decorators/attribute.rb +3 -1
- data/lib/lutaml/model/schema/decorators/choices.rb +0 -2
- data/lib/lutaml/model/schema/decorators/class_definition.rb +4 -5
- data/lib/lutaml/model/schema/decorators/definition_collection.rb +7 -7
- data/lib/lutaml/model/schema/decorators.rb +15 -0
- data/lib/lutaml/model/schema/generator/definition.rb +4 -3
- data/lib/lutaml/model/schema/generator/definitions_collection.rb +4 -3
- data/lib/lutaml/model/schema/generator/properties_collection.rb +7 -5
- data/lib/lutaml/model/schema/generator/property.rb +5 -1
- data/lib/lutaml/model/schema/generator.rb +15 -0
- data/lib/lutaml/model/schema/helpers.rb +11 -0
- data/lib/lutaml/model/schema/json_schema.rb +9 -53
- data/lib/lutaml/model/schema/renderer.rb +19 -17
- data/lib/lutaml/model/schema/schema_builder/nokogiri.rb +41 -0
- data/lib/lutaml/model/schema/schema_builder/oga.rb +92 -0
- data/lib/lutaml/model/schema/shared_methods.rb +2 -2
- data/lib/lutaml/model/schema/xml_compiler/attribute.rb +33 -12
- data/lib/lutaml/model/schema/xml_compiler/attribute_group.rb +3 -1
- data/lib/lutaml/model/schema/xml_compiler/choice.rb +4 -2
- data/lib/lutaml/model/schema/xml_compiler/complex_type.rb +73 -36
- data/lib/lutaml/model/schema/xml_compiler/element.rb +18 -1
- data/lib/lutaml/model/schema/xml_compiler/group.rb +20 -4
- data/lib/lutaml/model/schema/xml_compiler/registry_generator.rb +127 -0
- data/lib/lutaml/model/schema/xml_compiler/restriction.rb +5 -2
- data/lib/lutaml/model/schema/xml_compiler/sequence.rb +6 -2
- data/lib/lutaml/model/schema/xml_compiler/simple_content.rb +7 -3
- data/lib/lutaml/model/schema/xml_compiler/simple_type.rb +127 -51
- data/lib/lutaml/model/schema/xml_compiler/xml_namespace_class.rb +110 -0
- data/lib/lutaml/model/schema/xml_compiler.rb +256 -82
- data/lib/lutaml/model/schema/yaml_schema.rb +10 -50
- data/lib/lutaml/model/schema.rb +49 -14
- data/lib/lutaml/model/schema_location.rb +12 -60
- data/lib/lutaml/model/sequence.rb +102 -30
- data/lib/lutaml/model/serializable.rb +1 -3
- data/lib/lutaml/model/serialization_adapter.rb +2 -0
- data/lib/lutaml/model/serialize/attribute_definition.rb +229 -0
- data/lib/lutaml/model/serialize/builder.rb +169 -0
- data/lib/lutaml/model/serialize/enum_handling.rb +124 -0
- data/lib/lutaml/model/serialize/format_conversion.rb +298 -0
- data/lib/lutaml/model/serialize/initialization.rb +308 -0
- data/lib/lutaml/model/serialize/model_import.rb +357 -0
- data/lib/lutaml/model/serialize/transformation_builder.rb +127 -0
- data/lib/lutaml/model/serialize/value_mapping.rb +200 -0
- data/lib/lutaml/model/serialize.rb +175 -580
- data/lib/lutaml/model/services/base.rb +2 -2
- data/lib/lutaml/model/services/default_value_resolver.rb +60 -0
- data/lib/lutaml/model/services/logger.rb +10 -7
- data/lib/lutaml/model/services/rule_value_extractor.rb +22 -36
- data/lib/lutaml/model/services/transformer.rb +50 -9
- data/lib/lutaml/model/services/type/validator/string.rb +3 -2
- data/lib/lutaml/model/services/type/validator/symbol.rb +30 -0
- data/lib/lutaml/model/services/type/validator.rb +5 -2
- data/lib/lutaml/model/services/type.rb +9 -0
- data/lib/lutaml/model/services/validator.rb +1 -3
- data/lib/lutaml/model/services.rb +12 -5
- data/lib/lutaml/model/store.rb +59 -0
- data/lib/lutaml/model/toml.rb +24 -18
- data/lib/lutaml/model/transform/xml_transform.rb +4 -227
- data/lib/lutaml/model/transform.rb +49 -17
- data/lib/lutaml/model/transformation.rb +84 -0
- data/lib/lutaml/model/transformation_builder.rb +55 -0
- data/lib/lutaml/model/transformation_registry.rb +314 -0
- data/lib/lutaml/model/type/base64_binary.rb +58 -0
- data/lib/lutaml/model/type/boolean.rb +9 -16
- data/lib/lutaml/model/type/date.rb +49 -9
- data/lib/lutaml/model/type/date_time.rb +30 -18
- data/lib/lutaml/model/type/decimal.rb +28 -9
- data/lib/lutaml/model/type/duration.rb +82 -0
- data/lib/lutaml/model/type/float.rb +12 -13
- data/lib/lutaml/model/type/hash.rb +10 -17
- data/lib/lutaml/model/type/hex_binary.rb +56 -0
- data/lib/lutaml/model/type/integer.rb +19 -1
- data/lib/lutaml/model/type/qname.rb +85 -0
- data/lib/lutaml/model/type/reference.rb +76 -0
- data/lib/lutaml/model/type/string.rb +18 -35
- data/lib/lutaml/model/type/symbol.rb +67 -0
- data/lib/lutaml/model/type/time.rb +19 -22
- data/lib/lutaml/model/type/time_without_date.rb +18 -18
- data/lib/lutaml/model/type/uninitialized_class_guard.rb +36 -0
- data/lib/lutaml/model/type/uri.rb +51 -0
- data/lib/lutaml/model/type/value.rb +52 -5
- data/lib/lutaml/model/type.rb +98 -13
- data/lib/lutaml/model/type_context.rb +279 -0
- data/lib/lutaml/model/type_registry.rb +165 -0
- data/lib/lutaml/model/type_resolver.rb +185 -0
- data/lib/lutaml/model/type_substitution.rb +117 -0
- data/lib/lutaml/model/uninitialized_class.rb +1 -1
- data/lib/lutaml/model/utils.rb +110 -9
- data/lib/lutaml/model/validation.rb +50 -7
- data/lib/lutaml/model/value_transformer.rb +25 -0
- data/lib/lutaml/model/version.rb +1 -1
- data/lib/lutaml/model/yaml.rb +7 -13
- data/lib/lutaml/model/yamls.rb +7 -13
- data/lib/lutaml/model.rb +227 -25
- data/lib/lutaml/{model/toml → toml/adapter}/document.rb +3 -4
- data/lib/lutaml/{model/toml → toml/adapter}/mapping.rb +7 -6
- data/lib/lutaml/toml/adapter/mapping_rule.rb +9 -0
- data/lib/lutaml/toml/adapter/toml_rb_adapter.rb +38 -0
- data/lib/lutaml/toml/adapter/tomlib_adapter.rb +54 -0
- data/lib/lutaml/toml/adapter/transform.rb +9 -0
- data/lib/lutaml/toml/adapter.rb +19 -0
- data/lib/lutaml/toml/type/serializers.rb +71 -0
- data/lib/lutaml/toml.rb +41 -0
- data/lib/lutaml/xml/adapter/adapter_helpers.rb +149 -0
- data/lib/lutaml/xml/adapter/base_adapter.rb +672 -0
- data/lib/lutaml/xml/adapter/namespace_data.rb +73 -0
- data/lib/lutaml/xml/adapter/nokogiri_adapter.rb +1115 -0
- data/lib/lutaml/xml/adapter/oga_adapter.rb +849 -0
- data/lib/lutaml/xml/adapter/ox_adapter.rb +891 -0
- data/lib/lutaml/xml/adapter/rexml_adapter.rb +869 -0
- data/lib/lutaml/xml/adapter/xml_serialization.rb +145 -0
- data/lib/lutaml/xml/adapter.rb +20 -0
- data/lib/lutaml/xml/adapter_element.rb +185 -0
- data/lib/lutaml/xml/adapter_loader.rb +53 -0
- data/lib/lutaml/xml/attribute_namespace_resolver.rb +139 -0
- data/lib/lutaml/xml/blank_namespace.rb +51 -0
- data/lib/lutaml/xml/blank_namespace_handler.rb +50 -0
- data/lib/lutaml/xml/builder/base.rb +215 -0
- data/lib/lutaml/xml/builder/nokogiri.rb +12 -0
- data/lib/lutaml/xml/builder/oga.rb +15 -0
- data/lib/lutaml/xml/builder/ox.rb +15 -0
- data/lib/lutaml/xml/builder/rexml.rb +15 -0
- data/lib/lutaml/xml/builder.rb +16 -0
- data/lib/lutaml/xml/configurable.rb +214 -0
- data/lib/lutaml/xml/data_model.rb +257 -0
- data/lib/lutaml/xml/decisions/decision.rb +103 -0
- data/lib/lutaml/xml/decisions/decision_context.rb +225 -0
- data/lib/lutaml/xml/decisions/decision_engine.rb +67 -0
- data/lib/lutaml/xml/decisions/decision_rule.rb +54 -0
- data/lib/lutaml/xml/decisions/element_prefix_resolver.rb +85 -0
- data/lib/lutaml/xml/decisions/rules/attribute_usage_rule.rb +37 -0
- data/lib/lutaml/xml/decisions/rules/default_preference_rule.rb +62 -0
- data/lib/lutaml/xml/decisions/rules/element_form_default_rule.rb +66 -0
- data/lib/lutaml/xml/decisions/rules/element_form_default_unqualified_rule.rb +73 -0
- data/lib/lutaml/xml/decisions/rules/element_form_option_rule.rb +83 -0
- data/lib/lutaml/xml/decisions/rules/explicit_option_rule.rb +57 -0
- data/lib/lutaml/xml/decisions/rules/format_preservation_rule.rb +74 -0
- data/lib/lutaml/xml/decisions/rules/hoisted_on_parent_rule.rb +60 -0
- data/lib/lutaml/xml/decisions/rules/inherit_from_parent_rule.rb +52 -0
- data/lib/lutaml/xml/decisions/rules/inherit_parent_prefix_rule.rb +69 -0
- data/lib/lutaml/xml/decisions/rules/namespace_scope_rule.rb +54 -0
- data/lib/lutaml/xml/decisions/rules/reuse_parent_prefix_rule.rb +78 -0
- data/lib/lutaml/xml/decisions/rules/used_prefix_rule.rb +70 -0
- data/lib/lutaml/xml/decisions/rules.rb +39 -0
- data/lib/lutaml/xml/decisions.rb +15 -0
- data/lib/lutaml/xml/declaration_handler.rb +217 -0
- data/lib/lutaml/xml/declaration_plan/attribute_node.rb +81 -0
- data/lib/lutaml/xml/declaration_plan/element_node.rb +101 -0
- data/lib/lutaml/xml/declaration_plan.rb +480 -0
- data/lib/lutaml/xml/declaration_plan_query.rb +105 -0
- data/lib/lutaml/xml/declaration_planner.rb +1849 -0
- data/lib/lutaml/xml/doctype_extractor.rb +51 -0
- data/lib/lutaml/xml/document.rb +380 -0
- data/lib/lutaml/xml/element.rb +93 -0
- data/lib/lutaml/xml/element_prefix_resolver.rb +50 -0
- data/lib/lutaml/xml/encoding_normalizer.rb +54 -0
- data/lib/lutaml/xml/error/invalid_namespace_error.rb +46 -0
- data/lib/lutaml/xml/error/invalid_xsd_type_error.rb +43 -0
- data/lib/lutaml/xml/error/namespace_mismatch_error.rb +53 -0
- data/lib/lutaml/xml/error/xml_configuration_error.rb +17 -0
- data/lib/lutaml/xml/error/xml_error.rb +21 -0
- data/lib/lutaml/xml/format_chooser.rb +214 -0
- data/lib/lutaml/xml/hoisting_algorithm.rb +234 -0
- data/lib/lutaml/xml/listener.rb +33 -0
- data/lib/lutaml/xml/mapping.rb +1470 -0
- data/lib/lutaml/xml/mapping_rule.rb +565 -0
- data/lib/lutaml/xml/model_transform.rb +944 -0
- data/lib/lutaml/xml/namespace.rb +435 -0
- data/lib/lutaml/xml/namespace_class_registry.rb +144 -0
- data/lib/lutaml/xml/namespace_collector.rb +611 -0
- data/lib/lutaml/xml/namespace_declaration.rb +202 -0
- data/lib/lutaml/xml/namespace_declaration_builder.rb +67 -0
- data/lib/lutaml/xml/namespace_declaration_data.rb +182 -0
- data/lib/lutaml/xml/namespace_inheritance_resolver.rb +142 -0
- data/lib/lutaml/xml/namespace_inheritance_strategy.rb +26 -0
- data/lib/lutaml/xml/namespace_needs.rb +213 -0
- data/lib/lutaml/xml/namespace_resolution_strategy.rb +230 -0
- data/lib/lutaml/xml/namespace_resolver.rb +219 -0
- data/lib/lutaml/xml/namespace_scope_config.rb +109 -0
- data/lib/lutaml/xml/namespace_type_resolver.rb +135 -0
- data/lib/lutaml/xml/namespace_usage.rb +121 -0
- data/lib/lutaml/xml/nokogiri/element.rb +34 -0
- data/lib/lutaml/xml/nokogiri.rb +10 -0
- data/lib/lutaml/xml/oga/element.rb +15 -0
- data/lib/lutaml/xml/oga.rb +10 -0
- data/lib/lutaml/xml/ox/element.rb +15 -0
- data/lib/lutaml/xml/ox.rb +10 -0
- data/lib/lutaml/xml/parsed_namespace_declaration.rb +129 -0
- data/lib/lutaml/xml/parsed_namespace_set.rb +149 -0
- data/lib/lutaml/xml/polymorphic_value_handler.rb +41 -0
- data/lib/lutaml/xml/qualified_inheritance_strategy.rb +27 -0
- data/lib/lutaml/xml/rexml/element.rb +15 -0
- data/lib/lutaml/xml/rexml.rb +10 -0
- data/lib/lutaml/xml/schema/builder/nokogiri.rb +41 -0
- data/lib/lutaml/xml/schema/builder/oga.rb +92 -0
- data/lib/lutaml/xml/schema/builder.rb +59 -0
- data/lib/lutaml/xml/schema/builtin_types.rb +112 -0
- data/lib/lutaml/{model → xml}/schema/relaxng_schema.rb +9 -4
- data/lib/lutaml/xml/schema/xsd/all.rb +31 -0
- data/lib/lutaml/xml/schema/xsd/annotation.rb +31 -0
- data/lib/lutaml/xml/schema/xsd/any.rb +33 -0
- data/lib/lutaml/xml/schema/xsd/any_attribute.rb +29 -0
- data/lib/lutaml/xml/schema/xsd/appinfo.rb +25 -0
- data/lib/lutaml/xml/schema/xsd/attribute.rb +78 -0
- data/lib/lutaml/xml/schema/xsd/attribute_group.rb +89 -0
- data/lib/lutaml/xml/schema/xsd/base.rb +267 -0
- data/lib/lutaml/xml/schema/xsd/choice.rb +68 -0
- data/lib/lutaml/xml/schema/xsd/complex_content.rb +39 -0
- data/lib/lutaml/xml/schema/xsd/complex_type.rb +157 -0
- data/lib/lutaml/xml/schema/xsd/documentation.rb +26 -0
- data/lib/lutaml/xml/schema/xsd/element.rb +117 -0
- data/lib/lutaml/xml/schema/xsd/enumeration.rb +25 -0
- data/lib/lutaml/xml/schema/xsd/errors/enhanced_error.rb +142 -0
- data/lib/lutaml/xml/schema/xsd/errors/error_context.rb +67 -0
- data/lib/lutaml/xml/schema/xsd/errors/message_builder.rb +103 -0
- data/lib/lutaml/xml/schema/xsd/errors/suggestion.rb +67 -0
- data/lib/lutaml/xml/schema/xsd/errors/troubleshooters/namespace_troubleshooter.rb +96 -0
- data/lib/lutaml/xml/schema/xsd/errors/troubleshooters/troubleshooting_handler.rb +70 -0
- data/lib/lutaml/xml/schema/xsd/errors.rb +148 -0
- data/lib/lutaml/xml/schema/xsd/extension_complex_content.rb +63 -0
- data/lib/lutaml/xml/schema/xsd/extension_simple_content.rb +48 -0
- data/lib/lutaml/xml/schema/xsd/field.rb +25 -0
- data/lib/lutaml/xml/schema/xsd/file_validation_result.rb +55 -0
- data/lib/lutaml/xml/schema/xsd/fraction_digits.rb +29 -0
- data/lib/lutaml/xml/schema/xsd/glob.rb +105 -0
- data/lib/lutaml/xml/schema/xsd/group.rb +79 -0
- data/lib/lutaml/xml/schema/xsd/import.rb +33 -0
- data/lib/lutaml/xml/schema/xsd/include.rb +31 -0
- data/lib/lutaml/xml/schema/xsd/key.rb +32 -0
- data/lib/lutaml/xml/schema/xsd/keyref.rb +33 -0
- data/lib/lutaml/xml/schema/xsd/length.rb +27 -0
- data/lib/lutaml/xml/schema/xsd/list.rb +28 -0
- data/lib/lutaml/xml/schema/xsd/max_exclusive.rb +25 -0
- data/lib/lutaml/xml/schema/xsd/max_inclusive.rb +23 -0
- data/lib/lutaml/xml/schema/xsd/max_length.rb +25 -0
- data/lib/lutaml/xml/schema/xsd/min_exclusive.rb +25 -0
- data/lib/lutaml/xml/schema/xsd/min_inclusive.rb +23 -0
- data/lib/lutaml/xml/schema/xsd/min_length.rb +25 -0
- data/lib/lutaml/xml/schema/xsd/namespace_mapping.rb +37 -0
- data/lib/lutaml/xml/schema/xsd/namespace_uri_remapping.rb +79 -0
- data/lib/lutaml/xml/schema/xsd/notation.rb +31 -0
- data/lib/lutaml/xml/schema/xsd/pattern.rb +25 -0
- data/lib/lutaml/xml/schema/xsd/redefine.rb +35 -0
- data/lib/lutaml/xml/schema/xsd/restriction_complex_content.rb +56 -0
- data/lib/lutaml/xml/schema/xsd/restriction_simple_content.rb +84 -0
- data/lib/lutaml/xml/schema/xsd/restriction_simple_type.rb +64 -0
- data/lib/lutaml/xml/schema/xsd/schema.rb +373 -0
- data/lib/lutaml/xml/schema/xsd/schema_file_validation_results.rb +55 -0
- data/lib/lutaml/xml/schema/xsd/schema_location_mapping.rb +74 -0
- data/lib/lutaml/xml/schema/xsd/schema_name_resolver.rb +32 -0
- data/lib/lutaml/xml/schema/xsd/schema_path.rb +196 -0
- data/lib/lutaml/xml/schema/xsd/schema_validator.rb +256 -0
- data/lib/lutaml/xml/schema/xsd/selector.rb +27 -0
- data/lib/lutaml/xml/schema/xsd/sequence.rb +68 -0
- data/lib/lutaml/xml/schema/xsd/serialized_schema.rb +185 -0
- data/lib/lutaml/xml/schema/xsd/simple_content.rb +61 -0
- data/lib/lutaml/xml/schema/xsd/simple_type.rb +37 -0
- data/lib/lutaml/xml/schema/xsd/total_digits.rb +29 -0
- data/lib/lutaml/xml/schema/xsd/type_index_entry.rb +40 -0
- data/lib/lutaml/xml/schema/xsd/type_resolution_result.rb +112 -0
- data/lib/lutaml/xml/schema/xsd/union.rb +30 -0
- data/lib/lutaml/xml/schema/xsd/unique.rb +31 -0
- data/lib/lutaml/xml/schema/xsd/validation_error.rb +48 -0
- data/lib/lutaml/xml/schema/xsd/validation_result.rb +86 -0
- data/lib/lutaml/xml/schema/xsd/version.rb +11 -0
- data/lib/lutaml/xml/schema/xsd/white_space.rb +27 -0
- data/lib/lutaml/xml/schema/xsd.rb +165 -0
- data/lib/lutaml/xml/schema/xsd_namespace.rb +29 -0
- data/lib/lutaml/xml/schema/xsd_schema.rb +536 -0
- data/lib/lutaml/xml/schema.rb +13 -0
- data/lib/lutaml/xml/schema_location.rb +155 -0
- data/lib/lutaml/xml/serialization/collection_ext.rb +61 -0
- data/lib/lutaml/xml/serialization/format_conversion.rb +402 -0
- data/lib/lutaml/xml/serialization/instance_methods.rb +297 -0
- data/lib/lutaml/xml/serialization/model_import_ext.rb +40 -0
- data/lib/lutaml/xml/serialization.rb +15 -0
- data/lib/lutaml/xml/shared_dsl.rb +119 -0
- data/lib/lutaml/xml/transform.rb +6 -0
- data/lib/lutaml/xml/transformation/custom_method_wrapper.rb +262 -0
- data/lib/lutaml/xml/transformation/element_builder.rb +586 -0
- data/lib/lutaml/xml/transformation/ordered_applier.rb +329 -0
- data/lib/lutaml/xml/transformation/rule_applier.rb +379 -0
- data/lib/lutaml/xml/transformation/rule_compiler.rb +543 -0
- data/lib/lutaml/xml/transformation/skip_logic.rb +70 -0
- data/lib/lutaml/xml/transformation/value_serializer.rb +139 -0
- data/lib/lutaml/xml/transformation.rb +340 -0
- data/lib/lutaml/xml/transformation_builder.rb +28 -0
- data/lib/lutaml/xml/transformation_support.rb +14 -0
- data/lib/lutaml/xml/type/configurable.rb +157 -0
- data/lib/lutaml/xml/type/serializers.rb +98 -0
- data/lib/lutaml/xml/type/value_xml_mapping.rb +94 -0
- data/lib/lutaml/xml/type_namespace/collector.rb +101 -0
- data/lib/lutaml/xml/type_namespace/declaration.rb +61 -0
- data/lib/lutaml/xml/type_namespace/planner.rb +121 -0
- data/lib/lutaml/xml/type_namespace/reference.rb +71 -0
- data/lib/lutaml/xml/type_namespace/resolver.rb +43 -0
- data/lib/lutaml/xml/type_namespace.rb +13 -0
- data/lib/lutaml/xml/type_namespace_resolver.rb +76 -0
- data/lib/lutaml/xml/unqualified_inheritance_strategy.rb +34 -0
- data/lib/lutaml/xml/w3c/registration.rb +66 -0
- data/lib/lutaml/xml/w3c.rb +398 -0
- data/lib/lutaml/xml/xml_attribute.rb +38 -0
- data/lib/lutaml/xml/xml_element.rb +447 -0
- data/lib/lutaml/xml/xml_namespace.rb +72 -0
- data/lib/lutaml/xml.rb +295 -0
- data/lib/lutaml/{model/yaml → yaml/adapter}/document.rb +3 -3
- data/lib/lutaml/yaml/adapter/mapping.rb +19 -0
- data/lib/lutaml/yaml/adapter/mapping_rule.rb +9 -0
- data/lib/lutaml/yaml/adapter/standard_adapter.rb +39 -0
- data/lib/lutaml/yaml/adapter/transform.rb +9 -0
- data/lib/lutaml/yaml/adapter.rb +13 -0
- data/lib/lutaml/yaml/schema/yaml_schema.rb +65 -0
- data/lib/lutaml/yaml/schema.rb +9 -0
- data/lib/lutaml/yaml/type/serializers.rb +60 -0
- data/lib/lutaml/yaml.rb +26 -0
- data/lib/lutaml/{model/yamls → yamls/adapter}/document.rb +2 -2
- data/lib/lutaml/yamls/adapter/mapping.rb +19 -0
- data/lib/lutaml/yamls/adapter/mapping_rule.rb +9 -0
- data/lib/lutaml/{model/yamls → yamls/adapter}/standard_adapter.rb +6 -5
- data/lib/lutaml/yamls/adapter/transform.rb +26 -0
- data/lib/lutaml/yamls/adapter.rb +13 -0
- data/lib/lutaml/yamls.rb +21 -0
- data/lib/tasks/benchmark_runner.rb +161 -0
- data/lib/tasks/memory_profile.rb +176 -0
- data/lib/tasks/performance.rake +75 -0
- data/lib/tasks/performance_benchmark.rb +499 -0
- data/lib/tasks/performance_comparator.rb +114 -0
- data/lib/tasks/performance_helpers.rb +149 -0
- data/lib/tasks/xml_compiler_benchmark.rb +226 -0
- data/lib/tasks/xml_optimization_benchmark.rb +178 -0
- data/lutaml-model.gemspec +11 -1
- data/reference-docs/XML Entity Definitions for Characters (3rd Edition).html +595 -0
- data/scripts-xmi-profile/profile_xmi.rb +192 -0
- data/scripts-xmi-profile/profile_xmi_simple.rb +210 -0
- data/spec/address_person_spec.rb +436 -0
- data/spec/address_spec.rb +20 -18
- data/spec/ceramic_spec.rb +25 -7
- data/spec/fixtures/address.rb +2 -2
- data/spec/fixtures/ceramic.rb +6 -2
- data/spec/fixtures/person.rb +14 -13
- data/spec/fixtures/sample_model.rb +3 -3
- data/spec/fixtures/vase.rb +3 -3
- data/spec/fixtures/xml/address_example_260.xsd +8 -4
- data/spec/fixtures/xml/examples/nested_categories.xml +45 -51
- data/spec/fixtures/xml/examples/valid_catalog.xml +27 -41
- data/spec/fixtures/xml/math_document_schema.xsd +7 -5
- data/spec/fixtures/xml/product_catalog.xsd +19 -138
- data/spec/fixtures/xml/schema/xsd/build_test_package.rb +19 -0
- data/spec/fixtures/xml/schema/xsd/citygml/2.0/cityGMLBase.xsd +339 -0
- data/spec/fixtures/xml/schema/xsd/citygml/appearance/2.0/appearance.xsd +332 -0
- data/spec/fixtures/xml/schema/xsd/citygml/bridge/2.0/bridge.xsd +578 -0
- data/spec/fixtures/xml/schema/xsd/citygml/building/2.0/building.xsd +535 -0
- data/spec/fixtures/xml/schema/xsd/citygml/cityfurniture/2.0/cityFurniture.xsd +57 -0
- data/spec/fixtures/xml/schema/xsd/citygml/cityobjectgroup/2.0/cityObjectGroup.xsd +84 -0
- data/spec/fixtures/xml/schema/xsd/citygml/examples/2.0/ade/noise-ade/CityGML-NoiseADE.xsd +174 -0
- data/spec/fixtures/xml/schema/xsd/citygml/examples/2.0/ade/robotics-ade/stdOp.xsd +46 -0
- data/spec/fixtures/xml/schema/xsd/citygml/examples/2.0/ade/robotics-ade/unr.xsd +46 -0
- data/spec/fixtures/xml/schema/xsd/citygml/generics/2.0/generics.xsd +184 -0
- data/spec/fixtures/xml/schema/xsd/citygml/landuse/2.0/landUse.xsd +50 -0
- data/spec/fixtures/xml/schema/xsd/citygml/profiles/base/2.0/CityGML.xsd +30 -0
- data/spec/fixtures/xml/schema/xsd/citygml/relief/2.0/relief.xsd +186 -0
- data/spec/fixtures/xml/schema/xsd/citygml/texturedsurface/2.0/texturedSurface.xsd +157 -0
- data/spec/fixtures/xml/schema/xsd/citygml/transportation/2.0/transportation.xsd +224 -0
- data/spec/fixtures/xml/schema/xsd/citygml/tunnel/2.0/tunnel.xsd +530 -0
- data/spec/fixtures/xml/schema/xsd/citygml/vegetation/2.0/vegetation.xsd +108 -0
- data/spec/fixtures/xml/schema/xsd/citygml/waterbody/2.0/waterBody.xsd +171 -0
- data/spec/fixtures/xml/schema/xsd/citygml/xAL/xAL.xsd +1680 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/basicTypes.xsd +262 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/coordinateOperations.xsd +519 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/coordinateReferenceSystems.xsd +367 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/coordinateSystems.xsd +291 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/coverage.xsd +287 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/datums.xsd +281 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/defaultStyle.xsd +447 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/deprecatedTypes.xsd +1128 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/dictionary.xsd +84 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/direction.xsd +78 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/dynamicFeature.xsd +103 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/feature.xsd +88 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/geometryAggregates.xsd +191 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/geometryBasic0d1d.xsd +271 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/geometryBasic2d.xsd +118 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/geometryComplexes.xsd +89 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/geometryPrimitives.xsd +841 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/gml.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/gmlBase.xsd +179 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/grids.xsd +58 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/measures.xsd +63 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/observation.xsd +90 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/referenceSystems.xsd +64 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/temporal.xsd +263 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/temporalReferenceSystems.xsd +183 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/temporalTopology.xsd +113 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/topology.xsd +380 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/units.xsd +156 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/gml/3.2.1/valueObjects.xsd +199 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gco/basicTypes.xsd +429 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gco/gco.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gco/gcoBase.xsd +61 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/applicationSchema.xsd +42 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/citation.xsd +275 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/constraints.xsd +106 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/content.xsd +188 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/dataQuality.xsd +554 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/distribution.xsd +202 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/extent.xsd +205 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/freeText.xsd +122 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/gmd.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/identification.xsd +348 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/maintenance.xsd +86 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/metadataApplication.xsd +175 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/metadataEntity.xsd +70 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/metadataExtension.xsd +99 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/portrayalCatalogue.xsd +36 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/referenceSystem.xsd +100 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmd/spatialRepresentation.xsd +237 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/catalogues.xsd +112 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/codelistItem.xsd +168 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/crsItem.xsd +1030 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/extendedTypes.xsd +75 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/gmx.xsd +2 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/gmxUsage.xsd +127 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gmx/uomItem.xsd +162 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gsr/gsr.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gsr/spatialReferencing.xsd +24 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gss/geometry.xsd +35 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gss/gss.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gts/gts.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/iso/19139/20070417/gts/temporalObjects.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/codesynthesis-gml-3.2.1/xlink/1.0.0/xlinks.xsd +122 -0
- data/spec/fixtures/xml/schema/xsd/i-ur/urbanFunction.xsd +2772 -0
- data/spec/fixtures/xml/schema/xsd/i-ur/urbanObject.xsd +3344 -0
- data/spec/fixtures/xml/schema/xsd/import-without-location.xsd +9 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gco/1.2/baseTypes.xsd +775 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gco/1.2/gco.xsd +17 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gco/1.2.0/baseTypes.xsd +775 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gco/1.2.0/gco.xsd +17 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gcx/1.2/extendedTypes.xsd +151 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gcx/1.2/gcx.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gcx/1.2.0/extendedTypes.xsd +151 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19103/-/gcx/1.2.0/gcx.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/coordinateGeometry.xsd +1078 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/geometricAggregates.xsd +141 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/geometricComplex.xsd +177 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/geometricPrimative.xsd +526 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/geometry.xsd +9 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/geometryRoot.xsd +59 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/gss.xsd +26 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/topoComplex.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/topoPrimative.xsd +432 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/topoRoot.xsd +9 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/1.0.0/topology.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/coordinates.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/curves.xsd +22 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/geometry.xsd +41 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/gss.xsd +21 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/simplicialGeometry.xsd +63 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/solids.xsd +21 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/surfaces.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19107/-/gss/2.0.0/topology.xsd +21 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.1.0/abstract.xsd +47 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.1.0/fcc.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.2/abstract.xsd +45 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.2/fcc.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.2.0/abstract.xsd +45 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/fcc/2.2.0/fcc.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/1.0/gfc.xsd +497 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.1.0/featureCatalogue.xsd +673 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.1.0/gfc.xsd +19 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.2/featureCatalogue.xsd +798 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.2/gfc.xsd +19 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.2.0/featureCatalogue.xsd +798 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/-/gfc/2.2.0/gfc.xsd +19 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/fcc/1.0/abstract.xsd +49 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/fcc/1.0/fcc.xsd +9 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/gfc/1.1/featureCatalogue.xsd +671 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19110/gfc/1.1/gfc.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1/rbc.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1/rbcStubs.xsd +195 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.0/rbc.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.0/rbcStubs.xsd +195 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/AbstractCommonClasses.xsd +282 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/commonClasses.xsd +127 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/coordOps.xsd +676 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/coordRefSys.xsd +498 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/coordSys.xsd +844 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/coordinates.xsd +101 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/datum.xsd +474 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19111/-/rbc/3.1.1/rbc.xsd +18 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/cit/1.3/cit.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/cit/1.3/citation.xsd +445 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/cit/1.3.0/cit.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/cit/1.3.0/citation.xsd +445 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3/extent.xsd +243 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3/gex.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3.0/extent.xsd +243 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3.0/gex.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3.1/extent.xsd +244 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/gex/1.3.1/gex.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/lan/1.3/lan.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/lan/1.3/language.xsd +152 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/lan/1.3.0/lan.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/lan/1.3.0/language.xsd +152 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mas/1.3/applicationSchema.xsd +58 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mas/1.3/mas.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mas/1.3.0/applicationSchema.xsd +58 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mas/1.3.0/mas.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3/AbstractCommonClasses.xsd +378 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3/commonClasses.xsd +205 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3/mcc.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3.0/AbstractCommonClasses.xsd +378 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3.0/commonClasses.xsd +205 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mcc/1.3.0/mcc.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mco/1.3/constraints.xsd +171 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mco/1.3/mco.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mco/1.3.0/constraints.xsd +171 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mco/1.3.0/mco.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3/mda.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3/metadataApplication.xsd +207 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3.0/mda.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3.0/metadataApplication.xsd +207 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3.1/mda.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mda/1.3.1/metadataApplication.xsd +247 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3/mdb.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3/metadataBase.xsd +117 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3/metadataBaseMDAerror.xsd +116 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3.0/mdb.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3.0/metadataBase.xsd +117 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3.0/metadataBaseMDAerror.xsd +116 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3.1/mdb.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mdb/1.3.1/metadataBase.xsd +144 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mex/1.3/metadataExtension.xsd +138 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mex/1.3/mex.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mex/1.3.0/metadataExtension.xsd +138 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mex/1.3.0/mex.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mmi/1.3/maintenance.xsd +70 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mmi/1.3/mmi.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mmi/1.3.0/maintenance.xsd +70 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mmi/1.3.0/mmi.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mpc/1.3/mpc.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mpc/1.3/portrayalCatalogue.xsd +40 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mpc/1.3.0/mpc.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mpc/1.3.0/portrayalCatalogue.xsd +40 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3/content.xsd +368 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3/mrc.xsd +19 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3.0/content.xsd +368 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3.0/mrc.xsd +19 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3.1/content.xsd +366 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrc/1.3.1/mrc.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrd/1.3/distribution.xsd +232 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrd/1.3/mrd.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrd/1.3.0/distribution.xsd +232 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrd/1.3.0/mrd.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mri/1.3/identification.xsd +425 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mri/1.3/mri.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mri/1.3.0/identification.xsd +425 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mri/1.3.0/mri.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrl/1.3/lineage.xsd +130 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrl/1.3/mrl.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrl/1.3.0/lineage.xsd +130 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrl/1.3.0/mrl.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3/mrs.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3/referenceSystem.xsd +67 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3.0/mrs.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3.0/referenceSystem.xsd +67 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3.1/mrs.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/mrs/1.3.1/referenceSystem.xsd +66 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3/msr.xsd +17 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3/spatialRepresentation.xsd +326 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3.0/msr.xsd +17 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3.0/spatialRepresentation.xsd +326 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3.1/msr.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/msr/1.3.1/spatialRepresentation.xsd +326 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/srv/1.3/serviceInformation.xsd +252 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/srv/1.3/srv.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/srv/1.3.0/serviceInformation.xsd +252 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-1/srv/1.3.0/srv.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/acquisitionInformation.xsd +415 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/contentInformation.xsd +147 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/dataQualityInformation.xsd +214 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/gmi.xsd +23 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/metadataEntitySet.xsd +43 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.0/spatialRepresentationInformation.xsd +140 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/acquisitionInformation.xsd +415 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/contentInformation.xsd +147 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/dataQualityInformation.xsd +214 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/gmi.xsd +24 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/metadataEntitySet.xsd +43 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/gmi/1.1/spatialRepresentationInformation.xsd +142 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2/acquisitionInformationImagery.xsd +796 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2/mac.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2.0/acquisitionInformationImagery.xsd +796 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2.0/mac.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2.1/acquisitionInformationImagery.xsd +799 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mac/2.2.1/mac.xsd +10 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mrc/2.2/contentInformationImagery.xsd +161 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mrc/2.2.0/contentInformationImagery.xsd +161 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mrc/2.2.1/contentInformationImagery.xsd +159 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mrl/2.2/lineageImagery.xsd +312 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/mrl/2.2.0/lineageImagery.xsd +312 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/msr/2.2/spatialRepresentationImagery.xsd +138 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/msr/2.2.0/spatialRepresentationImagery.xsd +138 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-2/msr/2.2.1/spatialRepresentationImagery.xsd +145 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cat/1.0/cat.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cat/1.0/catalogues.xsd +59 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cat/1.0/codelistItem.xsd +63 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cat/1.0/crsItem.xsd +188 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cat/1.0/uomItem.xsd +45 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cit/1.0/cit.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cit/1.0/citation.xsd +400 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cit/2.0/cit.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/cit/2.0/citation.xsd +402 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gco/1.0/baseTypes.xsd +532 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gco/1.0/baseTypes2014.xsd +531 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gco/1.0/gco.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gcx/1.0/extendedTypes.xsd +97 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gcx/1.0/gcx.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gex/1.0/extent.xsd +207 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gex/1.0/gex.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gmw/1.0/gmlWrapperTypes.xsd +147 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gmw/1.0/gmlWrapperTypes2014.xsd +147 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/gmw/1.0/gmw.xsd +17 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/lan/1.0/lan.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/lan/1.0/language.xsd +141 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/1.0/acquisitionInformationImagery.xsd +424 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/1.0/mac.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/2.0/acquisitionInformationImagery.xsd +473 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/2.0/event.xsd +106 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/2.0/mac.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mac/2.0/metadataEntitySet.xsd +46 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mas/1.0/applicationSchema.xsd +53 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mas/1.0/mas.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mcc/1.0/AbstractCommonClasses.xsd +362 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mcc/1.0/commonClasses.xsd +179 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mcc/1.0/mcc.xsd +12 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mco/1.0/constraints.xsd +152 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mco/1.0/mco.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md1/1.0/md1.xsd +19 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md1/1.0/metadataWExtendedType.xsd +10 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md1/2.0/md1.xsd +19 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md1/2.0/metadataWExtendedType.xsd +10 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md2/1.0/md2.xsd +27 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md2/1.0/metadataWithExtensions.xsd +10 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md2/2.0/md2.xsd +27 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/md2/2.0/metadataWithExtensions.xsd +10 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mda/1.0/mda.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mda/1.0/metadataApplication.xsd +188 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mda/2.0/mda.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mda/2.0/metadataApplication.xsd +189 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdb/1.0/mdb.xsd +23 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdb/1.0/metadataBase.xsd +97 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdb/2.0/mdb.xsd +23 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdb/2.0/metadataBase.xsd +105 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mds/1.0/mds.xsd +59 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mds/1.0/metadataDataServices.xsd +10 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mds/2.0/mds.xsd +44 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mds/2.0/metadataDataServices.xsd +10 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdt/1.0/mdt.xsd +17 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdt/1.0/metadataTransfer.xsd +121 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdt/2.0/mdt.xsd +17 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mdt/2.0/metadataTransfer.xsd +121 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mex/1.0/metadataExtension.xsd +122 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mex/1.0/mex.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mmi/1.0/maintenance.xsd +63 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mmi/1.0/mmi.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mpc/1.0/mpc.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mpc/1.0/portrayalCatalogue.xsd +35 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/1.0/content.xsd +330 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/1.0/contentInformationImagery.xsd +160 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/1.0/mrc.xsd +18 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/2.0/content.xsd +334 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/2.0/contentInformationImagery.xsd +143 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrc/2.0/mrc.xsd +21 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrd/1.0/distribution.xsd +212 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrd/1.0/mrd.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mri/1.0/identification.xsd +385 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mri/1.0/mri.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/1.0/lineage.xsd +117 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/1.0/lineageImagery.xsd +168 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/1.0/mrl.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/2.0/lineage.xsd +118 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/2.0/lineageImagery.xsd +250 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrl/2.0/mrl.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrs/1.0/mrs.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/mrs/1.0/referenceSystem.xsd +47 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/1.0/msr.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/1.0/spatialRepresentation.xsd +288 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/1.0/spatialRepresentationImagery.xsd +113 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/2.0/msr.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/2.0/spatialRepresentation.xsd +296 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/msr/2.0/spatialRepresentationImagery.xsd +114 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/srv/2.0/serviceInformation.xsd +217 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/srv/2.0/srv.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/srv/2.1/serviceInformation.xsd +220 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19115/-3/srv/2.1/srv.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19119/-/srv/1.0/serviceMetadata.xsd +204 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19119/-/srv/1.0/serviceModel.xsd +230 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19119/-/srv/1.0/srv.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19119/srv/serviceMetadata.xsd +204 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19119/srv/serviceModel.xsd +238 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19119/srv/srv.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1/cis-0.xsd +17 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1/codeLists.xsd +68 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1/gridPoint.xsd +47 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1.0/cis-0.xsd +17 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1.0/codeLists.xsd +68 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/1.1.0/gridPoint.xsd +47 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/3.1.0/codeLists.xsd +68 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-/cis/3.1.0/gridPoint.xsd +47 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.0/coverage.xsd +185 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.0/gmlcovAll.xsd +21 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.0/grids.xsd +115 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1/coverage.xsd +188 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1/gmlcovAll.xsd +25 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1/grids.xsd +119 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1.0/coverage.xsd +188 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1.0/gmlcovAll.xsd +25 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/1.1.0/grids.xsd +119 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/3.1.0/coverage.xsd +188 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/3.1.0/gmlcovAll.xsd +23 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19123/-2/cis/3.1.0/grids.xsd +119 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/codeList.xsd +134 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/groundControlPoints.xsd +239 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/nonPhysicalSensorModel.xsd +321 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/physicalSensorModel.xsd +62 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/sensorModel.xsd +65 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/sensorParameters.xsd +762 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.0/spatialElements.xsd +497 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/codeList.xsd +129 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/groundControlPoints.xsd +235 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/nonPhysicalSensorModel.xsd +321 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/physicalSensorModel.xsd +62 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/sensorModel.xsd +65 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/sensorParameters.xsd +762 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-1/smi/1.1.1/spatialElements.xsd +496 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.0/codeList.xsd +349 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.0/sensorModel.xsd +53 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.0/sensorParameters.xsd +681 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.0/spatialElements.xsd +902 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.1/codeList.xsd +344 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.1/sensorModel.xsd +49 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.1/sensorParameters.xsd +676 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-2/smi/1.1.1/spatialElements.xsd +897 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-3/smi/1.1/smi.xsd +42 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-3/smi/1.1.0/smi.xsd +42 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19130/-3/smi/1.1.1/smi.xsd +42 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19131/-/dps/2.0/dps.xsd +1344 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19131/-/dps/2.0.0/dps.xsd +1344 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19131/-/dps/2.2/dps.xsd +1522 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19131/-/dps/2.2.0/dps.xsd +1522 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19131/-/dps/2.2.1/dps.xsd +1522 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19131/-1/dps/2.0/dps.xsd +1339 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19131/-1/dps/2.2.0/dps.xsd +1540 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.0/core.xsd +349 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.0/extended.xsd +1074 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.0/hierarchy.xsd +57 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.0/pir.xsd +13 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1/core.xsd +344 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1/extended.xsd +1076 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1/hierarchy.xsd +58 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1/pir.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1.0/core.xsd +344 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1.0/extended.xsd +1076 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1.0/hierarchy.xsd +58 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-1/pir/1.1.0/pir.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/pre/1.0/abstract.xsd +42 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/pre/1.0/pre.xsd +4 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/pre/1.2.0/abstract.xsd +44 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/pre/1.2.0/pre.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/reg/1.0/reg.xsd +8 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/reg/1.0/registration.xsd +562 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/reg/1.2.0/reg.xsd +22 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19135/-2/reg/1.2.0/registration.xsd +590 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/basicTypes.xsd +275 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/coordinateOperations.xsd +534 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/coordinateReferenceSystems.xsd +379 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/coordinateSystems.xsd +303 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/coverage.xsd +298 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/datums.xsd +293 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/defaultStyle.xsd +462 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/deprecatedTypes.xsd +1139 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/dictionary.xsd +95 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/direction.xsd +90 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/dynamicFeature.xsd +114 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/feature.xsd +99 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/geometryAggregates.xsd +203 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/geometryBasic0d1d.xsd +283 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/geometryBasic2d.xsd +130 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/geometryComplexes.xsd +101 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/geometryPrimitives.xsd +852 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/gml.xsd +25 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/gmlBase.xsd +191 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/grids.xsd +70 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/measures.xsd +74 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/observation.xsd +100 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/referenceSystems.xsd +78 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/temporal.xsd +274 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/temporalReferenceSystems.xsd +194 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/temporalTopology.xsd +124 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/topology.xsd +391 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/units.xsd +168 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-/gml/1.0/valueObjects.xsd +210 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-1/gmw/1.1/gmlWrapperTypes.xsd +160 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-1/gmw/1.1/gmw.xsd +27 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-1/gmw/1.1.0/gmlWrapperTypes.xsd +160 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19136/-1/gmw/1.1.0/gmw.xsd +27 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2/cat.xsd +18 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2/catalogues.xsd +63 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2/codelistItem.xsd +64 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2/crsItem.xsd +200 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2/uomItem.xsd +49 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2.0/cat.xsd +18 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2.0/catalogues.xsd +63 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2.0/codelistItem.xsd +64 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2.0/crsItem.xsd +200 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/cat/1.2.0/uomItem.xsd +49 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gco/1.0/basicTypes.xsd +439 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gco/1.0/gco.xsd +18 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gco/1.0/gcoBase.xsd +71 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/applicationSchema.xsd +50 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/citation.xsd +283 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/constraints.xsd +114 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/content.xsd +197 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/dataQuality.xsd +563 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/distribution.xsd +210 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/extent.xsd +216 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/freeText.xsd +130 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/gmd.xsd +18 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/identification.xsd +356 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/maintenance.xsd +95 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/metadataApplication.xsd +183 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/metadataEntity.xsd +78 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/metadataExtension.xsd +107 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/portrayalCatalogue.xsd +44 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/referenceSystem.xsd +108 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmd/1.0/spatialRepresentation.xsd +246 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/catalogues.xsd +121 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/codelistItem.xsd +179 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/crsItem.xsd +1041 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/extendedTypes.xsd +83 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/gmx.xsd +18 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/gmxUsage.xsd +136 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gmx/1.0/uomItem.xsd +173 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gsr/1.0/gsr.xsd +18 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gsr/1.0/spatialReferencing.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gss/1.0/geometry.xsd +45 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gss/1.0/gss.xsd +18 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gts/1.0/gts.xsd +18 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19139/-/gts/1.0/temporalObjects.xsd +44 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19155/gpi/1.0/gpi.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19155/gpi/1.0/placeIdentifier.xsd +75 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19155/gpi/1.0/sampleGMLApplicationSchema.xsd +83 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqc/1.2/abstract.xsd +44 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqc/1.2/dqc.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqc/1.2.0/abstract.xsd +44 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqc/1.2.0/dqc.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqm/1.2/dqm.xsd +19 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqm/1.2/qualityMeasures.xsd +332 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqm/1.2.0/dqm.xsd +19 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/dqm/1.2.0/qualityMeasures.xsd +332 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/dataQualityElement.xsd +583 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/dataQualityEvaluation.xsd +199 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/dataQualityImagery.xsd +75 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/dataQualityResult.xsd +213 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/mdq.xsd +22 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2/metaquality.xsd +93 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/dataQualityElement.xsd +583 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/dataQualityEvaluation.xsd +199 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/dataQualityImagery.xsd +75 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/dataQualityResult.xsd +213 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/mdq.xsd +22 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-/mdq/1.2.0/metaquality.xsd +93 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqc/1.0.0/dataQualityCommon.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqc/1.0.0/dqc.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqc/1.0.1/dataQualityCommon.xsd +43 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqc/1.0.1/dqc.xsd +17 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqm/1.0.0/dataQualityMeasure.xsd +376 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqm/1.0.0/dqm.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqm/1.0.1/dataQualityMeasure.xsd +367 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/dqm/1.0.1/dqm.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.0/dataQuality.xsd +570 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.0/dataQualityEvaluation.xsd +227 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.0/dataQualityResult.xsd +191 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.0/mdq.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.0/metaquality.xsd +106 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.1/dataQuality.xsd +581 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.1/dataQualityEvaluation.xsd +227 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.1/dataQualityResult.xsd +198 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.1/mdq.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-1/mdq/1.0.1/metaquality.xsd +102 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/dqc/1.0/abstract.xsd +43 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/dqc/1.0/dqc.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/dqm/1.0/dqm.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/dqm/1.0/qualityMeasures.xsd +303 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/dataQualityElement.xsd +554 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/dataQualityEvaluation.xsd +182 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/dataQualityImagery.xsd +72 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/dataQualityResult.xsd +140 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/mdq.xsd +21 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19157/-2/mdq/1.0/metaquality.xsd +89 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19160/-4/patdl/2.7.3/PATDL.v.2.7.3.xsd +517 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1/IE_Imagery.xsd +520 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1/IE_ImageryAndGriddedData.xsd +222 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1/IE_ThematicGriddedData.xsd +117 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1/igd.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.0/IE_Imagery.xsd +520 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.0/IE_ImageryAndGriddedData.xsd +222 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.0/IE_ThematicGriddedData.xsd +117 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.0/igd.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.1/IE_Imagery.xsd +518 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.1/IE_ImageryAndGriddedData.xsd +213 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.1/IE_ThematicGriddedData.xsd +116 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19163/-1/igd/1.1.1/igd.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19165/-1/gpm/1.0.0/geospatialPreservationMetadata.xsd +872 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19165/-1/gpm/1.0.0/gpm.xsd +11 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19165/gpm/1.0/geospatialPreservationMetadata.xsd +385 -0
- data/spec/fixtures/xml/schema/xsd/isotc211/19165/gpm/1.0/gpm.xsd +8 -0
- data/spec/fixtures/xml/schema/xsd/metaschema-datatypes.xsd +263 -0
- data/spec/fixtures/xml/schema/xsd/metaschema-markup-line.xsd +9 -0
- data/spec/fixtures/xml/schema/xsd/metaschema-markup-multiline.xsd +135 -0
- data/spec/fixtures/xml/schema/xsd/metaschema-meta-constraints.xsd +39 -0
- data/spec/fixtures/xml/schema/xsd/metaschema-prose-base.xsd +82 -0
- data/spec/fixtures/xml/schema/xsd/metaschema-prose-module.xsd +5 -0
- data/spec/fixtures/xml/schema/xsd/metaschema.xsd +1344 -0
- data/spec/fixtures/xml/schema/xsd/omml_schema.xsd +1528 -0
- data/spec/fixtures/xml/schema/xsd/smil20/rdf.xsd +16 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-AccessKeyTiming.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-AudioLayout.xsd +32 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicAnimation.xsd +35 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicContentControl.xsd +49 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicInlineTiming.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicLayout.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicLinking.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicMedia.xsd +39 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicTimeContainers.xsd +37 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-BasicTransitions.xsd +36 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-BrushMedia.xsd +32 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-CustomTestAttributes.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-EventTiming.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-ExclTimeContainers.xsd +37 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-FillDefault.xsd +32 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-HierarchicalLayout.xsd +46 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-HostLanguage.xsd +85 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-InlineTransitions.xsd +35 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-IntegrationSet.xsd +72 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-LinkingAttributes.xsd +40 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaAccessibility.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaClipMarkers.xsd +35 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaClipping.xsd +35 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaDescription.xsd +35 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaMarkerTiming.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-MediaParam.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-Metainformation.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-MinMaxTiming.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-MultiArcTiming.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-MultiWindowLayout.xsd +32 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-ObjectLinking.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-PrefetchControl.xsd +31 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-RepeatTiming.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-RepeatValueTiming.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-RestartDefault.xsd +32 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-RestartTiming.xsd +32 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-SkipContentControl.xsd +32 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-SplineAnimation.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-Structure.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-SyncBehavior.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-SyncBehaviorDefault.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-SyncMaster.xsd +32 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-SyncbaseTiming.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-TimeContainerAttributes.xsd +35 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-TimeManipulations.xsd +35 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-TransitionModifiers.xsd +37 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-WallclockTiming.xsd +33 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-animate.xsd +229 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-content.xsd +148 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-language.xsd +834 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-layout.xsd +211 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-linking.xsd +117 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-media.xsd +175 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-meta.xsd +44 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-struct.xsd +47 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-timemanip.xsd +34 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-timing.xsd +344 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-transitions.xsd +138 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20-utility.xsd +57 -0
- data/spec/fixtures/xml/schema/xsd/smil20/smil20.xsd +86 -0
- data/spec/fixtures/xml/schema/xsd/smil20/xml-mod.xsd +25 -0
- data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/advanced_encodings.xsd +186 -0
- data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/basic_types.xsd +147 -0
- data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/block_components.xsd +163 -0
- data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/choice_components.xsd +56 -0
- data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/examples/security.xsd +15 -0
- data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/record_components.xsd +95 -0
- data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/simple_components.xsd +536 -0
- data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/simple_encodings.xsd +93 -0
- data/spec/fixtures/xml/schema/xsd/sweCommon/2.0.1/swe.xsd +14 -0
- data/spec/fixtures/xml/schema/xsd/test_schema.lxr +0 -0
- data/spec/fixtures/xml/schema/xsd/test_schema.xsd +24 -0
- data/spec/fixtures/xml/schema/xsd/unitsml-v1.0-csd03.xsd +1333 -0
- data/spec/fixtures/xml/schema/xsd/unitsml-v1.0-csd04.xsd +1334 -0
- data/spec/fixtures/xml/schema/xsd/validation_config.yml +14 -0
- data/spec/fixtures/xml/special_char.xml +3 -4
- data/spec/fixtures/xml/user.xsd +14 -10
- data/spec/lutaml/key_value/transformation/collection_serializer_spec.rb +213 -0
- data/spec/lutaml/key_value/transformation/rule_compiler_spec.rb +229 -0
- data/spec/lutaml/key_value/transformation/value_serializer_spec.rb +216 -0
- data/spec/lutaml/key_value/transformation_spec.rb +292 -0
- data/spec/lutaml/model/attribute_collection_spec.rb +9 -6
- data/spec/lutaml/model/attribute_form_default_spec.rb +252 -0
- data/spec/lutaml/model/attribute_spec.rb +328 -38
- data/spec/lutaml/model/cached_type_resolver_spec.rb +362 -0
- data/spec/lutaml/model/cdata_spec.rb +180 -102
- data/spec/lutaml/model/choice_spec.rb +37 -7
- data/spec/lutaml/model/cli_spec.rb +452 -0
- data/spec/lutaml/model/collection_index_spec.rb +347 -0
- data/spec/lutaml/model/collection_mutation_spec.rb +124 -0
- data/spec/lutaml/model/collection_spec.rb +580 -155
- data/spec/lutaml/model/collection_validation_spec.rb +736 -0
- data/spec/lutaml/model/comparable_model_spec.rb +75 -0
- data/spec/lutaml/model/compiled_rule_spec.rb +364 -0
- data/spec/lutaml/model/consolidation_spec.rb +295 -0
- data/spec/lutaml/model/context_registry_spec.rb +269 -0
- data/spec/lutaml/model/custom_bibtex_adapter_spec.rb +21 -7
- data/spec/lutaml/model/custom_collection_spec.rb +321 -27
- data/spec/lutaml/model/custom_model_spec.rb +13 -10
- data/spec/lutaml/model/custom_serialization_spec.rb +12 -14
- data/spec/lutaml/model/custom_vobject_adapter_spec.rb +36 -16
- data/spec/lutaml/model/default_register_spec.rb +852 -0
- data/spec/lutaml/model/defaults_spec.rb +57 -6
- data/spec/lutaml/model/delegation_spec.rb +184 -110
- data/spec/lutaml/model/derived_attribute_serialization_spec.rb +33 -0
- data/spec/lutaml/model/dynamic_attribute_spec.rb +112 -0
- data/spec/lutaml/model/encoding_spec.rb +281 -0
- data/spec/lutaml/model/enum_spec.rb +46 -2
- data/spec/lutaml/model/except_spec.rb +240 -0
- data/spec/lutaml/model/finalization_cache_spec.rb +88 -0
- data/spec/lutaml/model/global_context_spec.rb +421 -0
- data/spec/lutaml/model/global_register_spec.rb +153 -36
- data/spec/lutaml/model/group_spec.rb +193 -54
- data/spec/lutaml/model/hash/adapter_spec.rb +5 -3
- data/spec/lutaml/model/import_registry_spec.rb +295 -0
- data/spec/lutaml/model/included_spec.rb +10 -17
- data/spec/lutaml/model/inheritance_spec.rb +6 -6
- data/spec/lutaml/model/json_adapter_spec.rb +13 -6
- data/spec/lutaml/model/json_spec.rb +33 -0
- data/spec/lutaml/model/key_value_data_model/key_value_element_spec.rb +320 -0
- data/spec/lutaml/model/key_value_mapping_spec.rb +12 -2
- data/spec/lutaml/model/lazy_collection_spec.rb +208 -0
- data/spec/lutaml/model/liquefiable_spec.rb +263 -24
- data/spec/lutaml/model/logger_spec.rb +68 -0
- data/spec/lutaml/model/map_all_spec.rb +36 -11
- data/spec/lutaml/model/map_content_spec.rb +4 -4
- data/spec/lutaml/model/mapping_rule_perf_guard_spec.rb +71 -0
- data/spec/lutaml/model/mixed_content_spec.rb +481 -171
- data/spec/lutaml/model/model_transformer_spec.rb +678 -0
- data/spec/lutaml/model/multiple_mapping_spec.rb +71 -39
- data/spec/lutaml/model/namespace_versioning_spec.rb +390 -0
- data/spec/lutaml/model/one_entry_cache_spec.rb +114 -0
- data/spec/lutaml/model/ordered_content_spec.rb +115 -24
- data/spec/lutaml/model/polymorphic_spec.rb +29 -6
- data/spec/lutaml/model/processing_instruction_spec.rb +375 -0
- data/spec/lutaml/model/{register/key_value_spec.rb → register_key_value_spec.rb} +57 -5
- data/spec/lutaml/model/register_spec.rb +235 -5
- data/spec/lutaml/model/render_empty_spec.rb +143 -6
- data/spec/lutaml/model/render_nil_spec.rb +15 -10
- data/spec/lutaml/model/root_mappings_spec.rb +16 -6
- data/spec/lutaml/model/rule_value_extractor_spec.rb +13 -44
- data/spec/lutaml/model/runtime_compatibility_spec.rb +36 -0
- data/spec/lutaml/model/schema/generator/definitions_collection_spec.rb +4 -0
- data/spec/lutaml/model/schema/json_schema_spec.rb +7 -1
- data/spec/lutaml/model/schema/relaxng_schema_spec.rb +1 -1
- data/spec/lutaml/model/schema/renderer_spec.rb +128 -0
- data/spec/lutaml/model/schema/xsd_schema_spec.rb +1 -1
- data/spec/lutaml/model/sequence_spec.rb +460 -15
- data/spec/lutaml/model/serializable_spec.rb +212 -12
- data/spec/lutaml/model/serializable_validation_spec.rb +3 -2
- data/spec/lutaml/model/serialize_perf_guard_spec.rb +100 -0
- data/spec/lutaml/model/services/default_value_resolver_spec.rb +162 -0
- data/spec/lutaml/model/simple_model_spec.rb +4 -4
- data/spec/lutaml/model/toml_adapter_spec.rb +11 -4
- data/spec/lutaml/model/toml_spec.rb +46 -2
- data/spec/lutaml/model/transformation_builder_spec.rb +283 -0
- data/spec/lutaml/model/transformation_spec.rb +165 -236
- data/spec/lutaml/model/type/base64_binary_spec.rb +202 -0
- data/spec/lutaml/model/type/date_spec.rb +132 -0
- data/spec/lutaml/model/type/date_time_spec.rb +54 -2
- data/spec/lutaml/model/type/decimal_spec.rb +1 -1
- data/spec/lutaml/model/type/duration_spec.rb +185 -0
- data/spec/lutaml/model/type/hex_binary_spec.rb +225 -0
- data/spec/lutaml/model/type/integer_spec.rb +1 -1
- data/spec/lutaml/model/type/qname_spec.rb +246 -0
- data/spec/lutaml/model/type/reference_integration_spec.rb +532 -0
- data/spec/lutaml/model/type/reference_spec.rb +293 -0
- data/spec/lutaml/model/type/symbol_spec.rb +322 -0
- data/spec/lutaml/model/type/time_spec.rb +6 -5
- data/spec/lutaml/model/type/time_without_date_spec.rb +1 -1
- data/spec/lutaml/model/type/uninitialized_class_spec.rb +110 -0
- data/spec/lutaml/model/type/uri_spec.rb +176 -0
- data/spec/lutaml/model/type/value_xml_mapping_spec.rb +162 -0
- data/spec/lutaml/model/type_context_spec.rb +370 -0
- data/spec/lutaml/model/type_registry_spec.rb +313 -0
- data/spec/lutaml/model/type_resolver_spec.rb +278 -0
- data/spec/lutaml/model/type_spec.rb +7 -8
- data/spec/lutaml/model/type_substitution_spec.rb +172 -0
- data/spec/lutaml/model/utils_spec.rb +39 -24
- data/spec/lutaml/model/value_map_spec.rb +2 -2
- data/spec/lutaml/model/value_transformation_comprehensive_spec.rb +676 -0
- data/spec/lutaml/model/with_child_mapping_spec.rb +1 -1
- data/spec/lutaml/model/xml_decoupling_spec.rb +435 -0
- data/spec/lutaml/model/xsd_form_default_patterns_spec.rb +664 -0
- data/spec/lutaml/model/xsd_patterns_spec.rb +278 -0
- data/spec/lutaml/model/xsd_type_spec.rb +345 -0
- data/spec/lutaml/model/xsd_type_validation_spec.rb +442 -0
- data/spec/lutaml/model/yamls/standard_adapter_spec.rb +2 -2
- data/spec/lutaml/xml/adapter/nokogiri_adapter_spec.rb +130 -0
- data/spec/lutaml/xml/adapter/oga_adapter_spec.rb +135 -0
- data/spec/lutaml/xml/adapter/ox_adapter_spec.rb +101 -0
- data/spec/lutaml/xml/adapter/rexml_adapter_spec.rb +101 -0
- data/spec/lutaml/xml/adapter/xml_namespace_spec.rb +531 -0
- data/spec/lutaml/xml/builder/builder_spec.rb +216 -0
- data/spec/lutaml/xml/compiled_rule_namespace_spec.rb +405 -0
- data/spec/lutaml/xml/conformance/xml_namespaces_spec.rb +580 -0
- data/spec/lutaml/xml/conformance/xml_schema_instance_spec.rb +266 -0
- data/spec/lutaml/xml/data_model_spec.rb +300 -0
- data/spec/lutaml/xml/decisions/decision_engine_spec.rb +242 -0
- data/spec/lutaml/xml/decisions/decision_spec.rb +217 -0
- data/spec/lutaml/xml/decisions/element_prefix_resolver_spec.rb +198 -0
- data/spec/lutaml/xml/declaration_planner_spec.rb +524 -0
- data/spec/lutaml/xml/default_namespace_spec.rb +190 -0
- data/spec/lutaml/{model/xml → xml}/derived_attributes_spec.rb +2 -2
- data/spec/lutaml/xml/doctype_preservation_spec.rb +323 -0
- data/spec/lutaml/xml/doubly_defined_namespace_spec.rb +415 -0
- data/spec/lutaml/xml/dual_namespace_element_spec.rb +181 -0
- data/spec/lutaml/xml/element_spec.rb +28 -0
- data/spec/lutaml/xml/encoding_normalizer_spec.rb +215 -0
- data/spec/lutaml/xml/enhanced_mapping_spec.rb +692 -0
- data/spec/lutaml/xml/entity_fragmentation_spec.rb +583 -0
- data/spec/lutaml/xml/format_chooser_spec.rb +0 -0
- data/spec/lutaml/xml/fpi_namespace_spec.rb +145 -0
- data/spec/lutaml/{model/xml/namespace_spec.rb → xml/general_namespace_spec.rb} +6 -5
- data/spec/lutaml/xml/mapping_finalization_guard_spec.rb +83 -0
- data/spec/lutaml/xml/mapping_rule_spec.rb +98 -0
- data/spec/lutaml/xml/mapping_spec.rb +1147 -0
- data/spec/lutaml/xml/model_transform_guard_spec.rb +126 -0
- data/spec/lutaml/{model/xml → xml}/namespace/nested_with_explicit_namespace_spec.rb +8 -5
- data/spec/lutaml/xml/namespace/w3c_reserved_warning_spec.rb +152 -0
- data/spec/lutaml/xml/namespace_alias_prefix_root_spec.rb +130 -0
- data/spec/lutaml/xml/namespace_alias_spec.rb +263 -0
- data/spec/lutaml/xml/namespace_aware_parsing_spec.rb +219 -0
- data/spec/lutaml/xml/namespace_backward_compatibility_spec.rb +48 -0
- data/spec/lutaml/xml/namespace_bound_element_roundtrip_spec.rb +433 -0
- data/spec/lutaml/xml/namespace_constant_spec.rb +383 -0
- data/spec/lutaml/xml/namespace_force_prefix_spec.rb +113 -0
- data/spec/lutaml/xml/namespace_format_preservation_spec.rb +49 -0
- data/spec/lutaml/xml/namespace_inheritance_deep_spec.rb +162 -0
- data/spec/lutaml/xml/namespace_inheritance_override_spec.rb +316 -0
- data/spec/lutaml/xml/namespace_inheritance_resolver_spec.rb +0 -0
- data/spec/lutaml/xml/namespace_inheritance_spec.rb +966 -0
- data/spec/lutaml/xml/namespace_integration_spec.rb +277 -0
- data/spec/lutaml/xml/namespace_missing_prefix_spec.rb +178 -0
- data/spec/lutaml/xml/namespace_no_hoisting_spec.rb +172 -0
- data/spec/lutaml/xml/namespace_placement_spec.rb +265 -0
- data/spec/lutaml/xml/namespace_preservation_spec.rb +427 -0
- data/spec/lutaml/xml/namespace_principles_spec.rb +909 -0
- data/spec/lutaml/xml/namespace_resolution_strategy_spec.rb +273 -0
- data/spec/lutaml/xml/namespace_scope_declare_spec.rb +205 -0
- data/spec/lutaml/xml/namespace_scope_spec.rb +389 -0
- data/spec/lutaml/xml/namespace_scope_vcard_spec.rb +616 -0
- data/spec/lutaml/xml/namespace_spec.rb +712 -0
- data/spec/lutaml/xml/namespace_three_phase_spec.rb +310 -0
- data/spec/lutaml/xml/nil_optional_element_namespace_spec.rb +84 -0
- data/spec/lutaml/xml/ooxml_namespace_spec.rb +177 -0
- data/spec/lutaml/xml/ordered_method_spec.rb +109 -0
- data/spec/lutaml/xml/prefix_control_spec.rb +286 -0
- data/spec/lutaml/{model/register/xml_spec.rb → xml/register_spec.rb} +75 -21
- data/spec/lutaml/xml/reusable_mapping_spec.rb +148 -0
- data/spec/lutaml/xml/reused_elements_namespace_spec.rb +85 -0
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/attribute_group_spec.rb +9 -3
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/attribute_spec.rb +11 -7
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/choice_spec.rb +5 -2
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/complex_content_restriction_spec.rb +7 -2
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/complex_content_spec.rb +5 -1
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/complex_type_spec.rb +49 -20
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/element_spec.rb +9 -4
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/group_spec.rb +9 -5
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/restriction_spec.rb +1 -0
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/sequence_spec.rb +10 -4
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/simple_content_spec.rb +9 -3
- data/spec/lutaml/{model/schema/xml_compiler → xml/schema/compiler}/simple_type_spec.rb +10 -7
- data/spec/lutaml/{model/schema/xml_compiler_spec.rb → xml/schema/compiler_spec.rb} +219 -94
- data/spec/lutaml/xml/schema/xsd/errors/error_context_spec.rb +65 -0
- data/spec/lutaml/xml/schema/xsd/errors/suggestion_spec.rb +77 -0
- data/spec/lutaml/xml/schema/xsd/file_validation_result_spec.rb +131 -0
- data/spec/lutaml/xml/schema/xsd/glob_spec.rb +318 -0
- data/spec/lutaml/xml/schema/xsd/liquid_methods/attribute_and_group_spec.rb +76 -0
- data/spec/lutaml/xml/schema/xsd/liquid_methods/complex_type_spec.rb +159 -0
- data/spec/lutaml/xml/schema/xsd/liquid_methods/containers_spec.rb +104 -0
- data/spec/lutaml/xml/schema/xsd/liquid_methods/element_spec.rb +139 -0
- data/spec/lutaml/xml/schema/xsd/liquid_methods/schema_spec.rb +75 -0
- data/spec/lutaml/xml/schema/xsd/liquid_methods/simple_content_spec.rb +79 -0
- data/spec/lutaml/xml/schema/xsd/namespace_uri_remapping_spec.rb +246 -0
- data/spec/lutaml/xml/schema/xsd/schema_helper_methods_spec.rb +237 -0
- data/spec/lutaml/xml/schema/xsd/schema_mapping_spec.rb +742 -0
- data/spec/lutaml/xml/schema/xsd/schema_validator_spec.rb +228 -0
- data/spec/lutaml/xml/schema/xsd/spec_helper.rb +26 -0
- data/spec/lutaml/xml/schema/xsd/validation_error_spec.rb +189 -0
- data/spec/lutaml/xml/schema/xsd/validation_result_spec.rb +276 -0
- data/spec/lutaml/xml/schema/xsd/xsd_spec.rb +51 -0
- data/spec/lutaml/xml/schema_primer_spec.rb +393 -0
- data/spec/lutaml/xml/serializable_namespace_spec.rb +125 -0
- data/spec/lutaml/xml/transformation/custom_method_wrapper_spec.rb +48 -0
- data/spec/lutaml/xml/transformation_spec.rb +439 -0
- data/spec/lutaml/xml/type_namespace/collector_spec.rb +212 -0
- data/spec/lutaml/xml/type_namespace/planner_spec.rb +270 -0
- data/spec/lutaml/xml/type_namespace_examples_spec.rb +521 -0
- data/spec/lutaml/xml/type_namespace_integration_spec.rb +332 -0
- data/spec/lutaml/xml/type_namespace_prefix_spec.rb +370 -0
- data/spec/lutaml/xml/type_namespace_resolver_spec.rb +0 -0
- data/spec/lutaml/xml/type_namespace_roundtrip_spec.rb +580 -0
- data/spec/lutaml/xml/w3c_types_spec.rb +376 -0
- data/spec/lutaml/{model → xml}/xml_adapter_spec.rb +64 -17
- data/spec/lutaml/xml/xml_declaration_spec.rb +568 -0
- data/spec/lutaml/xml/xml_element_guard_spec.rb +138 -0
- data/spec/lutaml/{model/xml → xml}/xml_element_spec.rb +1 -1
- data/spec/lutaml/xml/xml_lang_spec.rb +441 -0
- data/spec/lutaml/xml/xml_space_spec.rb +247 -0
- data/spec/lutaml/xml/xml_space_type_spec.rb +161 -0
- data/spec/lutaml/xml/xml_spec.rb +122 -0
- data/spec/parent_root_spec.rb +63 -0
- data/spec/person_spec.rb +9 -9
- data/spec/spec_helper.rb +64 -6
- data/spec/support/test_adapter_config.rb +101 -0
- data/spec/support/test_namespaces.rb +185 -0
- data/spec/support/trace_helper.rb +0 -0
- data/spec/support/xml/schema_helper.rb +15 -0
- data/spec/support/xml/xsd/code_example_validator.rb +393 -0
- data/spec/support/xml_mapping_namespaces.rb +176 -0
- metadata +1465 -100
- data/docs/custom_registers.adoc +0 -228
- data/lib/lutaml/model/hash_adapter/mapping.rb +0 -19
- data/lib/lutaml/model/hash_adapter/mapping_rule.rb +0 -9
- data/lib/lutaml/model/hash_adapter/transform.rb +0 -8
- data/lib/lutaml/model/hash_adapter.rb +0 -21
- data/lib/lutaml/model/json/mapping.rb +0 -19
- data/lib/lutaml/model/json/mapping_rule.rb +0 -9
- data/lib/lutaml/model/json/multi_json_adapter.rb +0 -18
- data/lib/lutaml/model/json/standard_adapter.rb +0 -25
- data/lib/lutaml/model/json/transform.rb +0 -8
- data/lib/lutaml/model/jsonl/mapping.rb +0 -19
- data/lib/lutaml/model/jsonl/mapping_rule.rb +0 -9
- data/lib/lutaml/model/jsonl/transform.rb +0 -19
- data/lib/lutaml/model/schema/xsd_schema.rb +0 -62
- data/lib/lutaml/model/toml/mapping_rule.rb +0 -9
- data/lib/lutaml/model/toml/toml_rb_adapter.rb +0 -18
- data/lib/lutaml/model/toml/tomlib_adapter.rb +0 -19
- data/lib/lutaml/model/toml/transform.rb +0 -8
- data/lib/lutaml/model/xml/builder/nokogiri.rb +0 -101
- data/lib/lutaml/model/xml/builder/oga.rb +0 -183
- data/lib/lutaml/model/xml/builder/ox.rb +0 -121
- data/lib/lutaml/model/xml/document.rb +0 -477
- data/lib/lutaml/model/xml/element.rb +0 -32
- data/lib/lutaml/model/xml/mapping.rb +0 -471
- data/lib/lutaml/model/xml/mapping_rule.rb +0 -149
- data/lib/lutaml/model/xml/nokogiri_adapter.rb +0 -234
- data/lib/lutaml/model/xml/oga/document.rb +0 -20
- data/lib/lutaml/model/xml/oga/element.rb +0 -123
- data/lib/lutaml/model/xml/oga_adapter.rb +0 -172
- data/lib/lutaml/model/xml/ox_adapter.rb +0 -229
- data/lib/lutaml/model/xml/transform.rb +0 -8
- data/lib/lutaml/model/xml/xml_attribute.rb +0 -37
- data/lib/lutaml/model/xml/xml_element.rb +0 -167
- data/lib/lutaml/model/xml/xml_namespace.rb +0 -49
- data/lib/lutaml/model/xml.rb +0 -31
- data/lib/lutaml/model/xml_adapter/element.rb +0 -18
- data/lib/lutaml/model/xml_adapter/nokogiri_adapter.rb +0 -15
- data/lib/lutaml/model/xml_adapter/oga_adapter.rb +0 -21
- data/lib/lutaml/model/xml_adapter/ox_adapter.rb +0 -18
- data/lib/lutaml/model/xml_adapter.rb +0 -7
- data/lib/lutaml/model/yaml/mapping.rb +0 -19
- data/lib/lutaml/model/yaml/mapping_rule.rb +0 -9
- data/lib/lutaml/model/yaml/standard_adapter.rb +0 -28
- data/lib/lutaml/model/yaml/transform.rb +0 -8
- data/lib/lutaml/model/yamls/mapping.rb +0 -19
- data/lib/lutaml/model/yamls/mapping_rule.rb +0 -9
- data/lib/lutaml/model/yamls/transform.rb +0 -19
- data/spec/benchmarks/xml_parsing_benchmark_spec.rb +0 -74
- data/spec/fixtures/xml/advanced_test_schema.xsd +0 -134
- data/spec/lutaml/model/namespace_spec.rb +0 -57
- data/spec/lutaml/model/xml_adapter/nokogiri_adapter_spec.rb +0 -56
- data/spec/lutaml/model/xml_adapter/oga_adapter_spec.rb +0 -60
- data/spec/lutaml/model/xml_adapter/ox_adapter_spec.rb +0 -61
- data/spec/lutaml/model/xml_adapter/xml_namespace_spec.rb +0 -368
- data/spec/lutaml/model/xml_mapping_rule_spec.rb +0 -158
- data/spec/lutaml/model/xml_mapping_spec.rb +0 -1318
- data/spec/lutaml/model/xml_spec.rb +0 -63
- /data/spec/lutaml/{model/xml → xml}/root_mappings/nested_child_mappings_spec.rb +0 -0
|
@@ -0,0 +1,1074 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
3
|
+
xmlns:pir="https://schemas.isotc211.org/19135/-1/pir/1.0"
|
|
4
|
+
xmlns:gco="http://standards.iso.org/iso/19115/-3/gco/1.0"
|
|
5
|
+
xmlns:cit="http://standards.iso.org/iso/19115/-3/cit/2.0" elementFormDefault="qualified"
|
|
6
|
+
targetNamespace="https://schemas.isotc211.org/19135/-1/pir/1.0" version="1.0">
|
|
7
|
+
<xs:include schemaLocation="../../../../19135/-1/pir/1.0/core.xsd"/>
|
|
8
|
+
<xs:include schemaLocation="../../../../19135/-1/pir/1.0/hierarchy.xsd"/>
|
|
9
|
+
<xs:import namespace="http://standards.iso.org/iso/19115/-3/cit/2.0" schemaLocation="https://schemas.isotc211.org/19115/-3/cit/2.0/cit.xsd"/>
|
|
10
|
+
<xs:import namespace="http://standards.iso.org/iso/19115/-3/gco/1.0" schemaLocation="https://schemas.isotc211.org/19115/-3/gco/1.0/gco.xsd"/>
|
|
11
|
+
<xs:complexType name="RE_AdditionInformation_PropertyType">
|
|
12
|
+
<xs:sequence minOccurs="0">
|
|
13
|
+
<xs:element ref="pir:RE_AdditionInformation"/>
|
|
14
|
+
</xs:sequence>
|
|
15
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
16
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
17
|
+
</xs:complexType>
|
|
18
|
+
<xs:element name="RE_AdditionInformation" substitutionGroup="pir:RE_ProposalManagementInformation" type="pir:RE_AdditionInformation_Type"/>
|
|
19
|
+
<xs:complexType name="RE_AdditionInformation_Type">
|
|
20
|
+
<xs:annotation>
|
|
21
|
+
<xs:documentation>The subclass RE_AdditionInformation contains management information
|
|
22
|
+
about a proposal to add an item to a register.</xs:documentation>
|
|
23
|
+
</xs:annotation>
|
|
24
|
+
<xs:complexContent>
|
|
25
|
+
<xs:extension base="pir:RE_ProposalManagementInformation_Type">
|
|
26
|
+
<xs:sequence>
|
|
27
|
+
<xs:element name="item" type="pir:RE_RegisterItem_PropertyType"
|
|
28
|
+
minOccurs="1" maxOccurs="1">
|
|
29
|
+
<xs:annotation>
|
|
30
|
+
<xs:documentation>The role “item” identifies that the information in the class RE_AdditionInformation is
|
|
31
|
+
related to a register item.</xs:documentation>
|
|
32
|
+
</xs:annotation>
|
|
33
|
+
</xs:element>
|
|
34
|
+
</xs:sequence>
|
|
35
|
+
</xs:extension>
|
|
36
|
+
|
|
37
|
+
</xs:complexContent>
|
|
38
|
+
|
|
39
|
+
</xs:complexType>
|
|
40
|
+
<xs:complexType name="RE_AlternativeExpression_PropertyType">
|
|
41
|
+
<xs:sequence minOccurs="0">
|
|
42
|
+
<xs:element ref="pir:RE_AlternativeExpression"/>
|
|
43
|
+
</xs:sequence>
|
|
44
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
45
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
46
|
+
</xs:complexType>
|
|
47
|
+
<xs:element name="RE_AlternativeExpression" type="pir:RE_AlternativeExpression_Type"/>
|
|
48
|
+
<xs:complexType name="RE_AlternativeExpression_Type">
|
|
49
|
+
<xs:annotation>
|
|
50
|
+
<xs:documentation>The class RE_AlternativeExpression is a data type used to provide
|
|
51
|
+
information about a register item in an alternative language. Subclasses of
|
|
52
|
+
RE_AlternativeExpression may be specified in order to add additional attributes
|
|
53
|
+
appropriate for particular item classes. EXAMPLE A specification for a metadata
|
|
54
|
+
element register could identify a subclass of RE_AlternativeExpression that would
|
|
55
|
+
include the data dictionary fields specified in ISO 19115-1(obligation/condition,
|
|
56
|
+
data type, and domain) as additional attributes.</xs:documentation>
|
|
57
|
+
</xs:annotation>
|
|
58
|
+
<xs:complexContent>
|
|
59
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
60
|
+
<xs:sequence>
|
|
61
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType" minOccurs="1"
|
|
62
|
+
maxOccurs="1">
|
|
63
|
+
<xs:annotation>
|
|
64
|
+
<xs:documentation>The attribute "name" is represented as a
|
|
65
|
+
CharacterString whose content meets the requirements of
|
|
66
|
+
RE_RegisterItem.name except that the applicable locale is that
|
|
67
|
+
specified in RE_AlternativeExpression.locale.</xs:documentation>
|
|
68
|
+
</xs:annotation>
|
|
69
|
+
</xs:element>
|
|
70
|
+
<xs:element name="definition" type="gco:CharacterString_PropertyType"
|
|
71
|
+
minOccurs="0" maxOccurs="1">
|
|
72
|
+
<xs:annotation>
|
|
73
|
+
<xs:documentation>The attribute "definition" is represented as a
|
|
74
|
+
CharacterString whose content meets the requirements of
|
|
75
|
+
RE_RegisterItem.definition except that the applicable locale is that
|
|
76
|
+
specified in RE_AlternativeExpression.locale.</xs:documentation>
|
|
77
|
+
</xs:annotation>
|
|
78
|
+
</xs:element>
|
|
79
|
+
<xs:element name="description" type="gco:CharacterString_PropertyType"
|
|
80
|
+
minOccurs="0" maxOccurs="1">
|
|
81
|
+
<xs:annotation>
|
|
82
|
+
<xs:documentation>The attribute description is represented as a
|
|
83
|
+
CharacterString whose content meets the requirements of
|
|
84
|
+
RE_RegisterItem.description except that the applicable locale is
|
|
85
|
+
that specified in
|
|
86
|
+
RE_AlternativeExpression.locale.</xs:documentation>
|
|
87
|
+
</xs:annotation>
|
|
88
|
+
</xs:element>
|
|
89
|
+
<xs:element name="fieldOfApplication" type="gco:CharacterString_PropertyType"
|
|
90
|
+
minOccurs="0" maxOccurs="1">
|
|
91
|
+
<xs:annotation>
|
|
92
|
+
<xs:documentation>The attribute fieldOfApplication is represented as a
|
|
93
|
+
set of instances of RE_FieldOfApplication whose content meets the
|
|
94
|
+
requirements of RE_RegisterItem.fieldOfApplication except that the
|
|
95
|
+
applicable locale is that specified in
|
|
96
|
+
RE_AlternativeExpression.locale</xs:documentation>
|
|
97
|
+
</xs:annotation>
|
|
98
|
+
</xs:element>
|
|
99
|
+
<xs:element name="locale" type="pir:RE_Locale_PropertyType" minOccurs="1"
|
|
100
|
+
maxOccurs="1">
|
|
101
|
+
<xs:annotation>
|
|
102
|
+
<xs:documentation>The role "locale" identifies the class RE_Locale for
|
|
103
|
+
further information about the language used for the alternative
|
|
104
|
+
expression.</xs:documentation>
|
|
105
|
+
</xs:annotation>
|
|
106
|
+
</xs:element>
|
|
107
|
+
</xs:sequence>
|
|
108
|
+
</xs:extension>
|
|
109
|
+
</xs:complexContent>
|
|
110
|
+
</xs:complexType>
|
|
111
|
+
<xs:complexType name="RE_AlternativeName_PropertyType">
|
|
112
|
+
<xs:sequence minOccurs="0">
|
|
113
|
+
<xs:element ref="pir:RE_AlternativeName"/>
|
|
114
|
+
</xs:sequence>
|
|
115
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
116
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
117
|
+
</xs:complexType>
|
|
118
|
+
<xs:element name="RE_AlternativeName" type="pir:RE_AlternativeName_Type"/>
|
|
119
|
+
<xs:complexType name="RE_AlternativeName_Type">
|
|
120
|
+
<xs:complexContent>
|
|
121
|
+
<xs:annotation>
|
|
122
|
+
<xs:documentation>The class RE_AlternativeName is a data type used to provide the
|
|
123
|
+
name of an item class in an alternative language.</xs:documentation>
|
|
124
|
+
</xs:annotation>
|
|
125
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
126
|
+
<xs:sequence>
|
|
127
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType" minOccurs="1"
|
|
128
|
+
maxOccurs="1">
|
|
129
|
+
<xs:annotation>
|
|
130
|
+
<xs:documentation>The attribute “name” is represented as a
|
|
131
|
+
CharacterString that contains the name of an item class in an
|
|
132
|
+
alternative language.</xs:documentation>
|
|
133
|
+
</xs:annotation>
|
|
134
|
+
</xs:element>
|
|
135
|
+
<xs:element name="locale" type="pir:RE_Locale_PropertyType" minOccurs="1"
|
|
136
|
+
maxOccurs="1">
|
|
137
|
+
<xs:annotation>
|
|
138
|
+
<xs:documentation>The role "locale" identifies the class RE_Locale for
|
|
139
|
+
further information about the name used in
|
|
140
|
+
RE_AlternativeName</xs:documentation>
|
|
141
|
+
</xs:annotation>
|
|
142
|
+
</xs:element>
|
|
143
|
+
</xs:sequence>
|
|
144
|
+
</xs:extension>
|
|
145
|
+
</xs:complexContent>
|
|
146
|
+
</xs:complexType>
|
|
147
|
+
<xs:complexType name="RE_AmendmentInformation_PropertyType">
|
|
148
|
+
<xs:sequence minOccurs="0">
|
|
149
|
+
<xs:element ref="pir:RE_AmendmentInformation"/>
|
|
150
|
+
</xs:sequence>
|
|
151
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
152
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
153
|
+
</xs:complexType>
|
|
154
|
+
<xs:element name="RE_AmendmentInformation" substitutionGroup="pir:RE_ProposalManagementInformation" type="pir:RE_AmendmentInformation_Type"/>
|
|
155
|
+
<xs:complexType name="RE_AmendmentInformation_Type">
|
|
156
|
+
<xs:annotation>
|
|
157
|
+
<xs:documentation>The subclass RE_AmendmentInformation contains management information
|
|
158
|
+
about a proposal to amend an item in a register. </xs:documentation>
|
|
159
|
+
</xs:annotation>
|
|
160
|
+
<xs:complexContent>
|
|
161
|
+
<xs:extension base="pir:RE_ProposalManagementInformation_Type">
|
|
162
|
+
<xs:sequence>
|
|
163
|
+
<xs:element name="amendmentType" type="pir:RE_AmendmentType_PropertyType"
|
|
164
|
+
minOccurs="1" maxOccurs="1">
|
|
165
|
+
<xs:annotation>
|
|
166
|
+
<xs:documentation>The attribute "amendmentType" is represented as an
|
|
167
|
+
instance of RE_AmendmentType that identifies the type of amendment
|
|
168
|
+
proposed.</xs:documentation>
|
|
169
|
+
</xs:annotation>
|
|
170
|
+
</xs:element>
|
|
171
|
+
<xs:element name="item" type="pir:RE_RegisterItem_PropertyType"
|
|
172
|
+
minOccurs="1" maxOccurs="1">
|
|
173
|
+
<xs:annotation>
|
|
174
|
+
<xs:documentation>The role “item” identifies that the information in the class RE_AmendmentInformation is
|
|
175
|
+
related to a register item.</xs:documentation>
|
|
176
|
+
</xs:annotation>
|
|
177
|
+
</xs:element>
|
|
178
|
+
</xs:sequence>
|
|
179
|
+
</xs:extension>
|
|
180
|
+
</xs:complexContent>
|
|
181
|
+
</xs:complexType>
|
|
182
|
+
<xs:complexType name="RE_AmendmentType_PropertyType">
|
|
183
|
+
<xs:sequence minOccurs="0">
|
|
184
|
+
<xs:element ref="pir:RE_AmendmentType"/>
|
|
185
|
+
</xs:sequence>
|
|
186
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
187
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
188
|
+
</xs:complexType>
|
|
189
|
+
<xs:element name="RE_AmendmentType" type="pir:RE_AmendmentType_Type"/>
|
|
190
|
+
<xs:simpleType name="RE_AmendmentType_Type">
|
|
191
|
+
<xs:annotation>
|
|
192
|
+
<xs:documentation>RE_AmendmentType is an .LT. .LT. Enumeration .GT. .GT. that provides
|
|
193
|
+
values for describing the kind of change requested by a proposal to amend a register
|
|
194
|
+
item.</xs:documentation>
|
|
195
|
+
</xs:annotation>
|
|
196
|
+
<xs:restriction base="xs:string">
|
|
197
|
+
<xs:enumeration value="supersession">
|
|
198
|
+
<xs:annotation>
|
|
199
|
+
<xs:documentation>The proposal requests that an item be
|
|
200
|
+
superseded.</xs:documentation>
|
|
201
|
+
</xs:annotation>
|
|
202
|
+
</xs:enumeration>
|
|
203
|
+
<xs:enumeration value="retirement">
|
|
204
|
+
<xs:annotation>
|
|
205
|
+
<xs:documentation>The proposal requests that an item be
|
|
206
|
+
retired.</xs:documentation>
|
|
207
|
+
</xs:annotation>
|
|
208
|
+
</xs:enumeration>
|
|
209
|
+
</xs:restriction>
|
|
210
|
+
</xs:simpleType>
|
|
211
|
+
<xs:complexType name="RE_ClarificationInformation_PropertyType">
|
|
212
|
+
<xs:sequence minOccurs="0">
|
|
213
|
+
<xs:element ref="pir:RE_ClarificationInformation"/>
|
|
214
|
+
</xs:sequence>
|
|
215
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
216
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
217
|
+
</xs:complexType>
|
|
218
|
+
<xs:element name="RE_ClarificationInformation" substitutionGroup="pir:RE_ProposalManagementInformation" type="pir:RE_ClarificationInformation_Type"/>
|
|
219
|
+
<xs:complexType name="RE_ClarificationInformation_Type">
|
|
220
|
+
<xs:annotation>
|
|
221
|
+
<xs:documentation>The subclass RE_ClarificationInformation contains management
|
|
222
|
+
information about a proposal to clarify an item in a register.</xs:documentation>
|
|
223
|
+
</xs:annotation>
|
|
224
|
+
<xs:complexContent>
|
|
225
|
+
<xs:extension base="pir:RE_ProposalManagementInformation_Type">
|
|
226
|
+
<xs:sequence>
|
|
227
|
+
<xs:element name="proposedChange" type="gco:CharacterString_PropertyType"
|
|
228
|
+
minOccurs="1" maxOccurs="1">
|
|
229
|
+
<xs:annotation>
|
|
230
|
+
<xs:documentation>The attribute "proposedChange" is represented as a
|
|
231
|
+
CharacterString containing a description of the clarification that
|
|
232
|
+
identifies the elements of the register item that are changed and
|
|
233
|
+
the prior and subsequent values of each. EXAMPLE The definition of
|
|
234
|
+
this item was changed to correct a typographical error. The
|
|
235
|
+
misspelled word 'phenomnon' was changed to
|
|
236
|
+
'phenomenon'.</xs:documentation>
|
|
237
|
+
</xs:annotation>
|
|
238
|
+
</xs:element>
|
|
239
|
+
<xs:element name="item" type="pir:RE_RegisterItem_PropertyType"
|
|
240
|
+
minOccurs="1" maxOccurs="1">
|
|
241
|
+
<xs:annotation>
|
|
242
|
+
<xs:documentation>The role “item” identifies that the information in the class RE_ClarificationInformation is
|
|
243
|
+
related to a register item.</xs:documentation>
|
|
244
|
+
</xs:annotation>
|
|
245
|
+
</xs:element>
|
|
246
|
+
</xs:sequence>
|
|
247
|
+
</xs:extension>
|
|
248
|
+
</xs:complexContent>
|
|
249
|
+
</xs:complexType>
|
|
250
|
+
<xs:complexType name="RE_DecisionStatus_PropertyType">
|
|
251
|
+
<xs:sequence minOccurs="0">
|
|
252
|
+
<xs:element ref="pir:RE_DecisionStatus"/>
|
|
253
|
+
</xs:sequence>
|
|
254
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
255
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
256
|
+
</xs:complexType>
|
|
257
|
+
<xs:element name="RE_DecisionStatus" type="pir:RE_DecisionStatus_Type"/>
|
|
258
|
+
<xs:simpleType name="RE_DecisionStatus_Type">
|
|
259
|
+
<xs:annotation>
|
|
260
|
+
<xs:documentation>RE_DecisionStatus is an .LT. .LT. Enumeration .GT. .GT. that specifies
|
|
261
|
+
the status of a decision regarding a proposal to add or modify a register
|
|
262
|
+
item.</xs:documentation>
|
|
263
|
+
</xs:annotation>
|
|
264
|
+
<xs:restriction base="xs:string">
|
|
265
|
+
<xs:enumeration value="pending">
|
|
266
|
+
<xs:annotation>
|
|
267
|
+
<xs:documentation>No decision has been made.</xs:documentation>
|
|
268
|
+
</xs:annotation>
|
|
269
|
+
</xs:enumeration>
|
|
270
|
+
<xs:enumeration value="tentative">
|
|
271
|
+
<xs:annotation>
|
|
272
|
+
<xs:documentation>A decision has been made, but it is still subject to
|
|
273
|
+
appeal.</xs:documentation>
|
|
274
|
+
</xs:annotation>
|
|
275
|
+
</xs:enumeration>
|
|
276
|
+
<xs:enumeration value="final">
|
|
277
|
+
<xs:annotation>
|
|
278
|
+
<xs:documentation>A decision has been made and the time limit for appeal has run
|
|
279
|
+
out or an appeal has been resolved.</xs:documentation>
|
|
280
|
+
</xs:annotation>
|
|
281
|
+
</xs:enumeration>
|
|
282
|
+
</xs:restriction>
|
|
283
|
+
</xs:simpleType>
|
|
284
|
+
<xs:complexType name="RE_Disposition_PropertyType">
|
|
285
|
+
<xs:sequence minOccurs="0">
|
|
286
|
+
<xs:element ref="pir:RE_Disposition"/>
|
|
287
|
+
</xs:sequence>
|
|
288
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
289
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
290
|
+
</xs:complexType>
|
|
291
|
+
<xs:element name="RE_Disposition" type="pir:RE_Disposition_Type"/>
|
|
292
|
+
<xs:simpleType name="RE_Disposition_Type">
|
|
293
|
+
<xs:annotation>
|
|
294
|
+
<xs:documentation>RE_Disposition is an .LT. .LT. Enumeration .GT. .GT. that provides
|
|
295
|
+
values for describing the disposition of a proposal to add or modify a register
|
|
296
|
+
item.</xs:documentation>
|
|
297
|
+
</xs:annotation>
|
|
298
|
+
<xs:restriction base="xs:string">
|
|
299
|
+
<xs:enumeration value="withdrawn">
|
|
300
|
+
<xs:annotation>
|
|
301
|
+
<xs:documentation>The submitting organization has withdrawn the
|
|
302
|
+
proposal.</xs:documentation>
|
|
303
|
+
</xs:annotation>
|
|
304
|
+
</xs:enumeration>
|
|
305
|
+
<xs:enumeration value="accepted">
|
|
306
|
+
<xs:annotation>
|
|
307
|
+
<xs:documentation>The control body decided to accept the
|
|
308
|
+
proposal.</xs:documentation>
|
|
309
|
+
</xs:annotation>
|
|
310
|
+
</xs:enumeration>
|
|
311
|
+
<xs:enumeration value="notAccepted">
|
|
312
|
+
<xs:annotation>
|
|
313
|
+
<xs:documentation>The control body decided not to accept the
|
|
314
|
+
proposal.</xs:documentation>
|
|
315
|
+
</xs:annotation>
|
|
316
|
+
</xs:enumeration>
|
|
317
|
+
</xs:restriction>
|
|
318
|
+
</xs:simpleType>
|
|
319
|
+
<xs:complexType name="RE_FieldOfApplication_PropertyType">
|
|
320
|
+
<xs:sequence minOccurs="0">
|
|
321
|
+
<xs:element ref="pir:RE_FieldOfApplication"/>
|
|
322
|
+
</xs:sequence>
|
|
323
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
324
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
325
|
+
</xs:complexType>
|
|
326
|
+
<xs:element name="RE_FieldOfApplication" type="pir:RE_FieldOfApplication_Type"/>
|
|
327
|
+
<xs:complexType name="RE_FieldOfApplication_Type">
|
|
328
|
+
<xs:annotation>
|
|
329
|
+
<xs:documentation>RE_FieldOfApplication is a data type used to provide information about
|
|
330
|
+
a use for a register item. </xs:documentation>
|
|
331
|
+
</xs:annotation>
|
|
332
|
+
<xs:complexContent>
|
|
333
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
334
|
+
<xs:sequence>
|
|
335
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType" minOccurs="1"
|
|
336
|
+
maxOccurs="1">
|
|
337
|
+
<xs:annotation>
|
|
338
|
+
<xs:documentation>The attribute "name" is represented as a
|
|
339
|
+
CharacterString used to identify the field of application. EXAMPLE
|
|
340
|
+
'Agricultural Production', 'Marine Navigation'.</xs:documentation>
|
|
341
|
+
</xs:annotation>
|
|
342
|
+
</xs:element>
|
|
343
|
+
<xs:element name="description" type="gco:CharacterString_PropertyType"
|
|
344
|
+
minOccurs="0" maxOccurs="1">
|
|
345
|
+
<xs:annotation>
|
|
346
|
+
<xs:documentation>The attribute description provides as a
|
|
347
|
+
CharacterString a description of the field of application. EXAMPLE
|
|
348
|
+
'Pertaining to the science, art, and business of cultivating soil,
|
|
349
|
+
producing crops, and raising livestock.' 'Pertaining to the science
|
|
350
|
+
or art of conducting ships or vessels from one place to another at
|
|
351
|
+
sea.'</xs:documentation>
|
|
352
|
+
</xs:annotation>
|
|
353
|
+
</xs:element>
|
|
354
|
+
</xs:sequence>
|
|
355
|
+
</xs:extension>
|
|
356
|
+
</xs:complexContent>
|
|
357
|
+
</xs:complexType>
|
|
358
|
+
<xs:complexType name="RE_ItemClass_PropertyType">
|
|
359
|
+
<xs:sequence minOccurs="0">
|
|
360
|
+
<xs:element ref="pir:RE_ItemClass"/>
|
|
361
|
+
</xs:sequence>
|
|
362
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
363
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
364
|
+
</xs:complexType>
|
|
365
|
+
<xs:element name="RE_ItemClass" substitutionGroup="pir:ItemClass" type="pir:RE_ItemClass_Type"/>
|
|
366
|
+
<xs:complexType name="RE_ItemClass_Type">
|
|
367
|
+
<xs:annotation>
|
|
368
|
+
<xs:documentation>RE_ItemClass is a description of a class of geographic information
|
|
369
|
+
items specified in a technical standard. </xs:documentation>
|
|
370
|
+
</xs:annotation>
|
|
371
|
+
<xs:complexContent>
|
|
372
|
+
<xs:extension base="pir:ItemClass_Type">
|
|
373
|
+
<xs:sequence>
|
|
374
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType" minOccurs="1"
|
|
375
|
+
maxOccurs="1">
|
|
376
|
+
<xs:annotation>
|
|
377
|
+
<xs:documentation>The attribute "name" is represented as a
|
|
378
|
+
CharacterString containing a compact and human-readable designator
|
|
379
|
+
that is used to denote a class of item. The "name" that designates
|
|
380
|
+
an item class held in a register that conforms to this International
|
|
381
|
+
Standard shall: a) uniquely denote the item class within the context
|
|
382
|
+
of the register; and b) be based on the item class designation used
|
|
383
|
+
in the applicable technical standard.</xs:documentation>
|
|
384
|
+
</xs:annotation>
|
|
385
|
+
</xs:element>
|
|
386
|
+
<xs:element name="alternativeName" type="gco:CharacterString_PropertyType"
|
|
387
|
+
minOccurs="1" maxOccurs="1">
|
|
388
|
+
<xs:annotation>
|
|
389
|
+
<xs:documentation>The attribute "alternativeNames" contains a set of
|
|
390
|
+
instances of RE_AlternativeName, each of which is a translation of
|
|
391
|
+
the "name" of the RE_ItemClass into a language other than the
|
|
392
|
+
"operatingLanguage" of the RE_Register.</xs:documentation>
|
|
393
|
+
</xs:annotation>
|
|
394
|
+
</xs:element>
|
|
395
|
+
<xs:element name="technicalStandard" type="cit:CI_Citation_PropertyType"
|
|
396
|
+
minOccurs="1" maxOccurs="1">
|
|
397
|
+
<xs:annotation>
|
|
398
|
+
<xs:documentation>The role “technicalStandard” shall be represented as
|
|
399
|
+
an instance of CI_Citation [ISO 19115-1] that specifies the
|
|
400
|
+
technical standard (and the specific portion thereof) to which items
|
|
401
|
+
in the item class shall conform.</xs:documentation>
|
|
402
|
+
</xs:annotation>
|
|
403
|
+
</xs:element>
|
|
404
|
+
</xs:sequence>
|
|
405
|
+
</xs:extension>
|
|
406
|
+
</xs:complexContent>
|
|
407
|
+
</xs:complexType>
|
|
408
|
+
<xs:complexType name="RE_Locale_PropertyType">
|
|
409
|
+
<xs:sequence minOccurs="0">
|
|
410
|
+
<xs:element ref="pir:RE_Locale"/>
|
|
411
|
+
</xs:sequence>
|
|
412
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
413
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
414
|
+
</xs:complexType>
|
|
415
|
+
<xs:element name="RE_Locale" type="pir:RE_Locale_Type"/>
|
|
416
|
+
<xs:complexType name="RE_Locale_Type">
|
|
417
|
+
<xs:annotation>
|
|
418
|
+
<xs:documentation>The class "RE_Locale" provides information about languages used in a
|
|
419
|
+
register.</xs:documentation>
|
|
420
|
+
</xs:annotation>
|
|
421
|
+
<xs:complexContent>
|
|
422
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
423
|
+
<xs:sequence>
|
|
424
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType" minOccurs="1"
|
|
425
|
+
maxOccurs="1">
|
|
426
|
+
<xs:annotation>
|
|
427
|
+
<xs:documentation>The attribute "name" is represented as a
|
|
428
|
+
CharacterString that describes the locale. EXAMPLE
|
|
429
|
+
'Welsh'</xs:documentation>
|
|
430
|
+
</xs:annotation>
|
|
431
|
+
</xs:element>
|
|
432
|
+
<xs:element name="country" type="gco:CharacterString_PropertyType" minOccurs="1"
|
|
433
|
+
maxOccurs="1">
|
|
434
|
+
<xs:annotation>
|
|
435
|
+
<xs:documentation>The attribute country is represented as a
|
|
436
|
+
CharacterString that holds a 3-character numerical country code as
|
|
437
|
+
specified in ISO 3166-1. NOTE The list of codes is available from
|
|
438
|
+
the URL ftp.ics.uci.edu/pub/ietf/http/related/iso3166.txt or the ISO
|
|
439
|
+
3166 Maintenance Agency at URL
|
|
440
|
+
http://www.iso.ch/iso/en/prods-services/iso3166ma/index.html.</xs:documentation>
|
|
441
|
+
</xs:annotation>
|
|
442
|
+
</xs:element>
|
|
443
|
+
<xs:element name="language" type="gco:CharacterString_PropertyType"
|
|
444
|
+
minOccurs="1" maxOccurs="1">
|
|
445
|
+
<xs:annotation>
|
|
446
|
+
<xs:documentation>The attribute "language" takes as its value a
|
|
447
|
+
3-character language code as specified in ISO 639-2.
|
|
448
|
+
</xs:documentation>
|
|
449
|
+
</xs:annotation>
|
|
450
|
+
</xs:element>
|
|
451
|
+
<xs:element name="characterEncoding" type="gco:CharacterString_PropertyType"
|
|
452
|
+
minOccurs="1" maxOccurs="1">
|
|
453
|
+
<xs:annotation>
|
|
454
|
+
<xs:documentation>The attribute "characterEncoding" is represented as an
|
|
455
|
+
instance of MD_CharacterSetCode that specifies the name of the
|
|
456
|
+
character coding standard used.</xs:documentation>
|
|
457
|
+
</xs:annotation>
|
|
458
|
+
</xs:element>
|
|
459
|
+
<xs:element name="expression" type="pir:RE_AlternativeExpression_PropertyType"
|
|
460
|
+
minOccurs="0" maxOccurs="unbounded">
|
|
461
|
+
<xs:annotation>
|
|
462
|
+
<xs:documentation>The role “expression” identifies the class
|
|
463
|
+
RE_AlternativeExpression for language information as specified in
|
|
464
|
+
RE_Locale.</xs:documentation>
|
|
465
|
+
</xs:annotation>
|
|
466
|
+
</xs:element>
|
|
467
|
+
<xs:element name="citation" type="cit:CI_Citation_PropertyType" minOccurs="0"
|
|
468
|
+
maxOccurs="unbounded">
|
|
469
|
+
<xs:annotation>
|
|
470
|
+
<xs:documentation>The role “citation” is represented as an instance of
|
|
471
|
+
CI_Citation [ISO 19115-1] that provides more information about the
|
|
472
|
+
locale. EXAMPLE 2 An instance of CI_Citation could provide
|
|
473
|
+
information about a specific dialect of the language identified for
|
|
474
|
+
the locale or about some other culturally significant aspect of
|
|
475
|
+
information presentation, such as a specific method of formatting
|
|
476
|
+
numbers.</xs:documentation>
|
|
477
|
+
</xs:annotation>
|
|
478
|
+
</xs:element>
|
|
479
|
+
</xs:sequence>
|
|
480
|
+
</xs:extension>
|
|
481
|
+
</xs:complexContent>
|
|
482
|
+
</xs:complexType>
|
|
483
|
+
<xs:complexType name="RE_Version_PropertyType">
|
|
484
|
+
<xs:sequence minOccurs="0">
|
|
485
|
+
<xs:element ref="pir:RE_Version"/>
|
|
486
|
+
</xs:sequence>
|
|
487
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
488
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
489
|
+
</xs:complexType>
|
|
490
|
+
<xs:element name="RE_Version" type="pir:RE_Version_Type"/>
|
|
491
|
+
<xs:complexType name="RE_Version_Type">
|
|
492
|
+
<xs:annotation>
|
|
493
|
+
<xs:documentation>A dataType that uniquely defines a version.</xs:documentation>
|
|
494
|
+
</xs:annotation>
|
|
495
|
+
<xs:complexContent>
|
|
496
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
497
|
+
<xs:sequence>
|
|
498
|
+
<xs:element name="versionNumber" type="gco:CharacterString_PropertyType"
|
|
499
|
+
minOccurs="1" maxOccurs="1">
|
|
500
|
+
<xs:annotation>
|
|
501
|
+
<xs:documentation>The attribute "versionNumber" is represented as a
|
|
502
|
+
constrained CharacterString that denotes the version. The
|
|
503
|
+
CharacterString shall be of the form .LT. first positive integer
|
|
504
|
+
.GT. .LT. dot .GT. .LT. second positive integer .GT. .LT. letter
|
|
505
|
+
characters .GT. ('#.#a'), where: - .LT. first positive integer .GT.
|
|
506
|
+
(one or more digits) shall specify the major version designation; -
|
|
507
|
+
.LT. dot .GT. ('.') shall delimit the .LT. first positive integer
|
|
508
|
+
.GT. from the .LT. second positive integer .GT. when there is a .LT.
|
|
509
|
+
second positive integer .GT. ; - .LT. second positive integer .GT.
|
|
510
|
+
(one or more digits) shall optionally specify the minor sub-version
|
|
511
|
+
designation; and .LT. letters .GT. (one or more characters) shall
|
|
512
|
+
optionally specify the minor subversion designation. EXAMPLE
|
|
513
|
+
'2.1a'.</xs:documentation>
|
|
514
|
+
</xs:annotation>
|
|
515
|
+
</xs:element>
|
|
516
|
+
<xs:element name="versionDate" type="gco:Date_PropertyType" minOccurs="1"
|
|
517
|
+
maxOccurs="1">
|
|
518
|
+
<xs:annotation>
|
|
519
|
+
<xs:documentation>The attribute "versionDate" is represented as an
|
|
520
|
+
instance of the class .LT. Date .GT. [ISO 19103] that specifies the
|
|
521
|
+
date (which may be of reduced precision) of the version. EXAMPLE
|
|
522
|
+
2002-10-21.</xs:documentation>
|
|
523
|
+
</xs:annotation>
|
|
524
|
+
</xs:element>
|
|
525
|
+
</xs:sequence>
|
|
526
|
+
</xs:extension>
|
|
527
|
+
</xs:complexContent>
|
|
528
|
+
</xs:complexType>
|
|
529
|
+
<xs:complexType name="RE_ProposalManagementInformation_PropertyType">
|
|
530
|
+
<xs:sequence minOccurs="0">
|
|
531
|
+
<xs:element ref="pir:RE_ProposalManagementInformation"/>
|
|
532
|
+
</xs:sequence>
|
|
533
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
534
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
535
|
+
</xs:complexType>
|
|
536
|
+
<xs:element name="RE_ProposalManagementInformation" type="pir:RE_ProposalManagementInformation_Type"/>
|
|
537
|
+
<xs:complexType name="RE_ProposalManagementInformation_Type" abstract="true">
|
|
538
|
+
<xs:annotation>
|
|
539
|
+
<xs:documentation>The class RE_ProposalManagementInformation specifies elements of
|
|
540
|
+
management information to be recorded for each proposal to add or modify a register
|
|
541
|
+
item.</xs:documentation>
|
|
542
|
+
</xs:annotation>
|
|
543
|
+
<xs:complexContent>
|
|
544
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
545
|
+
<xs:sequence>
|
|
546
|
+
<xs:element name="dateProposed" type="gco:Date_PropertyType" minOccurs="1"
|
|
547
|
+
maxOccurs="1">
|
|
548
|
+
<xs:annotation>
|
|
549
|
+
<xs:documentation>The attribute "dateProposed" is represented as an
|
|
550
|
+
instance of the class .LT. Date .GT. [ISO 19103] and specify the
|
|
551
|
+
(full precision) date on which the item was entered into the
|
|
552
|
+
register. EXAMPLE 2002-11-27.</xs:documentation>
|
|
553
|
+
</xs:annotation>
|
|
554
|
+
</xs:element>
|
|
555
|
+
<xs:element name="justification" type="gco:CharacterString_PropertyType"
|
|
556
|
+
minOccurs="1" maxOccurs="1">
|
|
557
|
+
<xs:annotation>
|
|
558
|
+
<xs:documentation>The attribute "justification" is represented as a
|
|
559
|
+
CharacterString that explains why the proposed change should be
|
|
560
|
+
implemented.</xs:documentation>
|
|
561
|
+
</xs:annotation>
|
|
562
|
+
</xs:element>
|
|
563
|
+
<xs:element name="status" type="pir:RE_DecisionStatus_PropertyType"
|
|
564
|
+
minOccurs="1" maxOccurs="1">
|
|
565
|
+
<xs:annotation>
|
|
566
|
+
<xs:documentation>The attribute "status" is represented as an instance
|
|
567
|
+
of RE_DecisionStatus that identifies the standing of the proposed
|
|
568
|
+
change within the approval process. </xs:documentation>
|
|
569
|
+
</xs:annotation>
|
|
570
|
+
</xs:element>
|
|
571
|
+
<xs:element name="disposition" type="pir:RE_Disposition_PropertyType"
|
|
572
|
+
minOccurs="0" maxOccurs="1">
|
|
573
|
+
<xs:annotation>
|
|
574
|
+
<xs:documentation>The conditional attribute "disposition" is represented
|
|
575
|
+
as an instance of RE_Disposition that identifies the disposition of
|
|
576
|
+
the proposal. </xs:documentation>
|
|
577
|
+
</xs:annotation>
|
|
578
|
+
</xs:element>
|
|
579
|
+
<xs:element name="dateDisposed" type="gco:Date_PropertyType" minOccurs="0"
|
|
580
|
+
maxOccurs="1">
|
|
581
|
+
<xs:annotation>
|
|
582
|
+
<xs:documentation>The conditional attribute "dateDisposed" is
|
|
583
|
+
represented as an instance of the class .LT. Date .GT. [ISO 19103]
|
|
584
|
+
and specify the (full precision) date on which the disposition of
|
|
585
|
+
the proposal was determined. </xs:documentation>
|
|
586
|
+
</xs:annotation>
|
|
587
|
+
</xs:element>
|
|
588
|
+
<xs:element name="controlBodyDecisionEvent" type="gco:CharacterString_PropertyType" minOccurs="0" maxOccurs="1">
|
|
589
|
+
<xs:annotation>
|
|
590
|
+
<xs:documentation>The attribute "controlBodyDecisionEvent" is
|
|
591
|
+
represented as a CharacterString that identifies a meeting or other
|
|
592
|
+
event associated with the control body's decision concerning the
|
|
593
|
+
proposed change.</xs:documentation>
|
|
594
|
+
</xs:annotation>
|
|
595
|
+
</xs:element>
|
|
596
|
+
<xs:element name="controlBodyNotes" type="gco:CharacterString_PropertyType"
|
|
597
|
+
minOccurs="0" maxOccurs="1">
|
|
598
|
+
<xs:annotation>
|
|
599
|
+
<xs:documentation>The attribute "controlBodyNotes" is represented as a
|
|
600
|
+
CharacterString containing notes relevant to the control body's
|
|
601
|
+
decision concerning the proposal. Individual entries within the
|
|
602
|
+
notes should be dated. </xs:documentation>
|
|
603
|
+
</xs:annotation>
|
|
604
|
+
</xs:element>
|
|
605
|
+
<xs:element name="registerManagerNotes" type="gco:CharacterString_PropertyType"
|
|
606
|
+
minOccurs="0" maxOccurs="1">
|
|
607
|
+
<xs:annotation>
|
|
608
|
+
<xs:documentation>The attribute "registerManagerNotes" is represented as
|
|
609
|
+
a CharacterString containing notes relevant to the register
|
|
610
|
+
manager's handling of the proposal. Individual entries within the
|
|
611
|
+
notes should be dated. </xs:documentation>
|
|
612
|
+
</xs:annotation>
|
|
613
|
+
</xs:element>
|
|
614
|
+
<xs:element name="sponsor" type="pir:RegisterStakeholder_PropertyType"
|
|
615
|
+
minOccurs="1" maxOccurs="1">
|
|
616
|
+
<xs:annotation>
|
|
617
|
+
<xs:documentation>The role “sponsor” identifies the class
|
|
618
|
+
RE_RegisterStakeholder to be submitting proposal management
|
|
619
|
+
information to the registry.</xs:documentation>
|
|
620
|
+
</xs:annotation>
|
|
621
|
+
</xs:element>
|
|
622
|
+
</xs:sequence>
|
|
623
|
+
</xs:extension>
|
|
624
|
+
</xs:complexContent>
|
|
625
|
+
</xs:complexType>
|
|
626
|
+
|
|
627
|
+
<xs:complexType name="RE_Reference_PropertyType">
|
|
628
|
+
<xs:sequence minOccurs="0">
|
|
629
|
+
<xs:element ref="pir:RE_Reference"/>
|
|
630
|
+
</xs:sequence>
|
|
631
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
632
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
633
|
+
</xs:complexType>
|
|
634
|
+
<xs:element name="RE_Reference" type="pir:RE_Reference_Type"/>
|
|
635
|
+
<xs:complexType name="RE_Reference_Type">
|
|
636
|
+
<xs:annotation>
|
|
637
|
+
<xs:documentation>The class RE_Reference specifies information about the source and/or
|
|
638
|
+
lineage of a specific RE_RegisterItem derived from an external document or register.
|
|
639
|
+
</xs:documentation>
|
|
640
|
+
</xs:annotation>
|
|
641
|
+
<xs:complexContent>
|
|
642
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
643
|
+
<xs:sequence>
|
|
644
|
+
<xs:element name="itemIdentifierAtSource" type="gco:CharacterString_PropertyType" minOccurs="1" maxOccurs="1">
|
|
645
|
+
<xs:annotation>
|
|
646
|
+
<xs:documentation>The attribute "itemIdentifierAtSource" is represented
|
|
647
|
+
as a CharacterString that provides the value of the item identifier
|
|
648
|
+
in the source document or register from which the specification of
|
|
649
|
+
the RE_RegisterItem is derived.</xs:documentation>
|
|
650
|
+
</xs:annotation>
|
|
651
|
+
</xs:element>
|
|
652
|
+
<xs:element name="similarity" type="pir:RE_SimilarityToSource_PropertyType"
|
|
653
|
+
minOccurs="1" maxOccurs="1">
|
|
654
|
+
<xs:annotation>
|
|
655
|
+
<xs:documentation>The attribute "similarity" uses a value from the
|
|
656
|
+
CodeList RE_SimilarityToSource that specifies the type of change
|
|
657
|
+
that has been made to the item specification relative to the item
|
|
658
|
+
specification in the external source.</xs:documentation>
|
|
659
|
+
</xs:annotation>
|
|
660
|
+
</xs:element>
|
|
661
|
+
<xs:element name="referenceText" type="gco:CharacterString_PropertyType"
|
|
662
|
+
minOccurs="0" maxOccurs="1">
|
|
663
|
+
<xs:annotation>
|
|
664
|
+
<xs:documentation>The optional attribute "referenceText" is represented
|
|
665
|
+
as a CharacterString that may be used to provide a copy of
|
|
666
|
+
documentation about the item from the RE_ReferenceSource. NOTE This
|
|
667
|
+
attribute is intended for use in cases where the RE_ReferenceSource
|
|
668
|
+
may not be readily accessible to users of the
|
|
669
|
+
register.</xs:documentation>
|
|
670
|
+
</xs:annotation>
|
|
671
|
+
</xs:element>
|
|
672
|
+
<xs:element name="notes" type="gco:CharacterString_PropertyType" minOccurs="0"
|
|
673
|
+
maxOccurs="1">
|
|
674
|
+
<xs:annotation>
|
|
675
|
+
<xs:documentation>The optional attribute "notes" is represented as a
|
|
676
|
+
CharacterString that may be used to provide additional information
|
|
677
|
+
about the derivation of the specification of a register item from an
|
|
678
|
+
external source.</xs:documentation>
|
|
679
|
+
</xs:annotation>
|
|
680
|
+
</xs:element>
|
|
681
|
+
<xs:element name="sourceCitation" type="pir:RE_ReferenceSource_PropertyType"
|
|
682
|
+
minOccurs="1" maxOccurs="1">
|
|
683
|
+
<xs:annotation>
|
|
684
|
+
<xs:documentation>The role "sourceCitation" identifies that the
|
|
685
|
+
information in the RE_ReferenceSource is the citation for the
|
|
686
|
+
RE_Reference. </xs:documentation>
|
|
687
|
+
</xs:annotation>
|
|
688
|
+
</xs:element>
|
|
689
|
+
<xs:element name="item" type="pir:RE_RegisterItem_PropertyType" minOccurs="0"
|
|
690
|
+
maxOccurs="unbounded">
|
|
691
|
+
<xs:annotation>
|
|
692
|
+
<xs:documentation>The role “item” identifies the information in
|
|
693
|
+
RE_Reference for the register item.</xs:documentation>
|
|
694
|
+
</xs:annotation>
|
|
695
|
+
</xs:element>
|
|
696
|
+
<xs:element name="specifiedItem" type="pir:RE_RegisterItem_PropertyType"
|
|
697
|
+
minOccurs="0" maxOccurs="unbounded">
|
|
698
|
+
<xs:annotation>
|
|
699
|
+
<xs:documentation>The role “specifiedItem” describes that the
|
|
700
|
+
RE_Reference for the association “source” is the reference source
|
|
701
|
+
for specification of the register item.</xs:documentation>
|
|
702
|
+
</xs:annotation>
|
|
703
|
+
</xs:element>
|
|
704
|
+
</xs:sequence>
|
|
705
|
+
</xs:extension>
|
|
706
|
+
</xs:complexContent>
|
|
707
|
+
</xs:complexType>
|
|
708
|
+
<xs:complexType name="RE_ReferenceSource_PropertyType">
|
|
709
|
+
<xs:sequence minOccurs="0">
|
|
710
|
+
<xs:element ref="pir:RE_ReferenceSource"/>
|
|
711
|
+
</xs:sequence>
|
|
712
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
713
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
714
|
+
</xs:complexType>
|
|
715
|
+
<xs:element name="RE_ReferenceSource" type="pir:RE_ReferenceSource_Type"/>
|
|
716
|
+
<xs:complexType name="RE_ReferenceSource_Type">
|
|
717
|
+
<xs:annotation>
|
|
718
|
+
<xs:documentation>The class RE_ReferenceSource specifies information about the source of
|
|
719
|
+
RE_RegisterItem specifications taken from an external document or
|
|
720
|
+
register.</xs:documentation>
|
|
721
|
+
</xs:annotation>
|
|
722
|
+
<xs:complexContent>
|
|
723
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
724
|
+
<xs:sequence>
|
|
725
|
+
<xs:element name="itemReference" type="pir:RE_Reference_PropertyType" minOccurs="1" maxOccurs="unbounded">
|
|
726
|
+
<xs:annotation>
|
|
727
|
+
<xs:documentation>The role “itemReference” describes that the information in the RE_ReferenceSource is the
|
|
728
|
+
citation for one or more RE_References”.</xs:documentation>
|
|
729
|
+
</xs:annotation>
|
|
730
|
+
</xs:element>
|
|
731
|
+
<xs:element name="citation" type="cit:CI_Citation_PropertyType" minOccurs="1" maxOccurs="1">
|
|
732
|
+
<xs:annotation>
|
|
733
|
+
<xs:documentation>information object containing information that directs a reader’s or user’s attention from
|
|
734
|
+
one resource (4.17) to another, Source ISO 19115-1.</xs:documentation>
|
|
735
|
+
</xs:annotation>
|
|
736
|
+
</xs:element>
|
|
737
|
+
<xs:element name="register" type="pir:RE_Register_PropertyType" minOccurs="1" maxOccurs="unbounded">
|
|
738
|
+
<xs:annotation>
|
|
739
|
+
<xs:documentation>The role “register” describes that the register for the association Reference is the reference
|
|
740
|
+
for one or more items in the register.</xs:documentation>
|
|
741
|
+
</xs:annotation>
|
|
742
|
+
</xs:element>
|
|
743
|
+
</xs:sequence>
|
|
744
|
+
</xs:extension>
|
|
745
|
+
</xs:complexContent>
|
|
746
|
+
</xs:complexType>
|
|
747
|
+
<xs:complexType name="RE_Register_PropertyType">
|
|
748
|
+
<xs:sequence minOccurs="0">
|
|
749
|
+
<xs:element ref="pir:RE_Register"/>
|
|
750
|
+
</xs:sequence>
|
|
751
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
752
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
753
|
+
</xs:complexType>
|
|
754
|
+
<xs:element name="RE_Register" substitutionGroup="pir:Register" type="pir:RE_Register_Type"/>
|
|
755
|
+
<xs:complexType name="RE_Register_Type">
|
|
756
|
+
<xs:annotation>
|
|
757
|
+
<xs:documentation>The class "RE_Register" specifies information about the register
|
|
758
|
+
itself. It is a subtype of the Register class in the core
|
|
759
|
+
profile.</xs:documentation>
|
|
760
|
+
</xs:annotation>
|
|
761
|
+
<xs:complexContent>
|
|
762
|
+
<xs:extension base="pir:Register_Type">
|
|
763
|
+
<xs:sequence>
|
|
764
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType" minOccurs="1"
|
|
765
|
+
maxOccurs="1">
|
|
766
|
+
<xs:annotation>
|
|
767
|
+
<xs:documentation>The attribute "name" is be represented as a
|
|
768
|
+
CharacterString containing a compact and human-readable designator
|
|
769
|
+
that is used to uniquely denote that register within the set of
|
|
770
|
+
registers maintained by the register owner. In the case of a
|
|
771
|
+
hierarchical register, the "name" of a subregister shall uniquely
|
|
772
|
+
identify that subregister within the scope EXAMPLE 'ISO/TC 211
|
|
773
|
+
Register of Feature Data Dictionaries and Feature Catalogues' might
|
|
774
|
+
be the name of the principal register of of all registers
|
|
775
|
+
established by the owner of the principal register. a hierarchical
|
|
776
|
+
register. 'DGIWG FACC Data Dictionary' and 'IHO S-57 Object
|
|
777
|
+
Dictionary' might be the names of subregisters within the
|
|
778
|
+
hierarchy.</xs:documentation>
|
|
779
|
+
</xs:annotation>
|
|
780
|
+
</xs:element>
|
|
781
|
+
<xs:element name="contentSummary" type="gco:CharacterString_PropertyType"
|
|
782
|
+
minOccurs="1" maxOccurs="1">
|
|
783
|
+
<xs:annotation>
|
|
784
|
+
<xs:documentation>The attribute "contentSummary" is be represented as a
|
|
785
|
+
CharacterString containing a general statement of the purpose for
|
|
786
|
+
which items in the register are made available to potential users.
|
|
787
|
+
It should also specify any limits to the scope of the register and
|
|
788
|
+
identify the types of applications for which the items are intended.
|
|
789
|
+
NOTE The scope of a register could be limited by theme, by region,
|
|
790
|
+
by language or other criteria. EXAMPLE The scope of a terminology
|
|
791
|
+
register could be limited to Spanish terms used to describe
|
|
792
|
+
landforms in Latin America. </xs:documentation>
|
|
793
|
+
</xs:annotation>
|
|
794
|
+
</xs:element>
|
|
795
|
+
<xs:element name="uniformResourceIdentifier" type="gco:CharacterString_PropertyType" minOccurs="1" maxOccurs="unbounded">
|
|
796
|
+
<xs:annotation>
|
|
797
|
+
<xs:documentation>The attribute "uniformResourceIdentifier" takes as its
|
|
798
|
+
value a set of URI's, each referencing information about online
|
|
799
|
+
resources associated with the register. EXAMPLE
|
|
800
|
+
'http://www.digest.org/Navigate2.htm' and
|
|
801
|
+
'http://www.epa.gov/opppmsd1/PPISdata/index.html' are sample values
|
|
802
|
+
corresponding value of the attribute OnLineResource.linkage
|
|
803
|
+
specifies a resource providing access to the complete content of the
|
|
804
|
+
register. EXAMPLE 'http://www.digest.org/Navigate2.htm' and
|
|
805
|
+
'http://www.epa.gov/opppmsd1/PPISdata/index.html' are sample values
|
|
806
|
+
of OnLineResource.linkage.</xs:documentation>
|
|
807
|
+
</xs:annotation>
|
|
808
|
+
</xs:element>
|
|
809
|
+
<xs:element name="operatingLanguage" type="pir:RE_Locale_PropertyType"
|
|
810
|
+
minOccurs="1" maxOccurs="1">
|
|
811
|
+
<xs:annotation>
|
|
812
|
+
<xs:documentation>The attribute "operatingLanguage" is represented as an
|
|
813
|
+
instance of class RE_Locale that is used to specify language,
|
|
814
|
+
country information and character encoding for the proper
|
|
815
|
+
interpretation of the content of character strings in the register.
|
|
816
|
+
The values of all character strings in the register shall be in
|
|
817
|
+
accordance with the value of "operatingLanguage", unless otherwise
|
|
818
|
+
stated.</xs:documentation>
|
|
819
|
+
</xs:annotation>
|
|
820
|
+
</xs:element>
|
|
821
|
+
<xs:element name="alternativeLanguages" type="gco:CharacterString_PropertyType"
|
|
822
|
+
minOccurs="0" maxOccurs="1">
|
|
823
|
+
<xs:annotation>
|
|
824
|
+
<xs:documentation>The attribute "alternativeLanguages" supports cultural
|
|
825
|
+
and linguistic adaptability, individual items in a register may
|
|
826
|
+
provide elements of information in additional languages other than
|
|
827
|
+
the operating language of the register. The attribute
|
|
828
|
+
alternativeLanguages shall be represented as a set of instances of
|
|
829
|
+
RE_Locale, each specifying an additional unique locale used by items
|
|
830
|
+
in the register. Every member of the set shall be used by at least
|
|
831
|
+
one item in the register. The locale of every alternativeExpression
|
|
832
|
+
used by any item in the register shall be included in this set of
|
|
833
|
+
RE_Locales. This attribute provides a summary of alternative locales
|
|
834
|
+
used by items in a register. Register owners shall specify and
|
|
835
|
+
publish their policy as to whether all or only some of the items in
|
|
836
|
+
a register shall have alternative expressions.</xs:documentation>
|
|
837
|
+
</xs:annotation>
|
|
838
|
+
</xs:element>
|
|
839
|
+
<xs:element name="citation" type="pir:RE_ReferenceSource_PropertyType"
|
|
840
|
+
minOccurs="0" maxOccurs="unbounded">
|
|
841
|
+
<xs:annotation>
|
|
842
|
+
<xs:documentation>The role “citation” identifies reference source for
|
|
843
|
+
one or more items in the RE_Register.</xs:documentation>
|
|
844
|
+
</xs:annotation>
|
|
845
|
+
</xs:element>
|
|
846
|
+
</xs:sequence>
|
|
847
|
+
</xs:extension>
|
|
848
|
+
</xs:complexContent>
|
|
849
|
+
</xs:complexType>
|
|
850
|
+
<xs:complexType name="RE_RegisterItem_PropertyType">
|
|
851
|
+
<xs:sequence minOccurs="0">
|
|
852
|
+
<xs:element ref="pir:RE_RegisterItem"/>
|
|
853
|
+
</xs:sequence>
|
|
854
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
855
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
856
|
+
</xs:complexType>
|
|
857
|
+
<xs:element name="RE_RegisterItem" substitutionGroup="pir:RegisterItem" type="pir:RE_RegisterItem_Type"/>
|
|
858
|
+
<xs:complexType name="RE_RegisterItem_Type">
|
|
859
|
+
<xs:annotation>
|
|
860
|
+
<xs:documentation>The class "RE_RegisterItem" specifies elements of information to be
|
|
861
|
+
recorded for each item held in a register.. The technical standard that specified an
|
|
862
|
+
item class may specify additional elements to be recorded.</xs:documentation>
|
|
863
|
+
</xs:annotation>
|
|
864
|
+
<xs:complexContent>
|
|
865
|
+
<xs:extension base="pir:RegisterItem_Type">
|
|
866
|
+
<xs:sequence>
|
|
867
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType" minOccurs="1"
|
|
868
|
+
maxOccurs="1">
|
|
869
|
+
<xs:annotation>
|
|
870
|
+
<xs:documentation>The attribute "name" is represented as a
|
|
871
|
+
CharacterString containing a compact and human-readable designator
|
|
872
|
+
that is used to denote a register concept. Each "name" shall: -
|
|
873
|
+
denote an item concept in the scope of an item class; and - be a
|
|
874
|
+
succinct expression of the item concept it denotes. EXAMPLE 'Lift'
|
|
875
|
+
and 'buoy shape'. The "name" shall be unique within a register
|
|
876
|
+
according to the following rules: - Multiple items of the same item
|
|
877
|
+
class may use the same value for "name" but only one such item may
|
|
878
|
+
have a status of 'valid'. - Items in different item classes may use
|
|
879
|
+
the same value for name. The "name" may be used to support searches
|
|
880
|
+
for items of interest to a human user of the
|
|
881
|
+
register.</xs:documentation>
|
|
882
|
+
</xs:annotation>
|
|
883
|
+
</xs:element>
|
|
884
|
+
<xs:element name="definition" type="gco:CharacterString_PropertyType"
|
|
885
|
+
minOccurs="1" maxOccurs="1">
|
|
886
|
+
<xs:annotation>
|
|
887
|
+
<xs:documentation>The attribute "definition" shall be represented as a
|
|
888
|
+
CharacterString containing the definition of the concept embodied by
|
|
889
|
+
that item and expressed in the operating language of the register.
|
|
890
|
+
The "definition" shall be a precise statement of the nature,
|
|
891
|
+
properties, scope or essential qualities of the concept as realized
|
|
892
|
+
by the item. If a definition is taken from an external source,
|
|
893
|
+
RE_Reference shall be used to provide information about that source
|
|
894
|
+
together with the unique identifier of the item in the external
|
|
895
|
+
source where available. EXAMPLE 'Equipment consisting of a platform,
|
|
896
|
+
which is often enclosed, that is raised and lower ed in a vertical
|
|
897
|
+
shaft to transport humans, equipment or materials; a lift or (U.S.)
|
|
898
|
+
elevator' and 'The shape of a buoy'.</xs:documentation>
|
|
899
|
+
</xs:annotation>
|
|
900
|
+
</xs:element>
|
|
901
|
+
<xs:element name="alternativeExpressions" type="gco:CharacterString_PropertyType" minOccurs="0" maxOccurs="1">
|
|
902
|
+
<xs:annotation>
|
|
903
|
+
<xs:documentation>The attribute "alternativeExpressions" represents as a
|
|
904
|
+
set of instances of RE_AlternativeExpression, each specifying an
|
|
905
|
+
alternative name and optionally additional information in a locale
|
|
906
|
+
different from that of the register. No two instances of
|
|
907
|
+
RE_AlternativeExpression within the set shall have the same value
|
|
908
|
+
for locale. </xs:documentation>
|
|
909
|
+
</xs:annotation>
|
|
910
|
+
</xs:element>
|
|
911
|
+
<xs:element name="dateAccepted" type="gco:Date_PropertyType" minOccurs="0"
|
|
912
|
+
maxOccurs="1">
|
|
913
|
+
<xs:annotation>
|
|
914
|
+
<xs:documentation>The conditional attribute "dateAccepted" specifies the
|
|
915
|
+
date on which a proposal to add the item to the register was
|
|
916
|
+
accepted. DateAccepted =
|
|
917
|
+
self.additionInformation.dateDisposed</xs:documentation>
|
|
918
|
+
</xs:annotation>
|
|
919
|
+
</xs:element>
|
|
920
|
+
<xs:element name="dateAmended" type="gco:Date_PropertyType" minOccurs="0"
|
|
921
|
+
maxOccurs="1">
|
|
922
|
+
<xs:annotation>
|
|
923
|
+
<xs:documentation>The conditional attribute "dateAmended" specifies the
|
|
924
|
+
date on which a proposal to supersede or retire the item was
|
|
925
|
+
accepted. DataAmended =
|
|
926
|
+
self.amendmentInformation.dateDisposed</xs:documentation>
|
|
927
|
+
</xs:annotation>
|
|
928
|
+
</xs:element>
|
|
929
|
+
<xs:element name="description" type="gco:CharacterString_PropertyType"
|
|
930
|
+
minOccurs="0" maxOccurs="1">
|
|
931
|
+
<xs:annotation>
|
|
932
|
+
<xs:documentation>The attribute "description" is represented as a
|
|
933
|
+
CharacterString containing a description of the concept embodied by
|
|
934
|
+
that item and expressed in the operating language of the register.
|
|
935
|
+
The "description" contains a statement of the nature, properties,
|
|
936
|
+
scope, or non-essential qualities of the concept that are realized
|
|
937
|
+
by the item but are not specified by the "definition" element.
|
|
938
|
+
EXAMPLE 1 'A lift may be moved through a system of overhead cables,
|
|
939
|
+
lateral traction or under-floor hydraulics.' EXAMPLE 2 'Buoy shape
|
|
940
|
+
is generally based on the portion visible above the water
|
|
941
|
+
line.'</xs:documentation>
|
|
942
|
+
</xs:annotation>
|
|
943
|
+
</xs:element>
|
|
944
|
+
<xs:element name="fieldOfApplication" type="gco:CharacterString_PropertyType"
|
|
945
|
+
minOccurs="0" maxOccurs="1">
|
|
946
|
+
<xs:annotation>
|
|
947
|
+
<xs:documentation>The attribute "fieldOfApplication" is represented as a
|
|
948
|
+
set of instances of RE_FieldOfApplication, each of which shall
|
|
949
|
+
describe a kind of use of the item. The fieldOfApplication may be
|
|
950
|
+
used as the basis for creating metadata for submission to search
|
|
951
|
+
engines. EXAMPLES 'Agricultural Production' and 'Marine
|
|
952
|
+
Navigation'.</xs:documentation>
|
|
953
|
+
</xs:annotation>
|
|
954
|
+
</xs:element>
|
|
955
|
+
<xs:element name="additionInformation" type="pir:RE_AdditionInformation_PropertyType" minOccurs="1"
|
|
956
|
+
maxOccurs="unbounded">
|
|
957
|
+
<xs:annotation>
|
|
958
|
+
<xs:documentation>The role "additionInformation" identifies the class
|
|
959
|
+
RE_AdditionInformation for addtional information about the
|
|
960
|
+
registerItem.</xs:documentation>
|
|
961
|
+
</xs:annotation>
|
|
962
|
+
</xs:element>
|
|
963
|
+
<xs:element name="amendmentInformation" type="pir:RE_AmendmentInformation_PropertyType" minOccurs="0"
|
|
964
|
+
maxOccurs="unbounded">
|
|
965
|
+
<xs:annotation>
|
|
966
|
+
<xs:documentation>The role "amendmentInformation" identifies that
|
|
967
|
+
amendment information to the register item may be available in the
|
|
968
|
+
RE_AmendmentInformation class.</xs:documentation>
|
|
969
|
+
</xs:annotation>
|
|
970
|
+
</xs:element>
|
|
971
|
+
<xs:element name="clarificationInformation" type="pir:RE_ClarificationInformation_PropertyType" minOccurs="0"
|
|
972
|
+
maxOccurs="unbounded">
|
|
973
|
+
<xs:annotation>
|
|
974
|
+
<xs:documentation>The role "clarificationInformation " identifies the
|
|
975
|
+
class RE_ClarificationInformation for clarifying information about
|
|
976
|
+
the registerItem.</xs:documentation>
|
|
977
|
+
</xs:annotation>
|
|
978
|
+
</xs:element>
|
|
979
|
+
<xs:element name="specificationLineage" type="pir:RE_Reference_PropertyType"
|
|
980
|
+
minOccurs="0" maxOccurs="unbounded">
|
|
981
|
+
<xs:annotation>
|
|
982
|
+
<xs:documentation>The role "specificationLineage" identifies the
|
|
983
|
+
information in RE_Reference as lineage information for the register
|
|
984
|
+
item. </xs:documentation>
|
|
985
|
+
</xs:annotation>
|
|
986
|
+
</xs:element>
|
|
987
|
+
<xs:element name="specificationSource" type="pir:RE_Reference_PropertyType"
|
|
988
|
+
minOccurs="0" maxOccurs="1">
|
|
989
|
+
<xs:annotation>
|
|
990
|
+
<xs:documentation>The role "specificationSource" identifies the
|
|
991
|
+
reference infromation as the specification source for the register
|
|
992
|
+
item. </xs:documentation>
|
|
993
|
+
</xs:annotation>
|
|
994
|
+
</xs:element>
|
|
995
|
+
</xs:sequence>
|
|
996
|
+
</xs:extension>
|
|
997
|
+
</xs:complexContent>
|
|
998
|
+
</xs:complexType>
|
|
999
|
+
<xs:complexType name="RE_RegisterStakeholder_PropertyType">
|
|
1000
|
+
<xs:sequence minOccurs="0">
|
|
1001
|
+
<xs:element ref="pir:RE_RegisterStakeholder"/>
|
|
1002
|
+
</xs:sequence>
|
|
1003
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
1004
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
1005
|
+
</xs:complexType>
|
|
1006
|
+
<xs:element name="RE_RegisterStakeholder" type="pir:RE_RegisterStakeholder_Type"/>
|
|
1007
|
+
<xs:complexType name="RE_RegisterStakeholder_Type">
|
|
1008
|
+
<xs:complexContent>
|
|
1009
|
+
<xs:extension base="pir:RegisterStakeholder_Type">
|
|
1010
|
+
<xs:sequence>
|
|
1011
|
+
<xs:element name="proposalInformation" type="pir:RE_ProposalManagementInformation_PropertyType" minOccurs="1"
|
|
1012
|
+
maxOccurs="unbounded">
|
|
1013
|
+
<xs:annotation>
|
|
1014
|
+
<xs:documentation>The role "proposalnformation" identifies that the
|
|
1015
|
+
stakeholder in the function of a proposer has proposed proposal
|
|
1016
|
+
managment information to the registry.</xs:documentation>
|
|
1017
|
+
</xs:annotation>
|
|
1018
|
+
</xs:element>
|
|
1019
|
+
</xs:sequence>
|
|
1020
|
+
</xs:extension>
|
|
1021
|
+
</xs:complexContent>
|
|
1022
|
+
</xs:complexType>
|
|
1023
|
+
<xs:complexType name="RE_SimilarityToSource_PropertyType">
|
|
1024
|
+
<xs:sequence minOccurs="0">
|
|
1025
|
+
<xs:element ref="pir:RE_SimilarityToSource"/>
|
|
1026
|
+
</xs:sequence>
|
|
1027
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
1028
|
+
</xs:complexType>
|
|
1029
|
+
<xs:element name="RE_SimilarityToSource" substitutionGroup="gco:CharacterString" type="gco:CodeListValue_Type">
|
|
1030
|
+
<xs:annotation>
|
|
1031
|
+
<xs:documentation>RE_SimilarityToSource is a .LT. .LT. CodeList .GT. .GT. that
|
|
1032
|
+
identifies the type of change that has been made to an item specification
|
|
1033
|
+
relative to an item specification in an external source.</xs:documentation>
|
|
1034
|
+
</xs:annotation>
|
|
1035
|
+
</xs:element>
|
|
1036
|
+
<xs:complexType name="RE_SubregisterDescription_PropertyType">
|
|
1037
|
+
<xs:sequence minOccurs="0">
|
|
1038
|
+
<xs:element ref="pir:RE_SubregisterDescription"/>
|
|
1039
|
+
</xs:sequence>
|
|
1040
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
1041
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
1042
|
+
</xs:complexType>
|
|
1043
|
+
<xs:element name="RE_SubregisterDescription" substitutionGroup="pir:SubregisterDescription" type="pir:RE_SubregisterDescription_Type"/>
|
|
1044
|
+
<xs:complexType name="RE_SubregisterDescription_Type">
|
|
1045
|
+
<xs:annotation>
|
|
1046
|
+
<xs:documentation>RE_SubregisterDescription is a subclass of SubregisterDescription that
|
|
1047
|
+
is used in the principal register of a hierarchical register to describe additional
|
|
1048
|
+
information for each of the affiliated subregisters. </xs:documentation>
|
|
1049
|
+
</xs:annotation>
|
|
1050
|
+
<xs:complexContent>
|
|
1051
|
+
<xs:extension base="pir:SubregisterDescription_Type">
|
|
1052
|
+
<xs:sequence>
|
|
1053
|
+
<xs:element name="uniformResourceIdentifier" type="gco:CharacterString_PropertyType" minOccurs="1" maxOccurs="1">
|
|
1054
|
+
<xs:annotation>
|
|
1055
|
+
<xs:documentation>The attribute "uniformResourceIdentifier" takes as its
|
|
1056
|
+
value a set of URI's, each referencing information about online
|
|
1057
|
+
resources associated with the register.</xs:documentation>
|
|
1058
|
+
</xs:annotation>
|
|
1059
|
+
</xs:element>
|
|
1060
|
+
<xs:element name="operatingLanguage" type="pir:RE_Locale_PropertyType"
|
|
1061
|
+
minOccurs="1" maxOccurs="1">
|
|
1062
|
+
<xs:annotation>
|
|
1063
|
+
<xs:documentation>The attribute "operatingLanguage" is represented as an
|
|
1064
|
+
instance of class RE_Locale that is used to specify language,
|
|
1065
|
+
country information and character encoding for the proper
|
|
1066
|
+
interpretation of the content of character strings in the
|
|
1067
|
+
subregister.</xs:documentation>
|
|
1068
|
+
</xs:annotation>
|
|
1069
|
+
</xs:element>
|
|
1070
|
+
</xs:sequence>
|
|
1071
|
+
</xs:extension>
|
|
1072
|
+
</xs:complexContent>
|
|
1073
|
+
</xs:complexType>
|
|
1074
|
+
</xs:schema>
|