lutaml-model 0.7.7 → 0.8.1
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-repos.json +9 -0
- data/.github/workflows/dependent-tests.yml +4 -0
- data/.github/workflows/docs.yml +59 -0
- data/.github/workflows/downstream-performance.yml +153 -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 +408 -88
- data/Gemfile +15 -9
- data/README.adoc +13736 -6922
- 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_xmi.rb +51 -0
- data/bench/gate_config.rb +120 -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 +306 -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 +319 -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 +108 -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/docs/yamls_sequence.adoc +335 -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 +29 -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 +62 -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/adapter_resolver.rb +410 -0
- data/lib/lutaml/model/adapter_scope.rb +64 -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 +111 -80
- data/lib/lutaml/model/configuration.rb +91 -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 +170 -9
- 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 +337 -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 -578
- 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 +229 -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 +48 -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 +303 -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 +294 -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 +30 -0
- data/lib/lutaml/{model/yamls → yamls/adapter}/document.rb +2 -2
- data/lib/lutaml/yamls/adapter/mapping.rb +26 -0
- data/lib/lutaml/yamls/adapter/mapping_rule.rb +9 -0
- data/lib/lutaml/yamls/adapter/standard_adapter.rb +56 -0
- data/lib/lutaml/yamls/adapter/transform.rb +124 -0
- data/lib/lutaml/yamls/adapter/yamls_sequence.rb +20 -0
- data/lib/lutaml/yamls/adapter/yamls_sequence_rule.rb +48 -0
- data/lib/lutaml/yamls/adapter.rb +15 -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/geolexica_v2_concept.rb +136 -0
- data/spec/fixtures/geolexica_v2_sample.yaml +36 -0
- data/spec/fixtures/geolexica_v2_sample2.yaml +38 -0
- 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/fixtures/yamls_range_concept.rb +139 -0
- 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 +436 -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/model/yamls_range_spec.rb +393 -0
- data/spec/lutaml/model/yamls_sequence_spec.rb +245 -0
- 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 +69 -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 +1475 -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/standard_adapter.rb +0 -34
- 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,1514 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Value Types
|
|
3
|
+
nav_order: 6
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
= Value types
|
|
7
|
+
:toc:
|
|
8
|
+
:toclevels: 3
|
|
9
|
+
|
|
10
|
+
[[value-definition]]
|
|
11
|
+
== Value types
|
|
12
|
+
|
|
13
|
+
=== General types
|
|
14
|
+
|
|
15
|
+
Lutaml::Model supports the following attribute value types.
|
|
16
|
+
|
|
17
|
+
Every type has a corresponding Ruby class and a serialization format type.
|
|
18
|
+
|
|
19
|
+
.Mapping between Lutaml::Model::Type classes, Ruby equivalents and serialization format types
|
|
20
|
+
|===
|
|
21
|
+
| Lutaml::Model::Type | Ruby class | XML | JSON | YAML | Example value
|
|
22
|
+
|
|
23
|
+
| `:string` | `String` | `xs:string` | `string` | `string` | `"text"`
|
|
24
|
+
| `:integer` | `Integer` | `xs:integer` | `number` | `integer` | `42`
|
|
25
|
+
| `:float` | `Float` | `xs:decimal` | `number` | `float` | `3.14`
|
|
26
|
+
| `:boolean` | `TrueClass`/`FalseClass` | `xs:boolean` | `boolean` | `boolean` | `true`, `false`
|
|
27
|
+
| `:symbol` | `Symbol` | `xs:string` | `string` | `symbol` | `:example` (XML/JSON `":example:"`)
|
|
28
|
+
| `:date` | `Date`/`DateTime` | `xs:date` | `string` | `string` | `2024-01-01`, `"2019-09-28Z"` (XML `"2019-09-28Z"`)
|
|
29
|
+
| `:time_without_date` | `Time` | `xs:time` | `string` | `string` | `"12:34:56"`
|
|
30
|
+
| `:date_time` | `DateTime` | `xs:dateTime` | `string` | `string` | `"2024-01-01T12:00:00+00:00"`
|
|
31
|
+
| `:time` | `Time` | `xs:dateTime` | `string` | `string` | `"2024-01-01T12:00:00+00:00"`
|
|
32
|
+
| `:decimal` | `BigDecimal` | `xs:decimal` | `number` | `float` | `123.45`
|
|
33
|
+
| `:duration` | `Lutaml::Model::Type::Duration` | `xs:duration` | `string` | `string` | `"P1Y2M3DT4H5M6S"`
|
|
34
|
+
| `:uri` | `String` | `xs:anyURI` | `string` | `string` | `"https://example.com"`
|
|
35
|
+
| `:qname` | `Lutaml::Model::Type::QName` | `xs:QName` | `string` | `string` | `"prefix:localName"`
|
|
36
|
+
| `:base64_binary` | `String` | `xs:base64Binary` | `string` | `string` | `"SGVsbG8gV29ybGQ="`
|
|
37
|
+
| `:hex_binary` | `String` | `xs:hexBinary` | `string` | `string` | `"48656c6c6f"`
|
|
38
|
+
| `:hash` | `Hash` | complex element | object | map | `{key: "value"}`
|
|
39
|
+
| (nil value) | `nil` | `xs:anyType` | `null` | `null` | `null`
|
|
40
|
+
| `{ ref: [Model, :attr] }` | `Reference` | `xs:string` | `string` | `string` | `"model-id"`
|
|
41
|
+
|
|
42
|
+
|===
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
=== Decimal type
|
|
46
|
+
|
|
47
|
+
The Decimal type uses Ruby's `BigDecimal` for arbitrary-precision decimal
|
|
48
|
+
numbers. The `bigdecimal` gem is automatically loaded as a runtime dependency,
|
|
49
|
+
so the Decimal type works out of the box on all supported Ruby versions
|
|
50
|
+
(including Ruby 3.4+ where `bigdecimal` is a bundled gem, and Ruby 4.0+ where
|
|
51
|
+
it is removed from the standard library).
|
|
52
|
+
|
|
53
|
+
If for some reason `bigdecimal` cannot be loaded (e.g., a minimal Ruby
|
|
54
|
+
installation without the gem), usage of the `Decimal` type will raise a
|
|
55
|
+
`Lutaml::Model::TypeNotEnabledError`.
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
=== Date type with timezone support
|
|
59
|
+
|
|
60
|
+
The `:date` type supports the full XSD `xs:date` specification, including
|
|
61
|
+
optional timezone offsets. When a date string contains a timezone suffix
|
|
62
|
+
(`Z`, `+HH:MM`, or `-HH:MM`), it is preserved during round-trip serialization.
|
|
63
|
+
|
|
64
|
+
Internally, dates with timezone are represented as Ruby `DateTime` objects
|
|
65
|
+
(at midnight with the preserved offset), while dates without timezone use
|
|
66
|
+
plain `Date` objects. Both are polymorphic — `DateTime < Date` in Ruby, so
|
|
67
|
+
`is_a?(Date)` checks work for both.
|
|
68
|
+
|
|
69
|
+
.Format-specific serialization behavior
|
|
70
|
+
|===
|
|
71
|
+
| Format | UTC representation | Non-UTC example
|
|
72
|
+
|
|
73
|
+
| XML
|
|
74
|
+
| `2019-09-28Z`
|
|
75
|
+
| `2019-12-02+08:00`
|
|
76
|
+
|
|
77
|
+
| JSON
|
|
78
|
+
| `2019-09-28+00:00`
|
|
79
|
+
| `2019-12-02+08:00`
|
|
80
|
+
|
|
81
|
+
| YAML
|
|
82
|
+
| `2019-09-28`
|
|
83
|
+
| `2019-12-02`
|
|
84
|
+
|===
|
|
85
|
+
|
|
86
|
+
.Using date attributes with timezone
|
|
87
|
+
[example]
|
|
88
|
+
====
|
|
89
|
+
[source,ruby]
|
|
90
|
+
----
|
|
91
|
+
class Event < Lutaml::Model::Serializable
|
|
92
|
+
attribute :start_date, :date
|
|
93
|
+
|
|
94
|
+
xml do
|
|
95
|
+
root "event"
|
|
96
|
+
map_element "startDate", to: :start_date
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
json do
|
|
100
|
+
map "startDate", to: :start_date
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
# XML round-trip preserves timezone
|
|
105
|
+
event = Event.from_xml('<event><startDate>2019-09-28Z</startDate></event>')
|
|
106
|
+
puts event.to_xml
|
|
107
|
+
# => <event><startDate>2019-09-28Z</startDate></event>
|
|
108
|
+
|
|
109
|
+
# JSON round-trip preserves timezone
|
|
110
|
+
event = Event.from_json('{"startDate": "2019-12-02+08:00"}')
|
|
111
|
+
puts event.to_json
|
|
112
|
+
# => {"startDate":"2019-12-02+08:00"}
|
|
113
|
+
|
|
114
|
+
# Dates without timezone work as before
|
|
115
|
+
event = Event.from_json('{"startDate": "2024-01-01"}')
|
|
116
|
+
puts event.start_date.class
|
|
117
|
+
# => Date
|
|
118
|
+
----
|
|
119
|
+
====
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
[[xml-namespace-types]]
|
|
123
|
+
=== Additional XSD types
|
|
124
|
+
|
|
125
|
+
Lutaml::Model supports additional XSD types for specialized data handling:
|
|
126
|
+
|
|
127
|
+
==== Duration type
|
|
128
|
+
|
|
129
|
+
The `:duration` type handles ISO 8601 duration values conforming to `xs:duration`.
|
|
130
|
+
|
|
131
|
+
Duration format: `P[n]Y[n]M[n]DT[n]H[n]M[n]S`
|
|
132
|
+
|
|
133
|
+
Where,
|
|
134
|
+
|
|
135
|
+
`P`:: Required prefix indicating period
|
|
136
|
+
`[n]Y`:: Years (optional)
|
|
137
|
+
`[n]M`:: Months (optional, before T)
|
|
138
|
+
`[n]D`:: Days (optional)
|
|
139
|
+
`T`:: Time prefix (required if time components present)
|
|
140
|
+
`[n]H`:: Hours (optional)
|
|
141
|
+
`[n]M`:: Minutes (optional, after T)
|
|
142
|
+
`[n]S`:: Seconds (optional, can include decimals)
|
|
143
|
+
|
|
144
|
+
.Using the `:duration` type
|
|
145
|
+
[example]
|
|
146
|
+
====
|
|
147
|
+
[source,ruby]
|
|
148
|
+
----
|
|
149
|
+
class ProcessingTask < Lutaml::Model::Serializable
|
|
150
|
+
attribute :processing_time, :duration
|
|
151
|
+
|
|
152
|
+
xml do
|
|
153
|
+
root "task"
|
|
154
|
+
map_element "processingTime", to: :processing_time
|
|
155
|
+
end
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
# Valid durations
|
|
159
|
+
task1 = ProcessingTask.new(processing_time: "P1Y2M3D") # 1 year, 2 months, 3 days
|
|
160
|
+
task2 = ProcessingTask.new(processing_time: "PT4H5M6S") # 4 hours, 5 minutes, 6 seconds
|
|
161
|
+
task3 = ProcessingTask.new(processing_time: "P1Y2M3DT4H5M6S") # Combined
|
|
162
|
+
task4 = ProcessingTask.new(processing_time: "PT0.5S") # 0.5 seconds
|
|
163
|
+
|
|
164
|
+
puts task1.to_xml
|
|
165
|
+
# => <task><processingTime>P1Y2M3D</processingTime></task>
|
|
166
|
+
----
|
|
167
|
+
====
|
|
168
|
+
|
|
169
|
+
==== URI type
|
|
170
|
+
|
|
171
|
+
The `:uri` type handles Uniform Resource Identifiers conforming to `xs:anyURI`.
|
|
172
|
+
|
|
173
|
+
.Using the `:uri` type
|
|
174
|
+
[example]
|
|
175
|
+
====
|
|
176
|
+
[source,ruby]
|
|
177
|
+
----
|
|
178
|
+
class Resource < Lutaml::Model::Serializable
|
|
179
|
+
attribute :homepage, :uri
|
|
180
|
+
attribute :schema_location, :uri
|
|
181
|
+
|
|
182
|
+
xml do
|
|
183
|
+
root "resource"
|
|
184
|
+
map_element "homepage", to: :homepage
|
|
185
|
+
map_attribute "schemaLocation", to: :schema_location
|
|
186
|
+
end
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
resource = Resource.new(
|
|
190
|
+
homepage: "https://example.com/page",
|
|
191
|
+
schema_location: "https://example.com/schema.xsd"
|
|
192
|
+
)
|
|
193
|
+
|
|
194
|
+
puts resource.to_xml
|
|
195
|
+
# => <resource schemaLocation="https://example.com/schema.xsd">
|
|
196
|
+
# <homepage>https://example.com/page</homepage>
|
|
197
|
+
# </resource>
|
|
198
|
+
----
|
|
199
|
+
====
|
|
200
|
+
|
|
201
|
+
==== QName type
|
|
202
|
+
|
|
203
|
+
The `:qname` type handles XML qualified names conforming to `xs:QName`.
|
|
204
|
+
|
|
205
|
+
A QName consists of an optional namespace prefix and a local name, separated
|
|
206
|
+
by a colon.
|
|
207
|
+
|
|
208
|
+
.Using the `:qname` type
|
|
209
|
+
[example]
|
|
210
|
+
====
|
|
211
|
+
[source,ruby]
|
|
212
|
+
----
|
|
213
|
+
class Reference < Lutaml::Model::Serializable
|
|
214
|
+
attribute :ref_type, :qname
|
|
215
|
+
attribute :target, :qname
|
|
216
|
+
|
|
217
|
+
xml do
|
|
218
|
+
root "reference"
|
|
219
|
+
map_attribute "type", to: :ref_type
|
|
220
|
+
map_element "target", to: :target
|
|
221
|
+
end
|
|
222
|
+
end
|
|
223
|
+
|
|
224
|
+
ref = Reference.new(
|
|
225
|
+
ref_type: "xsd:string",
|
|
226
|
+
target: "ns:elementName"
|
|
227
|
+
)
|
|
228
|
+
|
|
229
|
+
puts ref.to_xml
|
|
230
|
+
# => <reference type="xsd:string">
|
|
231
|
+
# <target>ns:elementName</target>
|
|
232
|
+
# </reference>
|
|
233
|
+
|
|
234
|
+
# Accessing QName components
|
|
235
|
+
qname = Lutaml::Model::Type::QName.new("prefix:localName")
|
|
236
|
+
puts qname.prefix # => "prefix"
|
|
237
|
+
puts qname.local_name # => "localName"
|
|
238
|
+
----
|
|
239
|
+
====
|
|
240
|
+
|
|
241
|
+
==== Base64Binary type
|
|
242
|
+
|
|
243
|
+
The `:base64_binary` type handles base64-encoded binary data conforming to
|
|
244
|
+
`xs:base64Binary`.
|
|
245
|
+
|
|
246
|
+
.Using the `:base64_binary` type
|
|
247
|
+
[example]
|
|
248
|
+
====
|
|
249
|
+
[source,ruby]
|
|
250
|
+
----
|
|
251
|
+
class Attachment < Lutaml::Model::Serializable
|
|
252
|
+
attribute :content, :base64_binary
|
|
253
|
+
attribute :filename, :string
|
|
254
|
+
|
|
255
|
+
xml do
|
|
256
|
+
root "attachment"
|
|
257
|
+
map_element "content", to: :content
|
|
258
|
+
map_attribute "filename", to: :filename
|
|
259
|
+
end
|
|
260
|
+
end
|
|
261
|
+
|
|
262
|
+
# Encoding binary data
|
|
263
|
+
binary_data = "Hello World"
|
|
264
|
+
encoded = Lutaml::Model::Type::Base64Binary.encode(binary_data)
|
|
265
|
+
|
|
266
|
+
attachment = Attachment.new(
|
|
267
|
+
content: encoded,
|
|
268
|
+
filename: "hello.txt"
|
|
269
|
+
)
|
|
270
|
+
|
|
271
|
+
puts attachment.to_xml
|
|
272
|
+
# => <attachment filename="hello.txt">
|
|
273
|
+
# <content>SGVsbG8gV29ybGQ=</content>
|
|
274
|
+
# </attachment>
|
|
275
|
+
|
|
276
|
+
# Decoding
|
|
277
|
+
decoded = Lutaml::Model::Type::Base64Binary.decode(attachment.content)
|
|
278
|
+
# => "Hello World"
|
|
279
|
+
----
|
|
280
|
+
====
|
|
281
|
+
|
|
282
|
+
==== HexBinary type
|
|
283
|
+
|
|
284
|
+
The `:hex_binary` type handles hexadecimal-encoded binary data conforming to
|
|
285
|
+
`xs:hexBinary`.
|
|
286
|
+
|
|
287
|
+
.Using the `:hex_binary` type
|
|
288
|
+
[example]
|
|
289
|
+
====
|
|
290
|
+
[source,ruby]
|
|
291
|
+
----
|
|
292
|
+
class Checksum < Lutaml::Model::Serializable
|
|
293
|
+
attribute :hash_value, :hex_binary
|
|
294
|
+
attribute :algorithm, :string
|
|
295
|
+
|
|
296
|
+
xml do
|
|
297
|
+
root "checksum"
|
|
298
|
+
map_element "value", to: :hash_value
|
|
299
|
+
map_attribute "algorithm", to: :algorithm
|
|
300
|
+
end
|
|
301
|
+
end
|
|
302
|
+
|
|
303
|
+
# Encoding binary data
|
|
304
|
+
binary_data = "Hello"
|
|
305
|
+
encoded = Lutaml::Model::Type::HexBinary.encode(binary_data)
|
|
306
|
+
|
|
307
|
+
checksum = Checksum.new(
|
|
308
|
+
hash_value: encoded,
|
|
309
|
+
algorithm: "SHA256"
|
|
310
|
+
)
|
|
311
|
+
|
|
312
|
+
puts checksum.to_xml
|
|
313
|
+
# => <checksum algorithm="SHA256">
|
|
314
|
+
# <value>48656c6c6f</value>
|
|
315
|
+
# </checksum>
|
|
316
|
+
|
|
317
|
+
# Decoding
|
|
318
|
+
decoded = Lutaml::Model::Type::HexBinary.decode(checksum.hash_value)
|
|
319
|
+
# => "Hello"
|
|
320
|
+
----
|
|
321
|
+
====
|
|
322
|
+
|
|
323
|
+
==== W3C XML Attributes
|
|
324
|
+
|
|
325
|
+
Lutaml::Model provides pre-defined type classes for W3C standard XML attributes
|
|
326
|
+
with built-in validation and serialization support. These types automatically
|
|
327
|
+
handle the `xml:` namespace prefix.
|
|
328
|
+
|
|
329
|
+
.Available W3C XML attribute types
|
|
330
|
+
[cols="1,2,2"]
|
|
331
|
+
|===
|
|
332
|
+
| Type Class | Purpose | Validation
|
|
333
|
+
|
|
334
|
+
| `Lutaml::Xml::W3c::XmlLangType`
|
|
335
|
+
| Language identification (RFC 5646)
|
|
336
|
+
| Accepts any valid language tag
|
|
337
|
+
|
|
338
|
+
| `Lutaml::Xml::W3c::XmlSpaceType`
|
|
339
|
+
| Whitespace handling control
|
|
340
|
+
| Only "default" or "preserve"
|
|
341
|
+
|
|
342
|
+
| `Lutaml::Xml::W3c::XmlBaseType`
|
|
343
|
+
| Base URI for relative references
|
|
344
|
+
| Accepts any valid URI string
|
|
345
|
+
|
|
346
|
+
| `Lutaml::Xml::W3c::XmlIdType`
|
|
347
|
+
| Unique identifier (XML ID type)
|
|
348
|
+
| Must be valid NCName
|
|
349
|
+
|===
|
|
350
|
+
|
|
351
|
+
.Using W3C XML attribute types
|
|
352
|
+
[example]
|
|
353
|
+
====
|
|
354
|
+
[source,ruby]
|
|
355
|
+
----
|
|
356
|
+
class Article < Lutaml::Model::Serializable
|
|
357
|
+
attribute :lang, Lutaml::Xml::W3c::XmlLangType
|
|
358
|
+
attribute :space, Lutaml::Xml::W3c::XmlSpaceType
|
|
359
|
+
attribute :id, Lutaml::Xml::W3c::XmlIdType
|
|
360
|
+
attribute :title, :string
|
|
361
|
+
|
|
362
|
+
xml do
|
|
363
|
+
root "article"
|
|
364
|
+
map_attribute "lang", to: :lang
|
|
365
|
+
map_attribute "space", to: :space
|
|
366
|
+
map_attribute "id", to: :id
|
|
367
|
+
map_element "title", to: :title
|
|
368
|
+
end
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
article = Article.new(
|
|
372
|
+
lang: "en-US",
|
|
373
|
+
space: "preserve",
|
|
374
|
+
id: "article1",
|
|
375
|
+
title: "My Article"
|
|
376
|
+
)
|
|
377
|
+
|
|
378
|
+
puts article.to_xml
|
|
379
|
+
# => <article xml:lang="en-US" xml:space="preserve" xml:id="article1">
|
|
380
|
+
# <title>My Article</title>
|
|
381
|
+
# </article>
|
|
382
|
+
----
|
|
383
|
+
====
|
|
384
|
+
|
|
385
|
+
===== W3C Attributes Convenience Method
|
|
386
|
+
|
|
387
|
+
For cleaner code when mapping multiple W3C attributes, use the `w3c_attributes`
|
|
388
|
+
convenience method:
|
|
389
|
+
|
|
390
|
+
.Using `w3c_attributes` shorthand
|
|
391
|
+
[example]
|
|
392
|
+
====
|
|
393
|
+
[source,ruby]
|
|
394
|
+
----
|
|
395
|
+
class Paragraph < Lutaml::Model::Serializable
|
|
396
|
+
attribute :lang, Lutaml::Xml::W3c::XmlLangType
|
|
397
|
+
attribute :space, Lutaml::Xml::W3c::XmlSpaceType
|
|
398
|
+
attribute :content, :string
|
|
399
|
+
|
|
400
|
+
xml do
|
|
401
|
+
element "p"
|
|
402
|
+
w3c_attributes :lang, :space # Shorthand for map_attribute
|
|
403
|
+
map_content to: :content
|
|
404
|
+
end
|
|
405
|
+
end
|
|
406
|
+
|
|
407
|
+
para = Paragraph.new(content: "Hello", lang: "en", space: "preserve")
|
|
408
|
+
para.to_xml
|
|
409
|
+
# => <p xml:lang="en" xml:space="preserve">Hello</p>
|
|
410
|
+
----
|
|
411
|
+
====
|
|
412
|
+
|
|
413
|
+
===== Mixed Content and Whitespace Preservation
|
|
414
|
+
|
|
415
|
+
Mixed content elements are whitespace-sensitive by definition. Use the
|
|
416
|
+
`xml_space :preserve` method to automatically add `xml:space="preserve"`
|
|
417
|
+
during serialization:
|
|
418
|
+
|
|
419
|
+
.Using `xml_space` with mixed content
|
|
420
|
+
[example]
|
|
421
|
+
====
|
|
422
|
+
[source,ruby]
|
|
423
|
+
----
|
|
424
|
+
class RichText < Lutaml::Model::Serializable
|
|
425
|
+
attribute :content, :string
|
|
426
|
+
|
|
427
|
+
xml do
|
|
428
|
+
element "text"
|
|
429
|
+
mixed_content # Enables mixed content mode
|
|
430
|
+
xml_space :preserve # Adds xml:space="preserve"
|
|
431
|
+
map_content to: :content
|
|
432
|
+
end
|
|
433
|
+
end
|
|
434
|
+
|
|
435
|
+
text = RichText.new(content: " Important spacing ")
|
|
436
|
+
text.to_xml
|
|
437
|
+
# => <text xml:space="preserve"> Important spacing </text>
|
|
438
|
+
----
|
|
439
|
+
====
|
|
440
|
+
|
|
441
|
+
You can also use `xml_space :default` to explicitly signal default whitespace
|
|
442
|
+
handling, or omit it entirely for no xml:space attribute:
|
|
443
|
+
|
|
444
|
+
[source,ruby]
|
|
445
|
+
----
|
|
446
|
+
xml do
|
|
447
|
+
element "text"
|
|
448
|
+
mixed_content # Mixed content without xml:space attribute
|
|
449
|
+
map_content to: :content
|
|
450
|
+
end
|
|
451
|
+
----
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
=== Symbol type
|
|
456
|
+
|
|
457
|
+
The Symbol type provides support for Ruby symbols across all serialization
|
|
458
|
+
formats.
|
|
459
|
+
|
|
460
|
+
**Type Casting Behavior:**
|
|
461
|
+
|
|
462
|
+
The Symbol type only accepts valid string inputs and existing symbols:
|
|
463
|
+
|
|
464
|
+
* ✅ **Non-empty strings**: `"active"` → `:active`
|
|
465
|
+
* ✅ **Existing symbols**: `:pending` → `:pending`
|
|
466
|
+
* ✅ **Wrapper format**: `":done:"` → `:done`
|
|
467
|
+
* ✅ **Other types**: integers, arrays, hashes, booleans → symbol (works similar to string type)
|
|
468
|
+
* ❌ **Empty strings**: `""` → `nil`
|
|
469
|
+
|
|
470
|
+
Since not all serialization formats natively support symbols (XML, JSON, TOML
|
|
471
|
+
don't), the Symbol type uses format-specific serialization strategies:
|
|
472
|
+
|
|
473
|
+
* **YAML**: Uses native symbol format (`:symbol`)
|
|
474
|
+
* **XML/JSON/TOML**: Uses wrapper format (`":symbol:"`) for compatibility
|
|
475
|
+
|
|
476
|
+
The Symbol type automatically handles conversion between these formats when
|
|
477
|
+
parsing and serializing.
|
|
478
|
+
|
|
479
|
+
.Using symbols with different serialization formats
|
|
480
|
+
[example]
|
|
481
|
+
====
|
|
482
|
+
[source,ruby]
|
|
483
|
+
----
|
|
484
|
+
class Task < Lutaml::Model::Serializable
|
|
485
|
+
attribute :status, :symbol
|
|
486
|
+
attribute :priority, :symbol
|
|
487
|
+
|
|
488
|
+
xml do
|
|
489
|
+
root "task"
|
|
490
|
+
map_element "status", to: :status
|
|
491
|
+
map_element "priority", to: :priority
|
|
492
|
+
end
|
|
493
|
+
|
|
494
|
+
json do
|
|
495
|
+
map "status", to: :status
|
|
496
|
+
map "priority", to: :priority
|
|
497
|
+
end
|
|
498
|
+
end
|
|
499
|
+
|
|
500
|
+
task = Task.new(status: :in_progress, priority: :high)
|
|
501
|
+
|
|
502
|
+
# XML serialization uses wrapper format
|
|
503
|
+
task.to_xml
|
|
504
|
+
# => <task><status>:in_progress:</status><priority>:high:</priority></task>
|
|
505
|
+
|
|
506
|
+
# JSON serialization uses wrapper format
|
|
507
|
+
task.to_json
|
|
508
|
+
# => {"status":":in_progress:","priority":":high:"}
|
|
509
|
+
|
|
510
|
+
# YAML serialization uses native symbols
|
|
511
|
+
task.to_yaml
|
|
512
|
+
# => ---
|
|
513
|
+
# => status: :in_progress
|
|
514
|
+
# => priority: :high
|
|
515
|
+
|
|
516
|
+
# All formats parse back to Ruby symbols correctly
|
|
517
|
+
Task.from_xml(task.to_xml).status # => :in_progress
|
|
518
|
+
Task.from_json(task.to_json).status # => :in_progress
|
|
519
|
+
Task.from_yaml(task.to_yaml).status # => :in_progress
|
|
520
|
+
----
|
|
521
|
+
====
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
=== Custom types
|
|
525
|
+
|
|
526
|
+
==== General
|
|
527
|
+
|
|
528
|
+
A custom type is a user-defined class that extends the behavior of built-in
|
|
529
|
+
types. A built-in type is one that is provided by Lutaml::Model, such as
|
|
530
|
+
`:string`, `:integer`, or `:date`.
|
|
531
|
+
|
|
532
|
+
==== Understanding types and models
|
|
533
|
+
|
|
534
|
+
Lutaml::Model provides two approaches to define custom data structures:
|
|
535
|
+
|
|
536
|
+
Types::
|
|
537
|
+
Defines primitive values that represent a basic unit of information. A type
|
|
538
|
+
cannot be further decomposed. Inherits from `Lutaml::Model::Type::Value`.
|
|
539
|
+
|
|
540
|
+
Models::
|
|
541
|
+
Defines objects composed of multiple attributes, of which each attribute can be
|
|
542
|
+
a type or a model. Inherits from `Lutaml::Model::Serializable`.
|
|
543
|
+
|
|
544
|
+
The key differences are described in the table below.
|
|
545
|
+
|
|
546
|
+
[cols="1,2,2",options="header"]
|
|
547
|
+
|===
|
|
548
|
+
| Aspect | Types (`Type::Value`) | Models (`Serializable`)
|
|
549
|
+
|
|
550
|
+
h| Purpose
|
|
551
|
+
| Represent single primitive-like values with custom behavior
|
|
552
|
+
| Represent complex objects with multiple attributes and relationships
|
|
553
|
+
|
|
554
|
+
h| Storage
|
|
555
|
+
| Contains a single `value` attribute
|
|
556
|
+
| Contains multiple attributes defined via `attribute` declarations
|
|
557
|
+
|
|
558
|
+
h| Use cases
|
|
559
|
+
| Value transformation, validation, format-specific serialization of primitives
|
|
560
|
+
| Complex nested data structures, objects with multiple properties
|
|
561
|
+
|
|
562
|
+
h| Required methods
|
|
563
|
+
| `self.cast(value)`, `self.serialize(value)`
|
|
564
|
+
| None (provided by framework)
|
|
565
|
+
|
|
566
|
+
h| Inheritance
|
|
567
|
+
| `< Lutaml::Model::Type::Value` (or built-in types like `Type::String`)
|
|
568
|
+
| `< Lutaml::Model::Serializable`
|
|
569
|
+
|
|
570
|
+
h| Registration
|
|
571
|
+
| Can be registered as reusable types via `Lutaml::Model::Type.register`
|
|
572
|
+
| Not registered as types, used directly as classes
|
|
573
|
+
|
|
574
|
+
h| Serialization control
|
|
575
|
+
| Fine-grained control per format via `to_xml`, `to_json`, etc.
|
|
576
|
+
| Controlled via mapping blocks (`xml do`, `json do`, etc.)
|
|
577
|
+
|
|
578
|
+
|===
|
|
579
|
+
|
|
580
|
+
===== Quick reference: Type vs Model
|
|
581
|
+
|
|
582
|
+
[source,ruby]
|
|
583
|
+
----
|
|
584
|
+
# ✅ CUSTOM TYPE - for single values with special behavior
|
|
585
|
+
class PostCode < Lutaml::Model::Type::String
|
|
586
|
+
def self.cast(value)
|
|
587
|
+
value.to_s.upcase.gsub(/\s/, '') # Normalize: remove spaces, uppercase
|
|
588
|
+
end
|
|
589
|
+
end
|
|
590
|
+
|
|
591
|
+
# ✅ MODEL - for complex objects with multiple attributes
|
|
592
|
+
class Address < Lutaml::Model::Serializable
|
|
593
|
+
attribute :street, :string
|
|
594
|
+
attribute :city, :string
|
|
595
|
+
attribute :postal_code, PostCode # Uses the custom type above
|
|
596
|
+
end
|
|
597
|
+
|
|
598
|
+
# Usage in a model
|
|
599
|
+
class Person < Lutaml::Model::Serializable
|
|
600
|
+
attribute :name, :string # Built-in type
|
|
601
|
+
attribute :postal_code, PostCode # Custom type (single value)
|
|
602
|
+
attribute :address, Address # Serializable object (multiple attributes)
|
|
603
|
+
end
|
|
604
|
+
----
|
|
605
|
+
|
|
606
|
+
==== When to use custom types and models
|
|
607
|
+
|
|
608
|
+
Use Custom Types when:
|
|
609
|
+
|
|
610
|
+
* You need to transform or validate a single primitive value
|
|
611
|
+
* You want consistent behavior across multiple attributes of the same type
|
|
612
|
+
* You need format-specific serialization of primitive data
|
|
613
|
+
* You're creating reusable value types (like currency, phone numbers, postcodes)
|
|
614
|
+
* The data represents a single conceptual value, even if complex internally
|
|
615
|
+
|
|
616
|
+
Use Models when:
|
|
617
|
+
|
|
618
|
+
* You need to model objects with multiple attributes
|
|
619
|
+
* You want to define relationships between objects
|
|
620
|
+
* You need complex nested structures
|
|
621
|
+
* The data represents a distinct entity or concept with multiple properties
|
|
622
|
+
* You need different serialization mappings for the same object structure
|
|
623
|
+
|
|
624
|
+
==== Creating custom types
|
|
625
|
+
|
|
626
|
+
A custom class can be used as an attribute type. The custom class must inherit
|
|
627
|
+
from `Lutaml::Model::Type::Value` or a class that inherits from it.
|
|
628
|
+
|
|
629
|
+
A class inheriting from the `Value` class carries the attribute `value` which
|
|
630
|
+
stores the one-and-only "true" value that is independent of serialization
|
|
631
|
+
formats.
|
|
632
|
+
|
|
633
|
+
The minimum requirement for a custom class is to implement the following
|
|
634
|
+
methods:
|
|
635
|
+
|
|
636
|
+
`self.cast(value)`:: Assignment of an external value to the `Value` class to be
|
|
637
|
+
set as `value`. Casts the value to the custom type.
|
|
638
|
+
|
|
639
|
+
`self.serialize(value)`:: Serializes the custom type to an object (e.g. a
|
|
640
|
+
string). Takes the internal `value` and converts it into an output suitable for
|
|
641
|
+
serialization.
|
|
642
|
+
|
|
643
|
+
.Using a custom value type to normalize a postcode with minimal methods
|
|
644
|
+
[example]
|
|
645
|
+
====
|
|
646
|
+
[source,ruby]
|
|
647
|
+
----
|
|
648
|
+
class FiveDigitPostCode < Lutaml::Model::Type::String
|
|
649
|
+
def self.cast(value)
|
|
650
|
+
value = value.to_s if value.is_a?(Integer)
|
|
651
|
+
|
|
652
|
+
unless value.is_a?(::String)
|
|
653
|
+
raise Lutaml::Model::TypeError, "Invalid value for type 'FiveDigitPostCode'"
|
|
654
|
+
end
|
|
655
|
+
|
|
656
|
+
# Pad zeros to the left
|
|
657
|
+
value.rjust(5, '0')
|
|
658
|
+
end
|
|
659
|
+
|
|
660
|
+
def self.serialize(value)
|
|
661
|
+
value
|
|
662
|
+
end
|
|
663
|
+
end
|
|
664
|
+
|
|
665
|
+
class Studio < Lutaml::Model::Serializable
|
|
666
|
+
attribute :postcode, FiveDigitPostCode
|
|
667
|
+
end
|
|
668
|
+
----
|
|
669
|
+
====
|
|
670
|
+
|
|
671
|
+
==== Practical examples: Type vs Model
|
|
672
|
+
|
|
673
|
+
.Custom Type for currency values
|
|
674
|
+
[example]
|
|
675
|
+
====
|
|
676
|
+
Use a custom type when you need to handle currency with consistent formatting
|
|
677
|
+
and validation:
|
|
678
|
+
|
|
679
|
+
[source,ruby]
|
|
680
|
+
----
|
|
681
|
+
# Custom Type - represents a single currency value
|
|
682
|
+
class Currency < Lutaml::Model::Type::Value
|
|
683
|
+
def self.cast(value)
|
|
684
|
+
case value
|
|
685
|
+
when String
|
|
686
|
+
# Remove currency symbols and convert to float
|
|
687
|
+
cleaned = value.gsub(/[$,]/, '')
|
|
688
|
+
Float(cleaned)
|
|
689
|
+
when Numeric
|
|
690
|
+
value.to_f
|
|
691
|
+
else
|
|
692
|
+
raise Lutaml::Model::TypeError, "Invalid currency value: #{value}"
|
|
693
|
+
end
|
|
694
|
+
end
|
|
695
|
+
|
|
696
|
+
def self.serialize(value)
|
|
697
|
+
sprintf("%.2f", value)
|
|
698
|
+
end
|
|
699
|
+
|
|
700
|
+
# Format-specific serialization
|
|
701
|
+
def to_xml
|
|
702
|
+
"$#{sprintf('%.2f', value)}"
|
|
703
|
+
end
|
|
704
|
+
|
|
705
|
+
def to_json(*_args)
|
|
706
|
+
value # JSON uses numbers
|
|
707
|
+
end
|
|
708
|
+
end
|
|
709
|
+
|
|
710
|
+
class Product < Lutaml::Model::Serializable
|
|
711
|
+
attribute :name, :string
|
|
712
|
+
attribute :price, Currency # Reusable custom type
|
|
713
|
+
attribute :wholesale_price, Currency # Same type, consistent behavior
|
|
714
|
+
end
|
|
715
|
+
----
|
|
716
|
+
====
|
|
717
|
+
|
|
718
|
+
.Serializable object for complex data
|
|
719
|
+
[example]
|
|
720
|
+
====
|
|
721
|
+
Use a Serializable object when you need multiple related attributes:
|
|
722
|
+
|
|
723
|
+
[source,ruby]
|
|
724
|
+
----
|
|
725
|
+
# Serializable object - represents a complex address with multiple attributes
|
|
726
|
+
class Address < Lutaml::Model::Serializable
|
|
727
|
+
attribute :street, :string
|
|
728
|
+
attribute :city, :string
|
|
729
|
+
attribute :postal_code, :string
|
|
730
|
+
attribute :country, :string
|
|
731
|
+
|
|
732
|
+
# Define how this complex object maps to different formats
|
|
733
|
+
xml do
|
|
734
|
+
root "Address"
|
|
735
|
+
map_element "Street", to: :street
|
|
736
|
+
map_element "City", to: :city
|
|
737
|
+
map_element "PostalCode", to: :postal_code
|
|
738
|
+
map_element "Country", to: :country
|
|
739
|
+
end
|
|
740
|
+
|
|
741
|
+
json do
|
|
742
|
+
map "street", to: :street
|
|
743
|
+
map "city", to: :city
|
|
744
|
+
map "postalCode", to: :postal_code
|
|
745
|
+
map "country", to: :country
|
|
746
|
+
end
|
|
747
|
+
end
|
|
748
|
+
|
|
749
|
+
class Studio < Lutaml::Model::Serializable
|
|
750
|
+
attribute :name, :string
|
|
751
|
+
attribute :address, Address # Complex nested object
|
|
752
|
+
end
|
|
753
|
+
----
|
|
754
|
+
====
|
|
755
|
+
|
|
756
|
+
.When to choose each approach
|
|
757
|
+
[example]
|
|
758
|
+
====
|
|
759
|
+
[source,ruby]
|
|
760
|
+
----
|
|
761
|
+
# GOOD: Custom Type for phone numbers (single conceptual value)
|
|
762
|
+
class PhoneNumber < Lutaml::Model::Type::String
|
|
763
|
+
def self.cast(value)
|
|
764
|
+
# Normalize phone number format
|
|
765
|
+
value.to_s.gsub(/\D/, '') # Remove non-digits
|
|
766
|
+
end
|
|
767
|
+
|
|
768
|
+
def to_xml
|
|
769
|
+
# Format for XML: +1-555-123-4567
|
|
770
|
+
"+1-#{value[0..2]}-#{value[3..5]}-#{value[6..9]}"
|
|
771
|
+
end
|
|
772
|
+
end
|
|
773
|
+
|
|
774
|
+
# GOOD: Serializable for contact info (multiple related attributes)
|
|
775
|
+
class ContactInfo < Lutaml::Model::Serializable
|
|
776
|
+
attribute :email, :string
|
|
777
|
+
attribute :phone, PhoneNumber # Uses custom type
|
|
778
|
+
attribute :preferred_contact_method, :string
|
|
779
|
+
end
|
|
780
|
+
|
|
781
|
+
# BAD: Don't use Serializable for simple values
|
|
782
|
+
class BadPhoneNumber < Lutaml::Model::Serializable
|
|
783
|
+
attribute :number, :string # Overkill for a single value
|
|
784
|
+
end
|
|
785
|
+
|
|
786
|
+
# BAD: Don't use Type for complex structures
|
|
787
|
+
class BadContactInfo < Lutaml::Model::Type::Value
|
|
788
|
+
# This would be difficult to manage and serialize properly
|
|
789
|
+
def self.cast(value)
|
|
790
|
+
# Complex parsing logic for multiple fields... ❌
|
|
791
|
+
end
|
|
792
|
+
end
|
|
793
|
+
----
|
|
794
|
+
====
|
|
795
|
+
|
|
796
|
+
==== Registering custom types
|
|
797
|
+
|
|
798
|
+
Custom types can be registered for reuse across your application using symbols:
|
|
799
|
+
|
|
800
|
+
[source,ruby]
|
|
801
|
+
----
|
|
802
|
+
# Register the custom type
|
|
803
|
+
Lutaml::Model::Type.register(:currency, Currency)
|
|
804
|
+
Lutaml::Model::Type.register(:phone, PhoneNumber)
|
|
805
|
+
|
|
806
|
+
# Now you can use symbols instead of class names
|
|
807
|
+
class Product < Lutaml::Model::Serializable
|
|
808
|
+
attribute :name, :string
|
|
809
|
+
attribute :price, :currency # Uses registered Currency type
|
|
810
|
+
attribute :contact_phone, :phone # Uses registered PhoneNumber type
|
|
811
|
+
end
|
|
812
|
+
|
|
813
|
+
# You can also look up registered types
|
|
814
|
+
currency_type = Lutaml::Model::Type.lookup(:currency)
|
|
815
|
+
# => Currency
|
|
816
|
+
----
|
|
817
|
+
|
|
818
|
+
==== Custom types with XSD types
|
|
819
|
+
|
|
820
|
+
Define custom types with XSD type declarations for schema generation:
|
|
821
|
+
|
|
822
|
+
.Custom type with XSD type declaration
|
|
823
|
+
[example]
|
|
824
|
+
====
|
|
825
|
+
[source,ruby]
|
|
826
|
+
----
|
|
827
|
+
class ProductId < Lutaml::Model::Type::String
|
|
828
|
+
xsd_type 'xs:ID' # <1>
|
|
829
|
+
|
|
830
|
+
def self.cast(value)
|
|
831
|
+
id = value.to_s.strip
|
|
832
|
+
unless id.match?(/\A[A-Za-z_][\w.-]*\z/)
|
|
833
|
+
raise Lutaml::Model::TypeError, "Invalid XML ID: #{id}"
|
|
834
|
+
end
|
|
835
|
+
id
|
|
836
|
+
end
|
|
837
|
+
end
|
|
838
|
+
|
|
839
|
+
class Product < Lutaml::Model::Serializable
|
|
840
|
+
attribute :id, ProductId # <2>
|
|
841
|
+
attribute :name, :string
|
|
842
|
+
|
|
843
|
+
xml do
|
|
844
|
+
element 'product'
|
|
845
|
+
map_attribute "id", to: :id
|
|
846
|
+
map_element "name", to: :name
|
|
847
|
+
end
|
|
848
|
+
end
|
|
849
|
+
----
|
|
850
|
+
<1> Declare XSD type for schema generation
|
|
851
|
+
<2> Attribute automatically uses ProductId's xsd_type
|
|
852
|
+
|
|
853
|
+
For comprehensive xsd_type documentation, see link:../value_types#xsd-type-declaration[Value Types - XSD Type Declaration].
|
|
854
|
+
====
|
|
855
|
+
|
|
856
|
+
For comprehensive XSD generation documentation including the three XSD patterns,
|
|
857
|
+
see link:../guides/creating-xsd[Creating XSD Schemas Guide].
|
|
858
|
+
|
|
859
|
+
==== Type casting and validation
|
|
860
|
+
|
|
861
|
+
Custom types automatically handle type casting and can include validation:
|
|
862
|
+
|
|
863
|
+
[source,ruby]
|
|
864
|
+
----
|
|
865
|
+
class TemperatureInCelsius < Lutaml::Model::Type::Integer
|
|
866
|
+
def self.cast(value)
|
|
867
|
+
temp = super(value) # Use parent's casting first
|
|
868
|
+
|
|
869
|
+
# Add validation
|
|
870
|
+
if temp < -273 || temp > 5000
|
|
871
|
+
raise Lutaml::Model::TypeError,
|
|
872
|
+
"Temperature #{temp}°C is outside valid range (-273 to 5000)"
|
|
873
|
+
end
|
|
874
|
+
|
|
875
|
+
temp
|
|
876
|
+
end
|
|
877
|
+
|
|
878
|
+
def to_xml
|
|
879
|
+
"#{value}°C"
|
|
880
|
+
end
|
|
881
|
+
end
|
|
882
|
+
|
|
883
|
+
class KilnSettings < Lutaml::Model::Serializable
|
|
884
|
+
attribute :firing_temperature, TemperatureInCelsius
|
|
885
|
+
end
|
|
886
|
+
|
|
887
|
+
# Usage
|
|
888
|
+
kiln = KilnSettings.new(firing_temperature: "1200") # String gets cast to Integer
|
|
889
|
+
# => #<KilnSettings @firing_temperature=1200>
|
|
890
|
+
|
|
891
|
+
# Invalid values raise errors
|
|
892
|
+
kiln = KilnSettings.new(firing_temperature: "-300")
|
|
893
|
+
# => Lutaml::Model::TypeError: Type Error: Temperature -300°C is outside valid range
|
|
894
|
+
----
|
|
895
|
+
|
|
896
|
+
==== Extending built-in types
|
|
897
|
+
|
|
898
|
+
You can extend existing built-in types to add custom behavior:
|
|
899
|
+
|
|
900
|
+
[source,ruby]
|
|
901
|
+
----
|
|
902
|
+
# Extend String type for email validation
|
|
903
|
+
class EmailAddress < Lutaml::Model::Type::String
|
|
904
|
+
EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-]+(\.[a-z\d\-]+)*\.[a-z]+\z/i
|
|
905
|
+
|
|
906
|
+
def self.cast(value)
|
|
907
|
+
email = super(value) # Use String's casting
|
|
908
|
+
|
|
909
|
+
unless email.match?(EMAIL_REGEX)
|
|
910
|
+
raise Lutaml::Model::TypeError, "Invalid email format: #{email}"
|
|
911
|
+
end
|
|
912
|
+
|
|
913
|
+
email.downcase # Normalize to lowercase
|
|
914
|
+
end
|
|
915
|
+
end
|
|
916
|
+
|
|
917
|
+
# Extend Integer type for ID validation
|
|
918
|
+
class PositiveInteger < Lutaml::Model::Type::Integer
|
|
919
|
+
def self.cast(value)
|
|
920
|
+
num = super(value) # Use Integer's casting
|
|
921
|
+
|
|
922
|
+
if num <= 0
|
|
923
|
+
raise Lutaml::Model::TypeError, "Value must be positive: #{num}"
|
|
924
|
+
end
|
|
925
|
+
|
|
926
|
+
num
|
|
927
|
+
end
|
|
928
|
+
end
|
|
929
|
+
|
|
930
|
+
# Extend Date type for business days only
|
|
931
|
+
class BusinessDate < Lutaml::Model::Type::Date
|
|
932
|
+
def self.cast(value)
|
|
933
|
+
date = super(value) # Use Date's casting
|
|
934
|
+
|
|
935
|
+
if date.saturday? || date.sunday?
|
|
936
|
+
raise Lutaml::Model::TypeError, "Business date cannot be weekend: #{date}"
|
|
937
|
+
end
|
|
938
|
+
|
|
939
|
+
date
|
|
940
|
+
end
|
|
941
|
+
end
|
|
942
|
+
----
|
|
943
|
+
|
|
944
|
+
==== Custom type inheritance hierarchy
|
|
945
|
+
|
|
946
|
+
[source,ruby]
|
|
947
|
+
----
|
|
948
|
+
# Base currency type
|
|
949
|
+
class Currency < Lutaml::Model::Type::Value
|
|
950
|
+
def self.cast(value)
|
|
951
|
+
case value
|
|
952
|
+
when String
|
|
953
|
+
Float(value.gsub(/[^0-9.-]/, ''))
|
|
954
|
+
when Numeric
|
|
955
|
+
value.to_f
|
|
956
|
+
end
|
|
957
|
+
end
|
|
958
|
+
|
|
959
|
+
def self.serialize(value)
|
|
960
|
+
sprintf("%.2f", value)
|
|
961
|
+
end
|
|
962
|
+
end
|
|
963
|
+
|
|
964
|
+
# Specialized currency types
|
|
965
|
+
class USDollar < Currency
|
|
966
|
+
def to_xml
|
|
967
|
+
"$#{sprintf('%.2f', value)}"
|
|
968
|
+
end
|
|
969
|
+
end
|
|
970
|
+
|
|
971
|
+
class Euro < Currency
|
|
972
|
+
def to_xml
|
|
973
|
+
"€#{sprintf('%.2f', value)}"
|
|
974
|
+
end
|
|
975
|
+
end
|
|
976
|
+
|
|
977
|
+
class JPYen < Currency
|
|
978
|
+
def self.serialize(value)
|
|
979
|
+
value.to_i.to_s # No decimal places for Yen
|
|
980
|
+
end
|
|
981
|
+
|
|
982
|
+
def to_xml
|
|
983
|
+
"¥#{value.to_i}"
|
|
984
|
+
end
|
|
985
|
+
end
|
|
986
|
+
|
|
987
|
+
# Register specialized types
|
|
988
|
+
Lutaml::Model::Type.register(:usd, USDollar)
|
|
989
|
+
Lutaml::Model::Type.register(:eur, Euro)
|
|
990
|
+
Lutaml::Model::Type.register(:jpy, JPYen)
|
|
991
|
+
|
|
992
|
+
class InternationalProduct < Lutaml::Model::Serializable
|
|
993
|
+
attribute :name, :string
|
|
994
|
+
attribute :price_usd, :usd
|
|
995
|
+
attribute :price_eur, :eur
|
|
996
|
+
attribute :price_jpy, :jpy
|
|
997
|
+
end
|
|
998
|
+
----
|
|
999
|
+
|
|
1000
|
+
==== Serialization of custom types
|
|
1001
|
+
|
|
1002
|
+
The serialization of custom types can be made to differ per serialization format
|
|
1003
|
+
by defining methods in the class definitions. This requires additional methods
|
|
1004
|
+
than the minimum required for a custom class (i.e. `self.cast(value)` and
|
|
1005
|
+
`self.serialize(value)`).
|
|
1006
|
+
|
|
1007
|
+
This is useful in the case when different serialization formats of the same
|
|
1008
|
+
model expect differentiated value representations.
|
|
1009
|
+
|
|
1010
|
+
The methods that can be overridden are named:
|
|
1011
|
+
|
|
1012
|
+
`self.from_{format}(serialized_string)`:: Deserializes a string of the
|
|
1013
|
+
serialization format and returns the object to be assigned to the `Value` class'
|
|
1014
|
+
`value`.
|
|
1015
|
+
|
|
1016
|
+
`to_{format}`:: Serializes the object to a string of the serialization format.
|
|
1017
|
+
|
|
1018
|
+
The `{format}` part of the method name is the serialization format in lowercase
|
|
1019
|
+
(e.g. `hash`, `json`, `xml`, `yaml`, `toml`).
|
|
1020
|
+
|
|
1021
|
+
.Using custom serialization methods to handle a high-precision date-time type
|
|
1022
|
+
[example]
|
|
1023
|
+
====
|
|
1024
|
+
Suppose in XML we handle a high-precision date-time type that requires custom
|
|
1025
|
+
serialization methods, but other formats such as JSON do not support this type.
|
|
1026
|
+
|
|
1027
|
+
For instance, in the normal DateTime class, the serialized string is
|
|
1028
|
+
`2012-04-07T01:51:37+02:00`, and the high-precision format is
|
|
1029
|
+
`2012-04-07T01:51:37.112+02:00`.
|
|
1030
|
+
|
|
1031
|
+
We create `HighPrecisionDateTime` class is a custom class that inherits
|
|
1032
|
+
from `Lutaml::Model::Type::DateTime`.
|
|
1033
|
+
|
|
1034
|
+
[source,ruby]
|
|
1035
|
+
----
|
|
1036
|
+
class HighPrecisionDateTime < Lutaml::Model::Type::DateTime
|
|
1037
|
+
# Inherit the `self.cast(value)` and `self.serialize(value)` methods
|
|
1038
|
+
# from Lutaml::Model::Type::DateTime
|
|
1039
|
+
|
|
1040
|
+
# The format looks like this `2012-04-07T01:51:37.112+02:00`
|
|
1041
|
+
def self.from_xml(xml_string)
|
|
1042
|
+
::DateTime.parse(xml_string)
|
|
1043
|
+
end
|
|
1044
|
+
|
|
1045
|
+
# The %L adds milliseconds to the time
|
|
1046
|
+
def to_xml
|
|
1047
|
+
value.strftime('%Y-%m-%dT%H:%M:%S.%L%:z')
|
|
1048
|
+
end
|
|
1049
|
+
end
|
|
1050
|
+
|
|
1051
|
+
class Ceramic < Lutaml::Model::Serializable
|
|
1052
|
+
attribute :kiln_firing_time, HighPrecisionDateTime
|
|
1053
|
+
xml do
|
|
1054
|
+
root 'ceramic'
|
|
1055
|
+
map_element 'kilnFiringTime', to: :kiln_firing_time
|
|
1056
|
+
# ...
|
|
1057
|
+
end
|
|
1058
|
+
end
|
|
1059
|
+
----
|
|
1060
|
+
|
|
1061
|
+
An XML snippet with the high-precision date-time type:
|
|
1062
|
+
|
|
1063
|
+
[source,xml]
|
|
1064
|
+
----
|
|
1065
|
+
<ceramic>
|
|
1066
|
+
<kilnFiringTime>2012-04-07T01:51:37.112+02:00</kilnFiringTime>
|
|
1067
|
+
<!-- ... -->
|
|
1068
|
+
</ceramic>
|
|
1069
|
+
----
|
|
1070
|
+
|
|
1071
|
+
When loading the XML snippet, the `HighPrecisionDateTime` class will be used to
|
|
1072
|
+
parse the high-precision date-time string.
|
|
1073
|
+
|
|
1074
|
+
However, when serializing to JSON, the value will have the high-precision
|
|
1075
|
+
part lost due to the inability of JSON to handle high-precision date-time.
|
|
1076
|
+
|
|
1077
|
+
[source,ruby]
|
|
1078
|
+
----
|
|
1079
|
+
> c = Ceramic.from_xml(xml)
|
|
1080
|
+
> #<Ceramic:0x0000000104ac7240 @kiln_firing_time=#<HighPrecisionDateTime:0x0000000104ac7240 @value=2012-04-07 01:51:37.112000000 +0200>>
|
|
1081
|
+
> c.to_json
|
|
1082
|
+
> # {"kilnFiringTime":"2012-04-07T01:51:37+02:00"}
|
|
1083
|
+
----
|
|
1084
|
+
====
|
|
1085
|
+
|
|
1086
|
+
==== Best practices in using custom types
|
|
1087
|
+
|
|
1088
|
+
When implementing custom types:
|
|
1089
|
+
|
|
1090
|
+
. Ensure you have a clear use case: Decide between using a custom type or a
|
|
1091
|
+
model based on whether you need to represent a single value or a complex
|
|
1092
|
+
structure.
|
|
1093
|
+
|
|
1094
|
+
. Inherit appropriately: Use `Lutaml::Model::Type::Value` for completely new
|
|
1095
|
+
types, or extend built-in types like `Type::String`, `Type::Integer` for
|
|
1096
|
+
specialized behavior.
|
|
1097
|
+
|
|
1098
|
+
. Implement required methods: Always implement `self.cast(value)` and
|
|
1099
|
+
`self.serialize(value)` at minimum.
|
|
1100
|
+
|
|
1101
|
+
. Add validation: Use the `cast` method to validate and normalize input values.
|
|
1102
|
+
|
|
1103
|
+
. Handle format-specific serialization: Override `to_xml`, `to_json`, etc.
|
|
1104
|
+
methods when different formats need different representations.
|
|
1105
|
+
|
|
1106
|
+
. Register reusable types: Use `Lutaml::Model::Type.register(:symbol, YourType)`
|
|
1107
|
+
for types you'll use across multiple models.
|
|
1108
|
+
|
|
1109
|
+
. Leverage inheritance: Create type hierarchies for related but specialized
|
|
1110
|
+
types.
|
|
1111
|
+
|
|
1112
|
+
. Test thoroughly: Custom types affect both parsing and serialization, so test
|
|
1113
|
+
with all formats you plan to use.
|
|
1114
|
+
|
|
1115
|
+
[[xsd-type-declaration]]
|
|
1116
|
+
== XSD type declaration
|
|
1117
|
+
|
|
1118
|
+
=== Purpose
|
|
1119
|
+
|
|
1120
|
+
Custom Value types can declare their XSD type representation for schema generation. This enables proper XSD schemas when using [`Lutaml::Model::Schema.to_xsd`](lib/lutaml/model/schema.rb).
|
|
1121
|
+
|
|
1122
|
+
When a custom type declares its `xsd_type`, that type information flows through to:
|
|
1123
|
+
|
|
1124
|
+
* XSD schema generation via [`Schema.to_xml`](lib/lutaml/model/schema/xsd_schema.rb)
|
|
1125
|
+
* Type references in element and attribute declarations
|
|
1126
|
+
* Proper W3C XML Schema 1.1 compliance
|
|
1127
|
+
|
|
1128
|
+
=== The xsd_type class method
|
|
1129
|
+
|
|
1130
|
+
Use the `xsd_type` class method to declare the XSD type:
|
|
1131
|
+
|
|
1132
|
+
.Declaring XSD type for a custom Type class
|
|
1133
|
+
[example]
|
|
1134
|
+
====
|
|
1135
|
+
[source,ruby]
|
|
1136
|
+
----
|
|
1137
|
+
class EmailType < Lutaml::Model::Type::String
|
|
1138
|
+
xsd_type 'xs:normalizedString' # <1>
|
|
1139
|
+
|
|
1140
|
+
def self.cast(value)
|
|
1141
|
+
value.to_s.strip.gsub(/\s+/, ' ')
|
|
1142
|
+
end
|
|
1143
|
+
end
|
|
1144
|
+
----
|
|
1145
|
+
<1> Declares this type's XSD representation
|
|
1146
|
+
|
|
1147
|
+
When generating XSD schema, attributes using `EmailType` will have `type="xs:normalizedString"`.
|
|
1148
|
+
====
|
|
1149
|
+
|
|
1150
|
+
=== Relationship to xsi:type in XML instances
|
|
1151
|
+
|
|
1152
|
+
The `xsd_type` declaration serves two purposes:
|
|
1153
|
+
|
|
1154
|
+
1. **Schema generation**: Defines the type in generated XSD schemas
|
|
1155
|
+
2. **Instance validation**: Enables `xsi:type` references in XML instances
|
|
1156
|
+
|
|
1157
|
+
.Understanding xsd_type vs xsi:type
|
|
1158
|
+
[example]
|
|
1159
|
+
====
|
|
1160
|
+
[source,ruby]
|
|
1161
|
+
----
|
|
1162
|
+
class SizeType < Lutaml::Model::Type::String
|
|
1163
|
+
xsd_type 'xs:token' # <1>
|
|
1164
|
+
end
|
|
1165
|
+
|
|
1166
|
+
class Product < Lutaml::Model::Serializable
|
|
1167
|
+
attribute :size, SizeType
|
|
1168
|
+
|
|
1169
|
+
xml do
|
|
1170
|
+
element 'product'
|
|
1171
|
+
map_element "size", to: :size
|
|
1172
|
+
end
|
|
1173
|
+
end
|
|
1174
|
+
----
|
|
1175
|
+
<1> Declares this type uses `xs:token` in schema definition
|
|
1176
|
+
|
|
1177
|
+
**Generated XSD Schema:**
|
|
1178
|
+
[source,xml]
|
|
1179
|
+
----
|
|
1180
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
1181
|
+
<xs:element name="product">
|
|
1182
|
+
<xs:complexType>
|
|
1183
|
+
<xs:sequence>
|
|
1184
|
+
<xs:element name="size" type="xs:token"/> <!--1-->
|
|
1185
|
+
</xs:sequence>
|
|
1186
|
+
</xs:complexType>
|
|
1187
|
+
</xs:element>
|
|
1188
|
+
</xs:schema>
|
|
1189
|
+
----
|
|
1190
|
+
<1> The `type="xs:token"` comes from `SizeType.xsd_type`
|
|
1191
|
+
|
|
1192
|
+
**XML Instance Example:**
|
|
1193
|
+
[source,xml]
|
|
1194
|
+
----
|
|
1195
|
+
<product>
|
|
1196
|
+
<size>large</size> <!--1-->
|
|
1197
|
+
<size xsi:type="xs:string">1</size> <!--2-->
|
|
1198
|
+
</product>
|
|
1199
|
+
----
|
|
1200
|
+
<1> Normal instance conforming to declared `xs:token` type
|
|
1201
|
+
<2> Instance explicitly specifying type via `xsi:type` attribute
|
|
1202
|
+
|
|
1203
|
+
The `xsi:type` attribute in XML instances allows runtime type specification, referencing type names declared in the schema.
|
|
1204
|
+
====
|
|
1205
|
+
|
|
1206
|
+
.Custom type names and xsi:type
|
|
1207
|
+
[example]
|
|
1208
|
+
====
|
|
1209
|
+
[source,ruby]
|
|
1210
|
+
----
|
|
1211
|
+
class SizesListType < Lutaml::Model::Type::Value
|
|
1212
|
+
xsd_type 'sizes' # <1>
|
|
1213
|
+
|
|
1214
|
+
def self.cast(value)
|
|
1215
|
+
# Parse space-separated decimal list
|
|
1216
|
+
value.to_s.split.map(&:to_f)
|
|
1217
|
+
end
|
|
1218
|
+
|
|
1219
|
+
def serialize(value)
|
|
1220
|
+
value.join(' ')
|
|
1221
|
+
end
|
|
1222
|
+
end
|
|
1223
|
+
----
|
|
1224
|
+
<1> Declares custom type name 'sizes'
|
|
1225
|
+
|
|
1226
|
+
**Generated XSD Schema:**
|
|
1227
|
+
[source,xml]
|
|
1228
|
+
----
|
|
1229
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
1230
|
+
<xs:simpleType name='sizes'> <!--1-->
|
|
1231
|
+
<xs:list itemType='xs:decimal'/>
|
|
1232
|
+
</xs:simpleType>
|
|
1233
|
+
</xs:schema>
|
|
1234
|
+
----
|
|
1235
|
+
<1> Custom type definition from `xsd_type 'sizes'`
|
|
1236
|
+
|
|
1237
|
+
**XML Instance Example:**
|
|
1238
|
+
[source,xml]
|
|
1239
|
+
----
|
|
1240
|
+
<cerealSizes xsi:type='sizes'> 8 10.5 12 </cerealSizes> <!--1-->
|
|
1241
|
+
----
|
|
1242
|
+
<1> Instance uses `xsi:type='sizes'` to reference the custom type
|
|
1243
|
+
====
|
|
1244
|
+
|
|
1245
|
+
=== XSD type inheritance
|
|
1246
|
+
|
|
1247
|
+
Child types inherit `xsd_type` from their parent Type class:
|
|
1248
|
+
|
|
1249
|
+
.XSD type inheritance in a type hierarchy
|
|
1250
|
+
[example]
|
|
1251
|
+
====
|
|
1252
|
+
[source,ruby]
|
|
1253
|
+
----
|
|
1254
|
+
class NormalizedString < Lutaml::Model::Type::String
|
|
1255
|
+
xsd_type 'xs:normalizedString'
|
|
1256
|
+
end
|
|
1257
|
+
|
|
1258
|
+
class Token < NormalizedString
|
|
1259
|
+
xsd_type 'xs:token' # <1>
|
|
1260
|
+
|
|
1261
|
+
def self.cast(value)
|
|
1262
|
+
super.strip.gsub(/\s+/, ' ')
|
|
1263
|
+
end
|
|
1264
|
+
end
|
|
1265
|
+
|
|
1266
|
+
class Language < Token
|
|
1267
|
+
xsd_type 'xs:language' # <2>
|
|
1268
|
+
|
|
1269
|
+
def self.cast(value)
|
|
1270
|
+
super.downcase
|
|
1271
|
+
end
|
|
1272
|
+
end
|
|
1273
|
+
----
|
|
1274
|
+
<1> Token overrides parent's `xs:normalizedString`
|
|
1275
|
+
<2> Language overrides parent's `xs:token`
|
|
1276
|
+
|
|
1277
|
+
Each child can override the parent's `xsd_type` or inherit it.
|
|
1278
|
+
====
|
|
1279
|
+
|
|
1280
|
+
=== Default XSD types
|
|
1281
|
+
|
|
1282
|
+
All built-in types have default XSD type mappings:
|
|
1283
|
+
|
|
1284
|
+
.Default XSD type mappings for built-in Type classes
|
|
1285
|
+
[cols="1,1"]
|
|
1286
|
+
|===
|
|
1287
|
+
| Lutaml Type | Default XSD Type
|
|
1288
|
+
|
|
1289
|
+
| [`Type::String`](lib/lutaml/model/type/string.rb)
|
|
1290
|
+
| `xs:string`
|
|
1291
|
+
|
|
1292
|
+
| [`Type::Integer`](lib/lutaml/model/type/integer.rb)
|
|
1293
|
+
| `xs:integer`
|
|
1294
|
+
|
|
1295
|
+
| [`Type::Float`](lib/lutaml/model/type/float.rb)
|
|
1296
|
+
| `xs:float`
|
|
1297
|
+
|
|
1298
|
+
| [`Type::Boolean`](lib/lutaml/model/type/boolean.rb)
|
|
1299
|
+
| `xs:boolean`
|
|
1300
|
+
|
|
1301
|
+
| [`Type::Date`](lib/lutaml/model/type/date.rb)
|
|
1302
|
+
| `xs:date`
|
|
1303
|
+
|
|
1304
|
+
| [`Type::DateTime`](lib/lutaml/model/type/date_time.rb)
|
|
1305
|
+
| `xs:dateTime`
|
|
1306
|
+
|
|
1307
|
+
| [`Type::Time`](lib/lutaml/model/type/time.rb)
|
|
1308
|
+
| `xs:time`
|
|
1309
|
+
|
|
1310
|
+
| [`Type::Duration`](lib/lutaml/model/type/duration.rb)
|
|
1311
|
+
| `xs:duration`
|
|
1312
|
+
|
|
1313
|
+
| [`Type::Decimal`](lib/lutaml/model/type/decimal.rb)
|
|
1314
|
+
| `xs:decimal`
|
|
1315
|
+
|
|
1316
|
+
| [`Type::Uri`](lib/lutaml/model/type/uri.rb)
|
|
1317
|
+
| `xs:anyURI`
|
|
1318
|
+
|
|
1319
|
+
| [`Type::QName`](lib/lutaml/model/type/qname.rb)
|
|
1320
|
+
| `xs:QName`
|
|
1321
|
+
|
|
1322
|
+
| [`Type::Base64Binary`](lib/lutaml/model/type/base64_binary.rb)
|
|
1323
|
+
| `xs:base64Binary`
|
|
1324
|
+
|
|
1325
|
+
| [`Type::HexBinary`](lib/lutaml/model/type/hex_binary.rb)
|
|
1326
|
+
| `xs:hexBinary`
|
|
1327
|
+
|
|
1328
|
+
| [`Type::Hash`](lib/lutaml/model/type/hash.rb)
|
|
1329
|
+
| `xs:anyType`
|
|
1330
|
+
|
|
1331
|
+
| [`Type::Symbol`](lib/lutaml/model/type/symbol.rb)
|
|
1332
|
+
| `xs:string`
|
|
1333
|
+
|===
|
|
1334
|
+
|
|
1335
|
+
Custom types inherit these defaults and can override as needed.
|
|
1336
|
+
|
|
1337
|
+
=== Common XSD type examples
|
|
1338
|
+
|
|
1339
|
+
==== ID type
|
|
1340
|
+
|
|
1341
|
+
XML IDs must follow NCName rules:
|
|
1342
|
+
|
|
1343
|
+
.Creating an ID type with XSD type declaration
|
|
1344
|
+
[example]
|
|
1345
|
+
====
|
|
1346
|
+
[source,ruby]
|
|
1347
|
+
----
|
|
1348
|
+
class IdType < Lutaml::Model::Type::String
|
|
1349
|
+
xsd_type 'xs:ID'
|
|
1350
|
+
|
|
1351
|
+
def self.cast(value)
|
|
1352
|
+
id = super.strip
|
|
1353
|
+
unless id.match?(/\A[A-Za-z_][\w.-]*\z/)
|
|
1354
|
+
raise Lutaml::Model::TypeError, "Invalid XML ID: #{id}"
|
|
1355
|
+
end
|
|
1356
|
+
id
|
|
1357
|
+
end
|
|
1358
|
+
end
|
|
1359
|
+
|
|
1360
|
+
class Product < Lutaml::Model::Serializable
|
|
1361
|
+
attribute :id, IdType
|
|
1362
|
+
|
|
1363
|
+
xml do
|
|
1364
|
+
element 'product'
|
|
1365
|
+
map_attribute "id", to: :id
|
|
1366
|
+
end
|
|
1367
|
+
end
|
|
1368
|
+
----
|
|
1369
|
+
|
|
1370
|
+
Generated XSD will include `<xs:attribute name="id" type="xs:ID"/>`.
|
|
1371
|
+
====
|
|
1372
|
+
|
|
1373
|
+
==== Token type
|
|
1374
|
+
|
|
1375
|
+
Tokens normalize whitespace:
|
|
1376
|
+
|
|
1377
|
+
.Creating a Token type with XSD type declaration
|
|
1378
|
+
[example]
|
|
1379
|
+
====
|
|
1380
|
+
[source,ruby]
|
|
1381
|
+
----
|
|
1382
|
+
class TokenType < Lutaml::Model::Type::String
|
|
1383
|
+
xsd_type 'xs:token'
|
|
1384
|
+
|
|
1385
|
+
def self.cast(value)
|
|
1386
|
+
super.strip.gsub(/\s+/, ' ')
|
|
1387
|
+
end
|
|
1388
|
+
end
|
|
1389
|
+
|
|
1390
|
+
class Document < Lutaml::Model::Serializable
|
|
1391
|
+
attribute :category, TokenType
|
|
1392
|
+
|
|
1393
|
+
xml do
|
|
1394
|
+
element 'document'
|
|
1395
|
+
map_element "category", to: :category
|
|
1396
|
+
end
|
|
1397
|
+
end
|
|
1398
|
+
----
|
|
1399
|
+
====
|
|
1400
|
+
|
|
1401
|
+
==== Language code type
|
|
1402
|
+
|
|
1403
|
+
Language codes follow RFC 5646:
|
|
1404
|
+
|
|
1405
|
+
.Creating a Language type with XSD type declaration
|
|
1406
|
+
[example]
|
|
1407
|
+
====
|
|
1408
|
+
[source,ruby]
|
|
1409
|
+
----
|
|
1410
|
+
class LanguageType < Lutaml::Model::Type::String
|
|
1411
|
+
xsd_type 'xs:language'
|
|
1412
|
+
|
|
1413
|
+
def self.cast(value)
|
|
1414
|
+
lang = super.downcase
|
|
1415
|
+
unless lang.match?(/\A[a-z]{2,3}(-[A-Za-z0-9]+)*\z/i)
|
|
1416
|
+
raise Lutaml::Model::TypeError, "Invalid language code: #{lang}"
|
|
1417
|
+
end
|
|
1418
|
+
lang
|
|
1419
|
+
end
|
|
1420
|
+
end
|
|
1421
|
+
|
|
1422
|
+
class Metadata < Lutaml::Model::Serializable
|
|
1423
|
+
attribute :language, LanguageType
|
|
1424
|
+
|
|
1425
|
+
xml do
|
|
1426
|
+
element 'metadata'
|
|
1427
|
+
map_attribute "lang", to: :language
|
|
1428
|
+
end
|
|
1429
|
+
end
|
|
1430
|
+
----
|
|
1431
|
+
====
|
|
1432
|
+
|
|
1433
|
+
=== Element-level override
|
|
1434
|
+
|
|
1435
|
+
You can override a Type's `xsd_type` for specific elements in the mapping:
|
|
1436
|
+
|
|
1437
|
+
.Overriding XSD type at the element level
|
|
1438
|
+
[example]
|
|
1439
|
+
====
|
|
1440
|
+
[source,ruby]
|
|
1441
|
+
----
|
|
1442
|
+
class MyType < Lutaml::Model::Type::String
|
|
1443
|
+
xsd_type 'xs:normalizedString'
|
|
1444
|
+
end
|
|
1445
|
+
|
|
1446
|
+
class Model < Lutaml::Model::Serializable
|
|
1447
|
+
attribute :field1, MyType
|
|
1448
|
+
attribute :field2, MyType
|
|
1449
|
+
|
|
1450
|
+
xml do
|
|
1451
|
+
element 'model'
|
|
1452
|
+
map_element "field1", to: :field1, xsd_type: 'xs:token' # <1>
|
|
1453
|
+
map_element "field2", to: :field2 # <2>
|
|
1454
|
+
end
|
|
1455
|
+
end
|
|
1456
|
+
----
|
|
1457
|
+
<1> Overrides `MyType`'s `xs:normalizedString` with `xs:token`
|
|
1458
|
+
<2> Uses `MyType`'s default `xs:normalizedString`
|
|
1459
|
+
====
|
|
1460
|
+
|
|
1461
|
+
=== Precedence rules
|
|
1462
|
+
|
|
1463
|
+
When determining XSD type for schema generation:
|
|
1464
|
+
|
|
1465
|
+
1. **Element-level** `xsd_type` in mapping (highest priority)
|
|
1466
|
+
2. **Type-level** `xsd_type` from Type class
|
|
1467
|
+
3. **default_xsd_type** from Type class (fallback)
|
|
1468
|
+
|
|
1469
|
+
This allows flexible type reuse with context-specific overrides.
|
|
1470
|
+
|
|
1471
|
+
.XSD type precedence example
|
|
1472
|
+
[example]
|
|
1473
|
+
====
|
|
1474
|
+
[source,ruby]
|
|
1475
|
+
----
|
|
1476
|
+
class CustomType < Lutaml::Model::Type::String
|
|
1477
|
+
xsd_type 'xs:normalizedString' # <1>
|
|
1478
|
+
end
|
|
1479
|
+
|
|
1480
|
+
class Model < Lutaml::Model::Serializable
|
|
1481
|
+
attribute :field1, CustomType
|
|
1482
|
+
attribute :field2, CustomType
|
|
1483
|
+
|
|
1484
|
+
xml do
|
|
1485
|
+
element 'model'
|
|
1486
|
+
map_element "field1", to: :field1, xsd_type: 'xs:ID' # <2>
|
|
1487
|
+
map_element "field2", to: :field2 # <3>
|
|
1488
|
+
end
|
|
1489
|
+
end
|
|
1490
|
+
----
|
|
1491
|
+
<1> Type-level declaration
|
|
1492
|
+
<2> Element-level override (highest priority)
|
|
1493
|
+
<3> Inherits Type-level declaration
|
|
1494
|
+
|
|
1495
|
+
Generated XSD:
|
|
1496
|
+
|
|
1497
|
+
[source,xml]
|
|
1498
|
+
----
|
|
1499
|
+
<xs:element name="model">
|
|
1500
|
+
<xs:complexType>
|
|
1501
|
+
<xs:sequence>
|
|
1502
|
+
<xs:element name="field1" type="xs:ID"/> <!-- Element-level override -->
|
|
1503
|
+
<xs:element name="field2" type="xs:normalizedString"/> <!-- Type-level -->
|
|
1504
|
+
</xs:sequence>
|
|
1505
|
+
</xs:complexType>
|
|
1506
|
+
</xs:element>
|
|
1507
|
+
----
|
|
1508
|
+
====
|
|
1509
|
+
|
|
1510
|
+
=== See also
|
|
1511
|
+
|
|
1512
|
+
* link:../references/xsd-type-architecture[XSD Type Architecture] - Complete architecture reference
|
|
1513
|
+
* link:../migrations/xsd-type-migration[XSD Type Migration Guide] - Migrating from deprecated patterns
|
|
1514
|
+
* link:../guides/schema-generation[Schema Generation] - Generating XSD schemas
|