@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix linkml: <https://w3id.org/linkml/> .
@prefix mt: <https://ce-rise-models.codeberg.page/metrological-traceability/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<https://ce-rise-models.codeberg.page/metrological-traceability/.owl.ttl> a owl:Ontology ;
    rdfs:label "metrological-traceability" ;
    dcterms:license "CC BY-NC 4.0" ;
    dcterms:title "CE-RISE Metrological Traceability Data Model" ;
    pav:version "0.0.1" ;
    skos:definition """Cross-cutting utility data model for documenting the traceability basis of measured, calculated, method-defined, and boundary-defined values in CE-RISE Digital Product Passport and Digital Material Passport data models.
""" .

mt:MetrologicalTraceability a owl:Class ;
    rdfs:label "MetrologicalTraceability" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:allValuesFrom mt:BoundaryDefinition ;
            owl:onProperty mt:boundary_definitions ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurement_procedures ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_entities ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityStatement ;
            owl:onProperty mt:traceability_statements ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:ReferenceMaterial ;
            owl:onProperty mt:reference_materials ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurement_standards ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:CompetenceRecord ;
            owl:onProperty mt:competence_records ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:ComparabilityAssessment ;
            owl:onProperty mt:comparability_assessments ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_chains ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:MeasurementStandard ;
            owl:onProperty mt:measurement_standards ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:ReferenceEntity ;
            owl:onProperty mt:reference_entities ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_records ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:MeasurementProcedure ;
            owl:onProperty mt:measurement_procedures ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:competence_records ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_materials ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_statements ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_bases ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:boundary_definitions ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:comparability_assessments ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityBasis ;
            owl:onProperty mt:traceability_bases ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:CalibrationRecord ;
            owl:onProperty mt:calibration_records ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_references ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityChain ;
            owl:onProperty mt:traceability_chains ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:EvidenceReference ;
            owl:onProperty mt:evidence_references ] ;
    skos:definition "Root container for metrological traceability statements and supporting records" ;
    skos:exactMatch mt:metrologicalTraceability ;
    skos:inScheme mt: ;
    mt:sql_identifier "mt_root" .

<https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#allocation_boundary> a owl:Class ;
    rdfs:label "allocation_boundary" ;
    rdfs:subClassOf mt:BoundaryTypeEnum ;
    skos:definition "Allocation, substitution, cut-off, or crediting boundary" .

<https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#characterization_model> a owl:Class ;
    rdfs:label "characterization_model" ;
    rdfs:subClassOf mt:BoundaryTypeEnum ;
    skos:definition "Characterization model or impact method boundary" .

<https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#functional_unit> a owl:Class ;
    rdfs:label "functional_unit" ;
    rdfs:subClassOf mt:BoundaryTypeEnum ;
    skos:definition "Functional unit or declared unit definition" .

<https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#geographical_boundary> a owl:Class ;
    rdfs:label "geographical_boundary" ;
    rdfs:subClassOf mt:BoundaryTypeEnum ;
    skos:definition "Geographical boundary" .

<https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#goal_and_scope> a owl:Class ;
    rdfs:label "goal_and_scope" ;
    rdfs:subClassOf mt:BoundaryTypeEnum ;
    skos:definition "Goal and scope definition" .

<https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#other> a owl:Class ;
    rdfs:label "other" ;
    rdfs:subClassOf mt:BoundaryTypeEnum ;
    skos:definition "Other boundary type" .

<https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#scenario_definition> a owl:Class ;
    rdfs:label "scenario_definition" ;
    rdfs:subClassOf mt:BoundaryTypeEnum ;
    skos:definition "Scenario definition" .

<https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#system_boundary> a owl:Class ;
    rdfs:label "system_boundary" ;
    rdfs:subClassOf mt:BoundaryTypeEnum ;
    skos:definition "System boundary defining included and excluded processes" .

<https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#technological_boundary> a owl:Class ;
    rdfs:label "technological_boundary" ;
    rdfs:subClassOf mt:BoundaryTypeEnum ;
    skos:definition "Technological boundary" .

<https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#temporal_boundary> a owl:Class ;
    rdfs:label "temporal_boundary" ;
    rdfs:subClassOf mt:BoundaryTypeEnum ;
    skos:definition "Temporal boundary or time horizon" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#due> a owl:Class ;
    rdfs:label "due" ;
    rdfs:subClassOf mt:CalibrationStatusEnum ;
    skos:definition "Recalibration is due" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#expired> a owl:Class ;
    rdfs:label "expired" ;
    rdfs:subClassOf mt:CalibrationStatusEnum ;
    skos:definition "Calibration validity has expired" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#failed> a owl:Class ;
    rdfs:label "failed" ;
    rdfs:subClassOf mt:CalibrationStatusEnum ;
    skos:definition "Calibration or verification failed" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#not_available> a owl:Class ;
    rdfs:label "not_available" ;
    rdfs:subClassOf mt:CalibrationStatusEnum ;
    skos:definition "Calibration status is not available" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#superseded> a owl:Class ;
    rdfs:label "superseded" ;
    rdfs:subClassOf mt:CalibrationStatusEnum ;
    skos:definition "Calibration record has been superseded" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#valid> a owl:Class ;
    rdfs:label "valid" ;
    rdfs:subClassOf mt:CalibrationStatusEnum ;
    skos:definition "Calibration is valid for the intended use" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#valid_with_restrictions> a owl:Class ;
    rdfs:label "valid_with_restrictions" ;
    rdfs:subClassOf mt:CalibrationStatusEnum ;
    skos:definition "Calibration is valid only within specified restrictions" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#complete> a owl:Class ;
    rdfs:label "complete" ;
    rdfs:subClassOf mt:ChainCompletenessEnum ;
    skos:definition "All relevant links are documented" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#gap_identified> a owl:Class ;
    rdfs:label "gap_identified" ;
    rdfs:subClassOf mt:ChainCompletenessEnum ;
    skos:definition "One or more gaps are explicitly identified" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#inferred> a owl:Class ;
    rdfs:label "inferred" ;
    rdfs:subClassOf mt:ChainCompletenessEnum ;
    skos:definition "Some links are inferred from available evidence" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#partial> a owl:Class ;
    rdfs:label "partial" ;
    rdfs:subClassOf mt:ChainCompletenessEnum ;
    skos:definition "Some relevant links are documented" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#unavailable> a owl:Class ;
    rdfs:label "unavailable" ;
    rdfs:subClassOf mt:ChainCompletenessEnum ;
    skos:definition "Chain evidence is unavailable" .

mt:ComparabilityAssessment a owl:Class ;
    rdfs:label "ComparabilityAssessment" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:comparability_assessment_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:comparability_assessment_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:left_traceability_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:comparability_rationale_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:comparability_rationale_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:comparability_assessment_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:right_traceability_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:same_method_or_boundary_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:same_reference_basis_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:right_traceability_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:boolean ;
            owl:onProperty mt:same_measurand_definition_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:same_method_or_boundary_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:same_measurand_definition_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:comparability_rationale_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:same_reference_basis_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:same_measurand_definition_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:boolean ;
            owl:onProperty mt:same_reference_basis_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:comparability_decision_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:comparability_decision_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:boolean ;
            owl:onProperty mt:same_method_or_boundary_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:right_traceability_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:left_traceability_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:ComparabilityDecisionEnum ;
            owl:onProperty mt:comparability_decision_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:left_traceability_reference_value ] ;
    skos:definition "Assessment of whether two reported values are metrologically comparable through the same reference basis, measurand definition, method, or boundary" ;
    skos:exactMatch mt:comparabilityAssessment ;
    skos:inScheme mt: ;
    mt:references "JCGM 200:2012; JCGM 106:2012" ;
    mt:sql_identifier "mt_comparability_assessment" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#comparable> a owl:Class ;
    rdfs:label "comparable" ;
    rdfs:subClassOf mt:ComparabilityDecisionEnum ;
    skos:definition "Results are traceable to a sufficiently common basis for comparison" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#comparable_with_conditions> a owl:Class ;
    rdfs:label "comparable_with_conditions" ;
    rdfs:subClassOf mt:ComparabilityDecisionEnum ;
    skos:definition "Results are comparable only under stated conditions or restrictions" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#insufficient_information> a owl:Class ;
    rdfs:label "insufficient_information" ;
    rdfs:subClassOf mt:ComparabilityDecisionEnum ;
    skos:definition "There is insufficient information to assess comparability" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#not_comparable> a owl:Class ;
    rdfs:label "not_comparable" ;
    rdfs:subClassOf mt:ComparabilityDecisionEnum ;
    skos:definition "Results are not metrologically comparable" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#not_evaluated> a owl:Class ;
    rdfs:label "not_evaluated" ;
    rdfs:subClassOf mt:ComparabilityDecisionEnum ;
    skos:definition "Comparability has not been evaluated" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#active> a owl:Class ;
    rdfs:label "active" ;
    rdfs:subClassOf mt:CompetenceStatusEnum ;
    skos:definition "Competence or accreditation is active" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#expired> a owl:Class ;
    rdfs:label "expired" ;
    rdfs:subClassOf mt:CompetenceStatusEnum ;
    skos:definition "Competence or accreditation has expired" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#not_applicable> a owl:Class ;
    rdfs:label "not_applicable" ;
    rdfs:subClassOf mt:CompetenceStatusEnum ;
    skos:definition "Competence record is not applicable" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#not_available> a owl:Class ;
    rdfs:label "not_available" ;
    rdfs:subClassOf mt:CompetenceStatusEnum ;
    skos:definition "Competence record is not available" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#suspended> a owl:Class ;
    rdfs:label "suspended" ;
    rdfs:subClassOf mt:CompetenceStatusEnum ;
    skos:definition "Competence or accreditation is suspended" .

<https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#withdrawn> a owl:Class ;
    rdfs:label "withdrawn" ;
    rdfs:subClassOf mt:CompetenceStatusEnum ;
    skos:definition "Competence or accreditation has been withdrawn" .

mt:EvidenceReference a owl:Class ;
    rdfs:label "EvidenceReference" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:evidence_date_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_description_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_type_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_url_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_provider_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_date_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_description_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_provider_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_date_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_version_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_provider_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:anyURI ;
            owl:onProperty mt:evidence_url_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_version_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_url_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:EvidenceTypeEnum ;
            owl:onProperty mt:evidence_type_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_type_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_version_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_description_value ] ;
    skos:definition "Supporting evidence record for a traceability statement, chain, calibration, method, boundary, reference material, or competence record" ;
    skos:exactMatch mt:evidenceReference ;
    skos:inScheme mt: ;
    mt:sql_identifier "mt_evidence_reference" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#accreditation_record> a owl:Class ;
    rdfs:label "accreditation_record" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Accreditation, authorization, competence, or quality system record" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#boundary_document> a owl:Class ;
    rdfs:label "boundary_document" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Goal-and-scope, boundary, scenario, or modelling rule document" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#calibration_certificate> a owl:Class ;
    rdfs:label "calibration_certificate" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Calibration certificate" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#dataset_reference> a owl:Class ;
    rdfs:label "dataset_reference" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Dataset, database, or factor set reference" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#method_standard> a owl:Class ;
    rdfs:label "method_standard" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Standardized method or protocol" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#other> a owl:Class ;
    rdfs:label "other" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Other evidence type" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#procedure_document> a owl:Class ;
    rdfs:label "procedure_document" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Internal or external procedure document" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#proficiency_test> a owl:Class ;
    rdfs:label "proficiency_test" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Proficiency testing or interlaboratory comparison evidence" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#reference_material_certificate> a owl:Class ;
    rdfs:label "reference_material_certificate" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Reference material certificate" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#software_record> a owl:Class ;
    rdfs:label "software_record" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Software, model, workflow, or calculation service record" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#supplier_declaration> a owl:Class ;
    rdfs:label "supplier_declaration" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Supplier declaration or third-party declaration" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#test_report> a owl:Class ;
    rdfs:label "test_report" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Test, inspection, or measurement report" .

<https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#validation_report> a owl:Class ;
    rdfs:label "validation_report" ;
    rdfs:subClassOf mt:EvidenceTypeEnum ;
    skos:definition "Validation, verification, or qualification report" .

<https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#instrument_standard> a owl:Class ;
    rdfs:label "instrument_standard" ;
    rdfs:subClassOf mt:MeasurementStandardTypeEnum ;
    skos:definition "Instrument standard or calibrated measuring system" .

<https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#international_standard> a owl:Class ;
    rdfs:label "international_standard" ;
    rdfs:subClassOf mt:MeasurementStandardTypeEnum ;
    skos:definition "International measurement standard" .

<https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#national_standard> a owl:Class ;
    rdfs:label "national_standard" ;
    rdfs:subClassOf mt:MeasurementStandardTypeEnum ;
    skos:definition "National measurement standard" .

<https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#other> a owl:Class ;
    rdfs:label "other" ;
    rdfs:subClassOf mt:MeasurementStandardTypeEnum ;
    skos:definition "Other measurement standard type" .

<https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#primary_standard> a owl:Class ;
    rdfs:label "primary_standard" ;
    rdfs:subClassOf mt:MeasurementStandardTypeEnum ;
    skos:definition "Primary measurement standard" .

<https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#reference_standard> a owl:Class ;
    rdfs:label "reference_standard" ;
    rdfs:subClassOf mt:MeasurementStandardTypeEnum ;
    skos:definition "Reference standard" .

<https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#secondary_standard> a owl:Class ;
    rdfs:label "secondary_standard" ;
    rdfs:subClassOf mt:MeasurementStandardTypeEnum ;
    skos:definition "Secondary measurement standard" .

<https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#transfer_standard> a owl:Class ;
    rdfs:label "transfer_standard" ;
    rdfs:subClassOf mt:MeasurementStandardTypeEnum ;
    skos:definition "Transfer standard" .

<https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#unit_realization> a owl:Class ;
    rdfs:label "unit_realization" ;
    rdfs:subClassOf mt:MeasurementStandardTypeEnum ;
    skos:definition "Practical realization of a unit" .

<https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#working_standard> a owl:Class ;
    rdfs:label "working_standard" ;
    rdfs:subClassOf mt:MeasurementStandardTypeEnum ;
    skos:definition "Working standard" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#analytical_method> a owl:Class ;
    rdfs:label "analytical_method" ;
    rdfs:subClassOf mt:ProcedureRoleEnum ;
    skos:definition "Analytical or laboratory method" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#calculation> a owl:Class ;
    rdfs:label "calculation" ;
    rdfs:subClassOf mt:ProcedureRoleEnum ;
    skos:definition "Calculation or transformation procedure" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#calibration> a owl:Class ;
    rdfs:label "calibration" ;
    rdfs:subClassOf mt:ProcedureRoleEnum ;
    skos:definition "Procedure used for calibration" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#measurement> a owl:Class ;
    rdfs:label "measurement" ;
    rdfs:subClassOf mt:ProcedureRoleEnum ;
    skos:definition "Procedure used to measure a value" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#modelling> a owl:Class ;
    rdfs:label "modelling" ;
    rdfs:subClassOf mt:ProcedureRoleEnum ;
    skos:definition "Modelling procedure" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#other> a owl:Class ;
    rdfs:label "other" ;
    rdfs:subClassOf mt:ProcedureRoleEnum ;
    skos:definition "Other procedure role" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#quality_control> a owl:Class ;
    rdfs:label "quality_control" ;
    rdfs:subClassOf mt:ProcedureRoleEnum ;
    skos:definition "Quality control or verification procedure" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#reporting> a owl:Class ;
    rdfs:label "reporting" ;
    rdfs:subClassOf mt:ProcedureRoleEnum ;
    skos:definition "Reporting or rounding procedure" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#sampling> a owl:Class ;
    rdfs:label "sampling" ;
    rdfs:subClassOf mt:ProcedureRoleEnum ;
    skos:definition "Procedure used for sampling or specimen preparation" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#boundary_document> a owl:Class ;
    rdfs:label "boundary_document" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "Goal-and-scope, system boundary, or scenario definition" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#calibration_certificate> a owl:Class ;
    rdfs:label "calibration_certificate" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "Calibration certificate or report" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#dataset> a owl:Class ;
    rdfs:label "dataset" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "Dataset, database, emission factor set, or reference data source" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#instrument> a owl:Class ;
    rdfs:label "instrument" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "Instrument, sensor, measuring system, or equipment" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#international_standard> a owl:Class ;
    rdfs:label "international_standard" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "International measurement standard" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#method_document> a owl:Class ;
    rdfs:label "method_document" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "Measurement, analytical, test, calculation, or modelling method document" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#national_standard> a owl:Class ;
    rdfs:label "national_standard" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "National measurement standard" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#organization> a owl:Class ;
    rdfs:label "organization" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "Organization, laboratory, institute, or authority" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#other> a owl:Class ;
    rdfs:label "other" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "Other reference entity type" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#reference_material> a owl:Class ;
    rdfs:label "reference_material" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "Reference material or certified reference material" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#si_definition> a owl:Class ;
    rdfs:label "si_definition" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "SI unit definition or realization" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#software> a owl:Class ;
    rdfs:label "software" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "Software, model implementation, or calculation service" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#working_standard> a owl:Class ;
    rdfs:label "working_standard" ;
    rdfs:subClassOf mt:ReferenceEntityTypeEnum ;
    skos:definition "Working standard or laboratory standard" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#calibrator> a owl:Class ;
    rdfs:label "calibrator" ;
    rdfs:subClassOf mt:ReferenceMaterialTypeEnum ;
    skos:definition "Calibrator" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#certified_reference_material> a owl:Class ;
    rdfs:label "certified_reference_material" ;
    rdfs:subClassOf mt:ReferenceMaterialTypeEnum ;
    skos:definition "Certified reference material" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#in_house_reference_material> a owl:Class ;
    rdfs:label "in_house_reference_material" ;
    rdfs:subClassOf mt:ReferenceMaterialTypeEnum ;
    skos:definition "In-house reference material" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#matrix_reference_material> a owl:Class ;
    rdfs:label "matrix_reference_material" ;
    rdfs:subClassOf mt:ReferenceMaterialTypeEnum ;
    skos:definition "Matrix reference material" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#other> a owl:Class ;
    rdfs:label "other" ;
    rdfs:subClassOf mt:ReferenceMaterialTypeEnum ;
    skos:definition "Other reference material type" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#quality_control_material> a owl:Class ;
    rdfs:label "quality_control_material" ;
    rdfs:subClassOf mt:ReferenceMaterialTypeEnum ;
    skos:definition "Quality control material" .

<https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#reference_material> a owl:Class ;
    rdfs:label "reference_material" ;
    rdfs:subClassOf mt:ReferenceMaterialTypeEnum ;
    skos:definition "Reference material" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#certified_reference_material> a owl:Class ;
    rdfs:label "certified_reference_material" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "Certified reference material with assigned property values and uncertainties" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#characterization_model> a owl:Class ;
    rdfs:label "characterization_model" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "Model or factor set defining a calculated indicator" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#conventional_reference> a owl:Class ;
    rdfs:label "conventional_reference" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "Conventional reference, convention, or agreed value" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#data_source_or_dataset> a owl:Class ;
    rdfs:label "data_source_or_dataset" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "Versioned data source, dataset, or database used as a reference" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#measurement_procedure> a owl:Class ;
    rdfs:label "measurement_procedure" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "Measurement procedure defining or transferring the value" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#measurement_standard> a owl:Class ;
    rdfs:label "measurement_standard" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "Measurement standard used in a calibration hierarchy" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#other> a owl:Class ;
    rdfs:label "other" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "Other traceability basis type" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#reference_material> a owl:Class ;
    rdfs:label "reference_material" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "Reference material used for calibration, validation, or quality control" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#si_unit_realization> a owl:Class ;
    rdfs:label "si_unit_realization" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "Definition or practical realization of an SI unit" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#standard_method> a owl:Class ;
    rdfs:label "standard_method" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "Standardized analytical, test, calculation, or reporting method" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#system_boundary> a owl:Class ;
    rdfs:label "system_boundary" ;
    rdfs:subClassOf mt:TraceabilityBasisTypeEnum ;
    skos:definition "System boundary, goal-and-scope, or scenario definition" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#boundary_traceability_chain> a owl:Class ;
    rdfs:label "boundary_traceability_chain" ;
    rdfs:subClassOf mt:TraceabilityChainTypeEnum ;
    skos:definition "Chain linking the result to a boundary-defined or model-defined reference" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#branched_calibration_network> a owl:Class ;
    rdfs:label "branched_calibration_network" ;
    rdfs:subClassOf mt:TraceabilityChainTypeEnum ;
    skos:definition "Branched or networked hierarchy for multiple input quantities" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#hybrid_chain> a owl:Class ;
    rdfs:label "hybrid_chain" ;
    rdfs:subClassOf mt:TraceabilityChainTypeEnum ;
    skos:definition "Chain combining calibration, method, boundary, and/or dataset references" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#linear_calibration_chain> a owl:Class ;
    rdfs:label "linear_calibration_chain" ;
    rdfs:subClassOf mt:TraceabilityChainTypeEnum ;
    skos:definition "Single unbroken calibration chain" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#method_traceability_chain> a owl:Class ;
    rdfs:label "method_traceability_chain" ;
    rdfs:subClassOf mt:TraceabilityChainTypeEnum ;
    skos:definition "Chain linking the result to a method-defined reference" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#not_documented> a owl:Class ;
    rdfs:label "not_documented" ;
    rdfs:subClassOf mt:TraceabilityChainTypeEnum ;
    skos:definition "Traceability chain is not documented" .

mt:TraceabilityLink a owl:Class ;
    rdfs:label "TraceabilityLink" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:link_procedure_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:link_to_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityLinkRoleEnum ;
            owl:onProperty mt:link_role_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:link_role_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:integer ;
            owl:onProperty mt:link_sequence_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:link_to_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:link_procedure_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:link_from_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:link_to_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:traceability_link_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:link_date_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:link_from_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:link_uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:link_uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:link_date_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:link_sequence_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:link_role_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:statement_notes_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_records ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:link_sequence_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_link_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:CalibrationRecord ;
            owl:onProperty mt:calibration_records ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:statement_notes_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:link_procedure_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:link_uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:statement_notes_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_link_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:link_from_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:link_date_value ] ;
    skos:definition "Single documented step in a traceability chain, including calibration, comparison, transfer, method adherence, or boundary reference" ;
    skos:exactMatch mt:traceabilityLink ;
    skos:inScheme mt: ;
    mt:references "JCGM 200:2012; ISO/IEC 17025" ;
    mt:sql_identifier "mt_link" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#boundary_definition> a owl:Class ;
    rdfs:label "boundary_definition" ;
    rdfs:subClassOf mt:TraceabilityLinkRoleEnum ;
    skos:definition "Boundary, goal-and-scope, or modelling definition" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#calibration> a owl:Class ;
    rdfs:label "calibration" ;
    rdfs:subClassOf mt:TraceabilityLinkRoleEnum ;
    skos:definition "Calibration step" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#comparison> a owl:Class ;
    rdfs:label "comparison" ;
    rdfs:subClassOf mt:TraceabilityLinkRoleEnum ;
    skos:definition "Comparison between standards, methods, instruments, or values" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#correction> a owl:Class ;
    rdfs:label "correction" ;
    rdfs:subClassOf mt:TraceabilityLinkRoleEnum ;
    skos:definition "Correction or adjustment step" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#data_source_mapping> a owl:Class ;
    rdfs:label "data_source_mapping" ;
    rdfs:subClassOf mt:TraceabilityLinkRoleEnum ;
    skos:definition "Mapping to a dataset, factor set, or data source" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#method_definition> a owl:Class ;
    rdfs:label "method_definition" ;
    rdfs:subClassOf mt:TraceabilityLinkRoleEnum ;
    skos:definition "Method or procedure defining the property" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#other> a owl:Class ;
    rdfs:label "other" ;
    rdfs:subClassOf mt:TraceabilityLinkRoleEnum ;
    skos:definition "Other link role" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#software_or_model_execution> a owl:Class ;
    rdfs:label "software_or_model_execution" ;
    rdfs:subClassOf mt:TraceabilityLinkRoleEnum ;
    skos:definition "Software, model, or calculation execution step" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#value_transfer> a owl:Class ;
    rdfs:label "value_transfer" ;
    rdfs:subClassOf mt:TraceabilityLinkRoleEnum ;
    skos:definition "Transfer of a value from one reference to another" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#verification> a owl:Class ;
    rdfs:label "verification" ;
    rdfs:subClassOf mt:TraceabilityLinkRoleEnum ;
    skos:definition "Verification or intermediate check" .

mt:TraceabilityStatement a owl:Class ;
    rdfs:label "TraceabilityStatement" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:applies_to_class_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:applies_to_model_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_statement_date_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:statement_notes_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_chain ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:dateTime ;
            owl:onProperty mt:traceability_statement_date_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurand_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:quantity_kind_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reported_value_unit_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:data_quality_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:measurand_description_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:quantity_kind_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:applies_to_value_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:traceability_statement_label_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:measurand_name_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_chain ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:applies_to_slot_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reported_value_unit_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurement_standards ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reported_value_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:competence_records ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:MeasurementStandard ;
            owl:onProperty mt:measurement_standards ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:data_quality_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:result_date_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:traceability_statement_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:applies_to_record_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:boundary_definition ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:applies_to_slot_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_statement_label_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityBasis ;
            owl:onProperty mt:traceability_basis ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_status_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:ReferenceMaterial ;
            owl:onProperty mt:reference_materials ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:result_date_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:standards_applied_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:quantity_kind_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:applies_to_class_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_statement_type_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurand_description_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:applies_to_class_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:quantity_unit_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:applies_to_model_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:CalibrationRecord ;
            owl:onProperty mt:calibration_records ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_statement_label_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:applies_to_record_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reported_value_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reported_value_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:measurand_description_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:measurand_name_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:data_quality_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:applies_to_slot_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_entities ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:applies_to_model_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:applies_to_value_path_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:dateTime ;
            owl:onProperty mt:result_date_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_statement_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reported_value_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:MeasurementProcedure ;
            owl:onProperty mt:measurement_procedure ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityChain ;
            owl:onProperty mt:traceability_chain ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reported_value_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:boundary_definition ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:measurement_procedure ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_statement_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_basis ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:quantity_unit_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:applies_to_value_path_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_materials ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:measurand_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:CompetenceRecord ;
            owl:onProperty mt:competence_records ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:standards_applied_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_status_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reported_value_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:applies_to_value_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurand_name_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reported_value_unit_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_statement_type_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:statement_notes_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:statement_notes_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityStatusEnum ;
            owl:onProperty mt:traceability_status_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_statement_date_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurement_procedure ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:measurand_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_records ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:applies_to_record_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:applies_to_value_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:quantity_unit_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:applies_to_value_path_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:BoundaryDefinition ;
            owl:onProperty mt:boundary_definition ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:ReferenceEntity ;
            owl:onProperty mt:reference_entities ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_basis ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:standards_applied_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityStatementTypeEnum ;
            owl:onProperty mt:traceability_statement_type_value ] ;
    skos:definition "Reusable statement documenting the traceability basis of a measured, calculated, method-defined, or boundary-defined value" ;
    skos:exactMatch mt:traceabilityStatement ;
    skos:inScheme mt: ;
    skos:note "Designed as the main integration point for other CE-RISE data models.",
        "Other models may either embed this class or point to it through traceability_statement_identifier_value." ;
    mt:references "JCGM 200:2012; ISO/IEC 17025; ILAC P10; ISO 17034; ISO Guide 35; ISO 14040; ISO 14044" ;
    mt:sql_identifier "mt_statement" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#boundary_defined_traceability> a owl:Class ;
    rdfs:label "boundary_defined_traceability" ;
    rdfs:subClassOf mt:TraceabilityStatementTypeEnum ;
    skos:definition "Traceability to a documented system boundary, goal and scope, scenario, or modelling rule set" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#conventional_reference_traceability> a owl:Class ;
    rdfs:label "conventional_reference_traceability" ;
    rdfs:subClassOf mt:TraceabilityStatementTypeEnum ;
    skos:definition "Traceability to a conventional value, conventional scale, or agreed reference" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#hybrid_traceability> a owl:Class ;
    rdfs:label "hybrid_traceability" ;
    rdfs:subClassOf mt:TraceabilityStatementTypeEnum ;
    skos:definition "Traceability requiring more than one traceability type" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#method_defined_traceability> a owl:Class ;
    rdfs:label "method_defined_traceability" ;
    rdfs:subClassOf mt:TraceabilityStatementTypeEnum ;
    skos:definition "Traceability to a standardized or documented method that defines the property" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#not_evaluated> a owl:Class ;
    rdfs:label "not_evaluated" ;
    rdfs:subClassOf mt:TraceabilityStatementTypeEnum ;
    skos:definition "Traceability has not been evaluated" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#other> a owl:Class ;
    rdfs:label "other" ;
    rdfs:subClassOf mt:TraceabilityStatementTypeEnum ;
    skos:definition "Other traceability statement type" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#reference_material_traceability> a owl:Class ;
    rdfs:label "reference_material_traceability" ;
    rdfs:subClassOf mt:TraceabilityStatementTypeEnum ;
    skos:definition "Traceability through a reference material or certified reference material" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#si_traceability> a owl:Class ;
    rdfs:label "si_traceability" ;
    rdfs:subClassOf mt:TraceabilityStatementTypeEnum ;
    skos:definition "Traceability to SI units through a calibration hierarchy" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#active> a owl:Class ;
    rdfs:label "active" ;
    rdfs:subClassOf mt:TraceabilityStatusEnum ;
    skos:definition "Record is currently active or valid" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#draft> a owl:Class ;
    rdfs:label "draft" ;
    rdfs:subClassOf mt:TraceabilityStatusEnum ;
    skos:definition "Record is being prepared" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#expired> a owl:Class ;
    rdfs:label "expired" ;
    rdfs:subClassOf mt:TraceabilityStatusEnum ;
    skos:definition "Record is no longer valid" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#partial> a owl:Class ;
    rdfs:label "partial" ;
    rdfs:subClassOf mt:TraceabilityStatusEnum ;
    skos:definition "Record is partially documented or partially verified" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#reviewed> a owl:Class ;
    rdfs:label "reviewed" ;
    rdfs:subClassOf mt:TraceabilityStatusEnum ;
    skos:definition "Record has been reviewed" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#superseded> a owl:Class ;
    rdfs:label "superseded" ;
    rdfs:subClassOf mt:TraceabilityStatusEnum ;
    skos:definition "Record has been superseded" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#unavailable> a owl:Class ;
    rdfs:label "unavailable" ;
    rdfs:subClassOf mt:TraceabilityStatusEnum ;
    skos:definition "Record or status information is unavailable" .

<https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#verified> a owl:Class ;
    rdfs:label "verified" ;
    rdfs:subClassOf mt:TraceabilityStatusEnum ;
    skos:definition "Record has been verified against supporting evidence" .

mt:boundary_definitions a owl:ObjectProperty ;
    rdfs:label "boundary_definitions" ;
    rdfs:range mt:BoundaryDefinition ;
    skos:definition "Boundary, goal-and-scope, scenario, or model definitions used as traceability references" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:boundaryDefinition" ;
    mt:sql_identifier "mt_boundary_definitions" .

mt:comparability_assessments a owl:ObjectProperty ;
    rdfs:label "comparability_assessments" ;
    rdfs:range mt:ComparabilityAssessment ;
    skos:definition "Assessments of whether traceability statements support meaningful comparison" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:comparabilityAssessment" ;
    mt:sql_identifier "mt_comparability_assessments" .

mt:evidence_references a owl:ObjectProperty ;
    rdfs:label "evidence_references" ;
    rdfs:range mt:EvidenceReference ;
    skos:definition "Evidence records referenced by the metrological traceability model" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:evidenceReference" ;
    mt:sql_identifier "mt_evidence_references" .

mt:measurement_procedures a owl:ObjectProperty ;
    rdfs:label "measurement_procedures" ;
    rdfs:range mt:MeasurementProcedure ;
    skos:definition "Measurement, calculation, sampling, calibration, analytical, or modelling procedures used for traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:measurementProcedure" ;
    mt:sql_identifier "mt_measurement_procedures" .

mt:traceability_bases a owl:ObjectProperty ;
    rdfs:label "traceability_bases" ;
    rdfs:range mt:TraceabilityBasis ;
    skos:definition "Reference bases used to establish metrological traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:traceabilityBasis" ;
    mt:sql_identifier "mt_traceability_bases" .

mt:traceability_chains a owl:ObjectProperty ;
    rdfs:label "traceability_chains" ;
    rdfs:range mt:TraceabilityChain ;
    skos:definition "Traceability chains or networks available for reuse by one or more traceability statements" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:traceabilityChain" ;
    mt:sql_identifier "mt_traceability_chains" .

mt:traceability_links a owl:ObjectProperty ;
    rdfs:label "traceability_links" ;
    rdfs:range mt:TraceabilityLink ;
    skos:definition "Ordered or networked links that make up a traceability chain" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:traceabilityLink" ;
    mt:sql_identifier "mt_traceability_links" .

mt:traceability_statements a owl:ObjectProperty ;
    rdfs:label "traceability_statements" ;
    rdfs:range mt:TraceabilityStatement ;
    skos:definition "Reusable traceability statements that can be embedded or referenced by other CE-RISE data models" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:traceabilityStatement" ;
    mt:sql_identifier "mt_traceability_statements" .

mt:CompetenceRecord a owl:Class ;
    rdfs:label "CompetenceRecord" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:competence_basis_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:competence_basis_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:competence_record_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:accreditation_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:competence_provider_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:competence_status_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:accreditation_body_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:CompetenceStatusEnum ;
            owl:onProperty mt:competence_status_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:competence_provider_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:competence_basis_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:accreditation_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:accreditation_body_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:competence_scope_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:competence_status_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:competence_scope_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:competence_scope_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:competence_record_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:competence_provider_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:competence_record_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:accreditation_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:accreditation_body_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:reference_valid_from_value ] ;
    skos:definition "Competence, accreditation, validation, proficiency, or quality system evidence supporting traceability" ;
    skos:exactMatch mt:competenceRecord ;
    skos:inScheme mt: ;
    mt:references "ISO/IEC 17025; ISO 17034; ISO 9001; ILAC P10" ;
    mt:sql_identifier "mt_competence_record" .

mt:MeasurementStandard a owl:Class ;
    rdfs:label "MeasurementStandard" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurement_standard_owner_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:measurement_standard_level_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:assigned_value_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:assigned_value_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:quantity_kind_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:measurement_standard_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:MeasurementStandardTypeEnum ;
            owl:onProperty mt:measurement_standard_type_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:assigned_value_uncertainty_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurement_standard_level_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_records ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:assigned_value_unit_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurement_standard_type_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurement_standard_name_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:measurement_standard_name_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:measurement_standard_level_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:quantity_kind_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:assigned_value_unit_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:measurement_standard_name_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:measurement_standard_owner_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:quantity_unit_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:measurement_standard_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:measurement_standard_type_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:assigned_value_unit_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:measurement_standard_owner_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:assigned_value_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:assigned_value_uncertainty_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:quantity_unit_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:CalibrationRecord ;
            owl:onProperty mt:calibration_records ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:measurement_standard_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:assigned_value_uncertainty_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:quantity_unit_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:quantity_kind_value ] ;
    skos:definition "Measurement standard, artefact, instrument standard, or unit realization used in a calibration hierarchy" ;
    skos:exactMatch mt:measurementStandard ;
    skos:inScheme mt: ;
    mt:references "JCGM 200:2012; ISO/IEC 17025; ILAC P10" ;
    mt:sql_identifier "mt_measurement_standard" .

mt:ReferenceEntity a owl:Class ;
    rdfs:label "ReferenceEntity" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:assigned_value_uncertainty_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_entity_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_entity_name_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:assigned_value_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reference_entity_name_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:assigned_value_uncertainty_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:anyURI ;
            owl:onProperty mt:reference_entity_uri_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_entity_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:ReferenceEntityTypeEnum ;
            owl:onProperty mt:reference_entity_type_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:assigned_value_unit_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_entity_type_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:assigned_value_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_entity_provider_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:assigned_value_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reference_entity_provider_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_entity_uri_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_entity_uri_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:assigned_value_unit_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_entity_name_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reference_entity_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:assigned_value_unit_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_entity_provider_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:assigned_value_uncertainty_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_entity_type_value ] ;
    skos:definition "Generic reference entity used in a traceability statement, chain, procedure, calibration, or boundary definition" ;
    skos:exactMatch mt:referenceEntity ;
    skos:inScheme mt: ;
    mt:references "JCGM 200:2012" ;
    mt:sql_identifier "mt_reference_entity" .

mt:ReferenceMaterial a owl:Class ;
    rdfs:label "ReferenceMaterial" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:assigned_value_uncertainty_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reference_material_producer_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:assigned_value_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:anyURI ;
            owl:onProperty mt:certificate_url_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_material_name_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:certified_property_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:matrix_or_material_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:assigned_value_unit_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_material_lot_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:certificate_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_material_producer_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:certified_property_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:assigned_value_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:matrix_or_material_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_material_type_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:matrix_or_material_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_valid_from_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:certificate_url_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:assigned_value_uncertainty_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:assigned_value_uncertainty_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_material_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:certificate_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:assigned_value_unit_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_material_type_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reference_material_lot_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_material_producer_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_material_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:certificate_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_material_lot_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:reference_valid_until_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:certified_property_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:assigned_value_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reference_material_name_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_material_name_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:ReferenceMaterialTypeEnum ;
            owl:onProperty mt:reference_material_type_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reference_material_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:assigned_value_unit_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:certificate_url_value ] ;
    skos:definition "Reference material or certified reference material used to establish traceability" ;
    skos:exactMatch mt:referenceMaterial ;
    skos:inScheme mt: ;
    mt:references "ISO 17034; ISO Guide 35; JCGM 200:2012" ;
    mt:sql_identifier "mt_reference_material" .

mt:accreditation_body_value a owl:DatatypeProperty ;
    rdfs:label "accreditation_body_value" ;
    rdfs:range xsd:string ;
    skos:definition "Accreditation body, authority, or organization responsible for the competence record" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:publisher" ;
    mt:sql_identifier "mt_accreditation_body" .

mt:accreditation_identifier_value a owl:DatatypeProperty ;
    rdfs:label "accreditation_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Accreditation, authorization, scope, or certificate identifier" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:accreditationIdentifierValue" ;
    mt:sql_identifier "mt_accreditation_identifier" .

mt:allocation_rule_value a owl:DatatypeProperty ;
    rdfs:label "allocation_rule_value" ;
    rdfs:range xsd:string ;
    skos:definition "Allocation, partitioning, substitution, cut-off, or burden-sharing rule applied in the boundary definition" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:allocationRuleValue" ;
    mt:sql_identifier "mt_allocation_rule" .

mt:applies_to_class_value a owl:DatatypeProperty ;
    rdfs:label "applies_to_class_value" ;
    rdfs:range xsd:string ;
    skos:definition "Class in an external model to which this traceability statement applies" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:appliesToClassValue" ;
    mt:sql_identifier "mt_applies_to_class" .

mt:applies_to_model_value a owl:DatatypeProperty ;
    rdfs:label "applies_to_model_value" ;
    rdfs:range xsd:string ;
    skos:definition "Name, URI, or namespace of the external data model to which this traceability statement applies" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:appliesToModelValue" ;
    mt:sql_identifier "mt_applies_to_model" .

mt:applies_to_record_value a owl:DatatypeProperty ;
    rdfs:label "applies_to_record_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier of the external record, object, dataset, or passport entry to which this traceability statement applies" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:appliesToRecordValue" ;
    mt:sql_identifier "mt_applies_to_record" .

mt:applies_to_slot_value a owl:DatatypeProperty ;
    rdfs:label "applies_to_slot_value" ;
    rdfs:range xsd:string ;
    skos:definition "Slot or attribute in an external model to which this traceability statement applies" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:appliesToSlotValue" ;
    mt:sql_identifier "mt_applies_to_slot" .

mt:applies_to_value_identifier_value a owl:DatatypeProperty ;
    rdfs:label "applies_to_value_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier of a specific value object when the target model gives value-level identifiers" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:appliesToValueIdentifierValue" ;
    mt:sql_identifier "mt_applies_to_value_identifier" .

mt:applies_to_value_path_value a owl:DatatypeProperty ;
    rdfs:label "applies_to_value_path_value" ;
    rdfs:range xsd:string ;
    skos:definition "JSONPath, XPath, RDF path, or other pointer to the value to which this traceability statement applies" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:appliesToValuePathValue" ;
    mt:sql_identifier "mt_applies_to_value_path" .

mt:boundary_definition a owl:ObjectProperty ;
    rdfs:label "boundary_definition" ;
    rdfs:range mt:BoundaryDefinition ;
    skos:definition "Boundary, goal-and-scope, scenario, or model definition used to define a modelled value" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:boundaryDefinition" ;
    mt:sql_identifier "mt_boundary_definition" .

mt:boundary_identifier_value a owl:DatatypeProperty ;
    rdfs:label "boundary_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for a boundary, scope, scenario, or modelling reference definition" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_boundary_identifier" .

mt:boundary_name_value a owl:DatatypeProperty ;
    rdfs:label "boundary_name_value" ;
    rdfs:range xsd:string ;
    skos:definition "Name of the boundary, scope, scenario, or modelling definition" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:label" ;
    mt:sql_identifier "mt_boundary_name" .

mt:boundary_type_value a owl:ObjectProperty ;
    rdfs:label "boundary_type_value" ;
    rdfs:range mt:BoundaryTypeEnum ;
    skos:definition "Type of boundary or scope definition" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_boundary_type" .

mt:calibrated_item_identifier_value a owl:DatatypeProperty ;
    rdfs:label "calibrated_item_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier of the instrument, sensor, measuring system, reference material, standard, or software item calibrated or checked" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_calibrated_item_identifier" .

mt:calibrated_item_type_value a owl:DatatypeProperty ;
    rdfs:label "calibrated_item_type_value" ;
    rdfs:range xsd:string ;
    skos:definition "Type of calibrated item" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_calibrated_item_type" .

mt:calibration_certificate_identifier_value a owl:DatatypeProperty ;
    rdfs:label "calibration_certificate_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier of the calibration certificate or equivalent evidence record" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:calibrationCertificateIdentifierValue" ;
    mt:sql_identifier "mt_calibration_certificate_identifier" .

mt:calibration_certificate_url_value a owl:DatatypeProperty ;
    rdfs:label "calibration_certificate_url_value" ;
    rdfs:range xsd:anyURI ;
    skos:definition "URL for the calibration certificate or equivalent evidence record" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:url" ;
    mt:sql_identifier "mt_calibration_certificate_url" .

mt:calibration_date_value a owl:DatatypeProperty ;
    rdfs:label "calibration_date_value" ;
    rdfs:range xsd:date ;
    skos:definition "Date on which the calibration was performed" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:date" ;
    mt:sql_identifier "mt_calibration_date" .

mt:calibration_due_date_value a owl:DatatypeProperty ;
    rdfs:label "calibration_due_date_value" ;
    rdfs:range xsd:date ;
    skos:definition "Date by which recalibration is due" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:endDate" ;
    mt:sql_identifier "mt_calibration_due_date" .

mt:calibration_identifier_value a owl:DatatypeProperty ;
    rdfs:label "calibration_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for a calibration, comparison, verification, or check record" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_calibration_identifier" .

mt:calibration_interval_value a owl:DatatypeProperty ;
    rdfs:label "calibration_interval_value" ;
    rdfs:range xsd:string ;
    skos:definition "Calibration interval or recalibration frequency" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:calibrationIntervalValue" ;
    mt:sql_identifier "mt_calibration_interval" .

mt:calibration_laboratory_accreditation_value a owl:DatatypeProperty ;
    rdfs:label "calibration_laboratory_accreditation_value" ;
    rdfs:range xsd:string ;
    skos:definition "Accreditation identifier, scope, or body associated with the calibration provider" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:calibrationLaboratoryAccreditationValue" ;
    mt:sql_identifier "mt_calibration_laboratory_accreditation" .

mt:calibration_laboratory_value a owl:DatatypeProperty ;
    rdfs:label "calibration_laboratory_value" ;
    rdfs:range xsd:string ;
    skos:definition "Laboratory, organization, or facility that performed the calibration" ;
    skos:inScheme mt: ;
    mt:owl.filler "prov:Agent" ;
    mt:sql_identifier "mt_calibration_laboratory" .

mt:calibration_method_value a owl:DatatypeProperty ;
    rdfs:label "calibration_method_value" ;
    rdfs:range xsd:string ;
    skos:definition "Calibration method, procedure, comparison method, or protocol used" ;
    skos:inScheme mt: ;
    mt:owl.filler "sosa:usedProcedure" ;
    mt:sql_identifier "mt_calibration_method" .

mt:calibration_result_value a owl:DatatypeProperty ;
    rdfs:label "calibration_result_value" ;
    rdfs:range xsd:string ;
    skos:definition "Calibration result, correction, factor, or outcome statement" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:result" ;
    mt:sql_identifier "mt_calibration_result" .

mt:calibration_status_value a owl:ObjectProperty ;
    rdfs:label "calibration_status_value" ;
    rdfs:range mt:CalibrationStatusEnum ;
    skos:definition "Validity or acceptance status of the calibration record" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:calibrationStatusValue" ;
    mt:sql_identifier "mt_calibration_status" .

mt:certificate_identifier_value a owl:DatatypeProperty ;
    rdfs:label "certificate_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier of the reference material certificate" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:certificateIdentifierValue" ;
    mt:sql_identifier "mt_certificate_identifier" .

mt:certificate_url_value a owl:DatatypeProperty ;
    rdfs:label "certificate_url_value" ;
    rdfs:range xsd:anyURI ;
    skos:definition "URL for the reference material certificate" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:url" ;
    mt:sql_identifier "mt_certificate_url" .

mt:certified_property_value a owl:DatatypeProperty ;
    rdfs:label "certified_property_value" ;
    rdfs:range xsd:string ;
    skos:definition "Certified or assigned property of the reference material" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:certifiedPropertyValue" ;
    mt:sql_identifier "mt_certified_property" .

mt:chain_completeness_value a owl:ObjectProperty ;
    rdfs:label "chain_completeness_value" ;
    rdfs:range mt:ChainCompletenessEnum ;
    skos:definition "Assessment of whether the chain is complete, partial, inferred, or unavailable" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:chainCompletenessValue" ;
    mt:sql_identifier "mt_chain_completeness" .

mt:chain_end_reference_value a owl:DatatypeProperty ;
    rdfs:label "chain_end_reference_value" ;
    rdfs:range xsd:string ;
    skos:definition "Final reference reached by the traceability chain" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:chainEndReferenceValue" ;
    mt:sql_identifier "mt_chain_end_reference" .

mt:chain_notes_value a owl:DatatypeProperty ;
    rdfs:label "chain_notes_value" ;
    rdfs:range xsd:string ;
    skos:definition "Additional notes about the traceability chain, including gaps or assumptions" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:comment" ;
    mt:sql_identifier "mt_chain_notes" .

mt:chain_start_reference_value a owl:DatatypeProperty ;
    rdfs:label "chain_start_reference_value" ;
    rdfs:range xsd:string ;
    skos:definition "Reference or value at the user-facing end of the traceability chain" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:chainStartReferenceValue" ;
    mt:sql_identifier "mt_chain_start_reference" .

mt:chain_validation_status_value a owl:ObjectProperty ;
    rdfs:label "chain_validation_status_value" ;
    rdfs:range mt:TraceabilityStatusEnum ;
    skos:definition "Validation status of the traceability chain" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:chainValidationStatusValue" ;
    mt:sql_identifier "mt_chain_validation_status" .

mt:characterization_model_value a owl:DatatypeProperty ;
    rdfs:label "characterization_model_value" ;
    rdfs:range xsd:string ;
    skos:definition "Characterization model, factor set, time horizon, scenario, or model version used to convert inputs into the reported result" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:characterizationModelValue" ;
    mt:sql_identifier "mt_characterization_model" .

mt:common_reference_identifier_value a owl:DatatypeProperty ;
    rdfs:label "common_reference_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for the final reference, such as an SI unit realization, standard method, reference material, system boundary definition, or characterization model" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:commonReferenceIdentifierValue" ;
    mt:sql_identifier "mt_common_reference_identifier" .

mt:common_reference_name_value a owl:DatatypeProperty ;
    rdfs:label "common_reference_name_value" ;
    rdfs:range xsd:string ;
    skos:definition "Name of the final common reference" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:label" ;
    mt:sql_identifier "mt_common_reference_name" .

mt:common_reference_uri_value a owl:DatatypeProperty ;
    rdfs:label "common_reference_uri_value" ;
    rdfs:range xsd:anyURI ;
    skos:definition "URI or URL identifying the final common reference" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:url" ;
    mt:sql_identifier "mt_common_reference_uri" .

mt:comparability_assessment_identifier_value a owl:DatatypeProperty ;
    rdfs:label "comparability_assessment_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for an assessment of metrological comparability" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_comparability_assessment_identifier" .

mt:comparability_decision_value a owl:ObjectProperty ;
    rdfs:label "comparability_decision_value" ;
    rdfs:range mt:ComparabilityDecisionEnum ;
    skos:definition "Decision about whether the compared results are metrologically comparable" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:comparabilityDecisionValue" ;
    mt:sql_identifier "mt_comparability_decision" .

mt:comparability_rationale_value a owl:DatatypeProperty ;
    rdfs:label "comparability_rationale_value" ;
    rdfs:range xsd:string ;
    skos:definition "Rationale for the comparability decision, including relevant mismatches or limitations" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:comment" ;
    mt:sql_identifier "mt_comparability_rationale" .

mt:competence_basis_value a owl:DatatypeProperty ;
    rdfs:label "competence_basis_value" ;
    rdfs:range xsd:string ;
    skos:definition "Basis for competence, such as accreditation, proficiency testing, validation, authorization, or quality management system" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:competenceBasisValue" ;
    mt:sql_identifier "mt_competence_basis" .

mt:competence_provider_value a owl:DatatypeProperty ;
    rdfs:label "competence_provider_value" ;
    rdfs:range xsd:string ;
    skos:definition "Laboratory, person, organization, facility, or software provider whose competence is documented" ;
    skos:inScheme mt: ;
    mt:owl.filler "prov:Agent" ;
    mt:sql_identifier "mt_competence_provider" .

mt:competence_record_identifier_value a owl:DatatypeProperty ;
    rdfs:label "competence_record_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for a competence, accreditation, authorization, or quality system record" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_competence_record_identifier" .

mt:competence_scope_value a owl:DatatypeProperty ;
    rdfs:label "competence_scope_value" ;
    rdfs:range xsd:string ;
    skos:definition "Scope of competence, accreditation, validation, or authorization" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:coverage" ;
    mt:sql_identifier "mt_competence_scope" .

mt:competence_status_value a owl:ObjectProperty ;
    rdfs:label "competence_status_value" ;
    rdfs:range mt:CompetenceStatusEnum ;
    skos:definition "Status of the competence or accreditation record" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:competenceStatusValue" ;
    mt:sql_identifier "mt_competence_status" .

mt:data_source_scope_value a owl:DatatypeProperty ;
    rdfs:label "data_source_scope_value" ;
    rdfs:range xsd:string ;
    skos:definition "Temporal, geographical, technological, or population scope of the data sources used by the boundary definition" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:coverage" ;
    mt:sql_identifier "mt_data_source_scope" .

mt:evidence_date_value a owl:DatatypeProperty ;
    rdfs:label "evidence_date_value" ;
    rdfs:range xsd:date ;
    skos:definition "Date associated with supporting evidence" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:date" ;
    mt:sql_identifier "mt_evidence_date" .

mt:evidence_description_value a owl:DatatypeProperty ;
    rdfs:label "evidence_description_value" ;
    rdfs:range xsd:string ;
    skos:definition "Description of supporting evidence" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:description" ;
    mt:sql_identifier "mt_evidence_description" .

mt:evidence_identifier_value a owl:DatatypeProperty ;
    rdfs:label "evidence_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for supporting evidence" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_evidence_identifier" .

mt:evidence_provider_value a owl:DatatypeProperty ;
    rdfs:label "evidence_provider_value" ;
    rdfs:range xsd:string ;
    skos:definition "Provider, author, laboratory, supplier, or organization responsible for supporting evidence" ;
    skos:inScheme mt: ;
    mt:owl.filler "prov:Agent" ;
    mt:sql_identifier "mt_evidence_provider" .

mt:evidence_type_value a owl:ObjectProperty ;
    rdfs:label "evidence_type_value" ;
    rdfs:range mt:EvidenceTypeEnum ;
    skos:definition "Type of supporting evidence" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_evidence_type" .

mt:evidence_url_value a owl:DatatypeProperty ;
    rdfs:label "evidence_url_value" ;
    rdfs:range xsd:anyURI ;
    skos:definition "URL for supporting evidence" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:url" ;
    mt:sql_identifier "mt_evidence_url" .

mt:evidence_version_value a owl:DatatypeProperty ;
    rdfs:label "evidence_version_value" ;
    rdfs:range xsd:string ;
    skos:definition "Version, edition, or revision of supporting evidence" ;
    skos:inScheme mt: ;
    mt:owl.filler "pav:version" ;
    mt:sql_identifier "mt_evidence_version" .

mt:excluded_processes_value a owl:DatatypeProperty ;
    rdfs:label "excluded_processes_value" ;
    rdfs:range xsd:string ;
    skos:definition "Processes, stages, flows, compartments, or elements excluded from the boundary" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:excludedProcessesValue" ;
    mt:sql_identifier "mt_excluded_processes" .

mt:goal_scope_definition_value a owl:DatatypeProperty ;
    rdfs:label "goal_scope_definition_value" ;
    rdfs:range xsd:string ;
    skos:definition "Goal and scope definition or equivalent statement that defines the assessed value" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:goalScopeDefinitionValue" ;
    mt:sql_identifier "mt_goal_scope_definition" .

mt:impact_method_value a owl:DatatypeProperty ;
    rdfs:label "impact_method_value" ;
    rdfs:range xsd:string ;
    skos:definition "Impact assessment, characterization, scoring, or calculation method used for a modelled result" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:impactMethodValue" ;
    mt:sql_identifier "mt_impact_method" .

mt:included_processes_value a owl:DatatypeProperty ;
    rdfs:label "included_processes_value" ;
    rdfs:range xsd:string ;
    skos:definition "Processes, stages, flows, compartments, or elements included in the boundary" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:includedProcessesValue" ;
    mt:sql_identifier "mt_included_processes" .

mt:left_traceability_reference_value a owl:DatatypeProperty ;
    rdfs:label "left_traceability_reference_value" ;
    rdfs:range xsd:string ;
    skos:definition "Reference to the first traceability statement, chain, or basis being compared" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:leftTraceabilityReferenceValue" ;
    mt:sql_identifier "mt_left_traceability_reference" .

mt:link_date_value a owl:DatatypeProperty ;
    rdfs:label "link_date_value" ;
    rdfs:range xsd:date ;
    skos:definition "Date on which this traceability link, calibration, comparison, transformation, or modelling step was established" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:date" ;
    mt:sql_identifier "mt_link_date" .

mt:link_from_reference_value a owl:DatatypeProperty ;
    rdfs:label "link_from_reference_value" ;
    rdfs:range xsd:string ;
    skos:definition "Reference entity, value, standard, method, or node from which this link starts" ;
    skos:inScheme mt: ;
    mt:owl.filler "prov:wasDerivedFrom" ;
    mt:sql_identifier "mt_link_from_reference" .

mt:link_procedure_value a owl:DatatypeProperty ;
    rdfs:label "link_procedure_value" ;
    rdfs:range xsd:string ;
    skos:definition "Procedure, calibration, comparison, transformation, conversion, or modelling step used in this link" ;
    skos:inScheme mt: ;
    mt:owl.filler "sosa:usedProcedure" ;
    mt:sql_identifier "mt_link_procedure" .

mt:link_role_value a owl:ObjectProperty ;
    rdfs:label "link_role_value" ;
    rdfs:range mt:TraceabilityLinkRoleEnum ;
    skos:definition "Role of the traceability link in the chain" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_link_role" .

mt:link_sequence_value a owl:DatatypeProperty ;
    rdfs:label "link_sequence_value" ;
    rdfs:range xsd:integer ;
    skos:definition "Position of the link in the traceability chain, where lower numbers are closer to the reported result" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:linkSequenceValue" ;
    mt:sql_identifier "mt_link_sequence" .

mt:link_to_reference_value a owl:DatatypeProperty ;
    rdfs:label "link_to_reference_value" ;
    rdfs:range xsd:string ;
    skos:definition "Reference entity, value, standard, method, or node to which this link points" ;
    skos:inScheme mt: ;
    mt:owl.filler "prov:wasInfluencedBy" ;
    mt:sql_identifier "mt_link_to_reference" .

mt:link_uncertainty_reference_value a owl:DatatypeProperty ;
    rdfs:label "link_uncertainty_reference_value" ;
    rdfs:range xsd:string ;
    skos:definition "Reference to the uncertainty contribution associated with this traceability link" ;
    skos:inScheme mt: ;
    mt:owl.filler "uq:uncertaintyReference" ;
    mt:sql_identifier "mt_link_uncertainty_reference" .

mt:matrix_or_material_value a owl:DatatypeProperty ;
    rdfs:label "matrix_or_material_value" ;
    rdfs:range xsd:string ;
    skos:definition "Matrix, material, substance, artefact, or object represented by the reference material" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:matrixOrMaterialValue" ;
    mt:sql_identifier "mt_matrix_or_material" .

mt:measurand_description_value a owl:DatatypeProperty ;
    rdfs:label "measurand_description_value" ;
    rdfs:range xsd:string ;
    skos:definition "Operational definition of the measurand, including what is measured, calculated, or assessed" ;
    skos:inScheme mt: ;
    mt:owl.filler "skos:definition" ;
    mt:sql_identifier "mt_measurand_description" .

mt:measurand_identifier_value a owl:DatatypeProperty ;
    rdfs:label "measurand_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for the measurand, quantity, indicator, or value of interest" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_measurand_identifier" .

mt:measurand_name_value a owl:DatatypeProperty ;
    rdfs:label "measurand_name_value" ;
    rdfs:range xsd:string ;
    skos:definition "Name of the measurand, quantity, indicator, or value of interest" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:label" ;
    mt:sql_identifier "mt_measurand_name" .

mt:measurement_procedure a owl:ObjectProperty ;
    rdfs:label "measurement_procedure" ;
    rdfs:range mt:MeasurementProcedure ;
    skos:definition "Procedure or method used to define, obtain, transfer, or compare the value" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:measurementProcedure" ;
    mt:sql_identifier "mt_measurement_procedure" .

mt:measurement_standard_identifier_value a owl:DatatypeProperty ;
    rdfs:label "measurement_standard_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for a measurement standard, artefact, instrument standard, or realization" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_measurement_standard_identifier" .

mt:measurement_standard_level_value a owl:DatatypeProperty ;
    rdfs:label "measurement_standard_level_value" ;
    rdfs:range xsd:string ;
    skos:definition "Position of the measurement standard in the calibration hierarchy" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:measurementStandardLevelValue" ;
    mt:sql_identifier "mt_measurement_standard_level" .

mt:measurement_standard_name_value a owl:DatatypeProperty ;
    rdfs:label "measurement_standard_name_value" ;
    rdfs:range xsd:string ;
    skos:definition "Name of the measurement standard" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:label" ;
    mt:sql_identifier "mt_measurement_standard_name" .

mt:measurement_standard_owner_value a owl:DatatypeProperty ;
    rdfs:label "measurement_standard_owner_value" ;
    rdfs:range xsd:string ;
    skos:definition "Owner, custodian, laboratory, or institute responsible for the measurement standard" ;
    skos:inScheme mt: ;
    mt:owl.filler "prov:Agent" ;
    mt:sql_identifier "mt_measurement_standard_owner" .

mt:measurement_standard_type_value a owl:ObjectProperty ;
    rdfs:label "measurement_standard_type_value" ;
    rdfs:range mt:MeasurementStandardTypeEnum ;
    skos:definition "Type or level of measurement standard" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_measurement_standard_type" .

mt:method_parameters_value a owl:DatatypeProperty ;
    rdfs:label "method_parameters_value" ;
    rdfs:range xsd:string ;
    skos:definition "Key method parameters, such as extraction conditions, incubation time, temperature, calibration model, or reporting rule" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:methodParametersValue" ;
    mt:sql_identifier "mt_method_parameters" .

mt:operator_or_software_value a owl:DatatypeProperty ;
    rdfs:label "operator_or_software_value" ;
    rdfs:range xsd:string ;
    skos:definition "Operator, laboratory, instrument system, model, or software used to apply the procedure" ;
    skos:inScheme mt: ;
    mt:owl.filler "prov:wasAssociatedWith" ;
    mt:sql_identifier "mt_operator_or_software" .

mt:procedure_description_value a owl:DatatypeProperty ;
    rdfs:label "procedure_description_value" ;
    rdfs:range xsd:string ;
    skos:definition "Description of the procedure and how it defines or transfers the value" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:description" ;
    mt:sql_identifier "mt_procedure_description" .

mt:procedure_identifier_value a owl:DatatypeProperty ;
    rdfs:label "procedure_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier of a measurement, calculation, sampling, calibration, analytical, or modelling procedure" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_procedure_identifier" .

mt:procedure_name_value a owl:DatatypeProperty ;
    rdfs:label "procedure_name_value" ;
    rdfs:range xsd:string ;
    skos:definition "Name of the procedure or method" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:label" ;
    mt:sql_identifier "mt_procedure_name" .

mt:procedure_role_value a owl:ObjectProperty ;
    rdfs:label "procedure_role_value" ;
    rdfs:range mt:ProcedureRoleEnum ;
    skos:definition "Role of the procedure in establishing traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_procedure_role" .

mt:procedure_uri_value a owl:DatatypeProperty ;
    rdfs:label "procedure_uri_value" ;
    rdfs:range xsd:anyURI ;
    skos:definition "URI or URL identifying the procedure" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:url" ;
    mt:sql_identifier "mt_procedure_uri" .

mt:reference_authority_value a owl:DatatypeProperty ;
    rdfs:label "reference_authority_value" ;
    rdfs:range xsd:string ;
    skos:definition "Authority, organization, metrology institute, standards body, or publisher responsible for the reference" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:publisher" ;
    mt:sql_identifier "mt_reference_authority" .

mt:reference_entity_identifier_value a owl:DatatypeProperty ;
    rdfs:label "reference_entity_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for a reference entity, material, standard, instrument, facility, method, or dataset" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_reference_entity_identifier" .

mt:reference_entity_name_value a owl:DatatypeProperty ;
    rdfs:label "reference_entity_name_value" ;
    rdfs:range xsd:string ;
    skos:definition "Name of the reference entity" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:label" ;
    mt:sql_identifier "mt_reference_entity_name" .

mt:reference_entity_provider_value a owl:DatatypeProperty ;
    rdfs:label "reference_entity_provider_value" ;
    rdfs:range xsd:string ;
    skos:definition "Provider, custodian, producer, laboratory, institute, or publisher of the reference entity" ;
    skos:inScheme mt: ;
    mt:owl.filler "prov:Agent" ;
    mt:sql_identifier "mt_reference_entity_provider" .

mt:reference_entity_type_value a owl:ObjectProperty ;
    rdfs:label "reference_entity_type_value" ;
    rdfs:range mt:ReferenceEntityTypeEnum ;
    skos:definition "Type of reference entity" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_reference_entity_type" .

mt:reference_entity_uri_value a owl:DatatypeProperty ;
    rdfs:label "reference_entity_uri_value" ;
    rdfs:range xsd:anyURI ;
    skos:definition "URI or URL for the reference entity" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:url" ;
    mt:sql_identifier "mt_reference_entity_uri" .

mt:reference_material_identifier_value a owl:DatatypeProperty ;
    rdfs:label "reference_material_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for a reference material or certified reference material" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_reference_material_identifier" .

mt:reference_material_lot_value a owl:DatatypeProperty ;
    rdfs:label "reference_material_lot_value" ;
    rdfs:range xsd:string ;
    skos:definition "Lot, batch, serial number, or production identifier of the reference material" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:referenceMaterialLotValue" ;
    mt:sql_identifier "mt_reference_material_lot" .

mt:reference_material_name_value a owl:DatatypeProperty ;
    rdfs:label "reference_material_name_value" ;
    rdfs:range xsd:string ;
    skos:definition "Name of the reference material" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:label" ;
    mt:sql_identifier "mt_reference_material_name" .

mt:reference_material_producer_value a owl:DatatypeProperty ;
    rdfs:label "reference_material_producer_value" ;
    rdfs:range xsd:string ;
    skos:definition "Producer, supplier, or certifying body responsible for the reference material" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:publisher" ;
    mt:sql_identifier "mt_reference_material_producer" .

mt:reference_material_type_value a owl:ObjectProperty ;
    rdfs:label "reference_material_type_value" ;
    rdfs:range mt:ReferenceMaterialTypeEnum ;
    skos:definition "Type or role of the reference material" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_reference_material_type" .

mt:reference_scope_value a owl:DatatypeProperty ;
    rdfs:label "reference_scope_value" ;
    rdfs:range xsd:string ;
    skos:definition "Scope or field of application for the reference" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:coverage" ;
    mt:sql_identifier "mt_reference_scope" .

mt:reference_used_date_value a owl:DatatypeProperty ;
    rdfs:label "reference_used_date_value" ;
    rdfs:range xsd:date ;
    skos:definition "Date at which the reference was used to establish the traceability hierarchy" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:date" ;
    mt:sql_identifier "mt_reference_used_date" .

mt:reference_version_value a owl:DatatypeProperty ;
    rdfs:label "reference_version_value" ;
    rdfs:range xsd:string ;
    skos:definition "Version, edition, revision, or publication date of the reference" ;
    skos:inScheme mt: ;
    mt:owl.filler "pav:version" ;
    mt:sql_identifier "mt_reference_version" .

mt:reported_value_identifier_value a owl:DatatypeProperty ;
    rdfs:label "reported_value_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for the reported measured, calculated, or assessed value" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_reported_value_identifier" .

mt:reported_value_unit_value a owl:DatatypeProperty ;
    rdfs:label "reported_value_unit_value" ;
    rdfs:range xsd:string ;
    skos:definition "Unit associated with the reported value" ;
    skos:inScheme mt: ;
    mt:owl.filler "qudt:unit" ;
    mt:sql_identifier "mt_reported_value_unit" .

mt:reported_value_value a owl:DatatypeProperty ;
    rdfs:label "reported_value_value" ;
    rdfs:range xsd:string ;
    skos:definition "Reported value to which the traceability statement applies" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:value" ;
    mt:sql_identifier "mt_reported_value" .

mt:result_date_value a owl:DatatypeProperty ;
    rdfs:label "result_date_value" ;
    rdfs:range xsd:dateTime ;
    skos:definition "Date or time at which the reported result was generated, measured, calculated, or issued" ;
    skos:inScheme mt: ;
    mt:owl.filler "prov:generatedAtTime" ;
    mt:sql_identifier "mt_result_date" .

mt:right_traceability_reference_value a owl:DatatypeProperty ;
    rdfs:label "right_traceability_reference_value" ;
    rdfs:range xsd:string ;
    skos:definition "Reference to the second traceability statement, chain, or basis being compared" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:rightTraceabilityReferenceValue" ;
    mt:sql_identifier "mt_right_traceability_reference" .

mt:same_measurand_definition_value a owl:DatatypeProperty ;
    rdfs:label "same_measurand_definition_value" ;
    rdfs:range xsd:boolean ;
    skos:definition "Whether the compared results use the same measurand or operational definition" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:sameMeasurandDefinitionValue" ;
    mt:sql_identifier "mt_same_measurand_definition" .

mt:same_method_or_boundary_value a owl:DatatypeProperty ;
    rdfs:label "same_method_or_boundary_value" ;
    rdfs:range xsd:boolean ;
    skos:definition "Whether the compared results use the same method-defined or boundary-defined reference" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:sameMethodOrBoundaryValue" ;
    mt:sql_identifier "mt_same_method_or_boundary" .

mt:same_reference_basis_value a owl:DatatypeProperty ;
    rdfs:label "same_reference_basis_value" ;
    rdfs:range xsd:boolean ;
    skos:definition "Whether the compared results are traceable to the same reference basis" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:sameReferenceBasisValue" ;
    mt:sql_identifier "mt_same_reference_basis" .

mt:sampling_or_specimen_definition_value a owl:DatatypeProperty ;
    rdfs:label "sampling_or_specimen_definition_value" ;
    rdfs:range xsd:string ;
    skos:definition "Definition of the sample, specimen, item, batch, population subset, or material matrix used by the method" ;
    skos:inScheme mt: ;
    mt:owl.filler "sosa:hasSample" ;
    mt:sql_identifier "mt_sampling_or_specimen_definition" .

mt:standards_applied_value a owl:DatatypeProperty ;
    rdfs:label "standards_applied_value" ;
    rdfs:range xsd:string ;
    skos:definition "Standard, guide, protocol, or normative document applied when establishing traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:conformsTo" ;
    mt:sql_identifier "mt_standards_applied" .

mt:traceability_basis a owl:ObjectProperty ;
    rdfs:label "traceability_basis" ;
    rdfs:range mt:TraceabilityBasis ;
    skos:definition "Reference basis that establishes the meaning and comparability of the value" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:traceabilityBasis" ;
    mt:sql_identifier "mt_traceability_basis" .

mt:traceability_basis_description_value a owl:DatatypeProperty ;
    rdfs:label "traceability_basis_description_value" ;
    rdfs:range xsd:string ;
    skos:definition "Description of the common reference basis that gives meaning to the result" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:description" ;
    mt:sql_identifier "mt_basis_description" .

mt:traceability_basis_identifier_value a owl:DatatypeProperty ;
    rdfs:label "traceability_basis_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for a traceability basis record" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_basis_identifier" .

mt:traceability_basis_type_value a owl:ObjectProperty ;
    rdfs:label "traceability_basis_type_value" ;
    rdfs:range mt:TraceabilityBasisTypeEnum ;
    skos:definition "Type of reference basis used to establish traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_basis_type" .

mt:traceability_chain a owl:ObjectProperty ;
    rdfs:label "traceability_chain" ;
    rdfs:range mt:TraceabilityChain ;
    skos:definition "Traceability chain or network that relates the result to a reference" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:traceabilityChain" ;
    mt:sql_identifier "mt_traceability_chain" .

mt:traceability_chain_identifier_value a owl:DatatypeProperty ;
    rdfs:label "traceability_chain_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for a traceability chain or traceability network" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_chain_identifier" .

mt:traceability_chain_name_value a owl:DatatypeProperty ;
    rdfs:label "traceability_chain_name_value" ;
    rdfs:range xsd:string ;
    skos:definition "Human-readable name of the traceability chain" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:label" ;
    mt:sql_identifier "mt_chain_name" .

mt:traceability_chain_type_value a owl:ObjectProperty ;
    rdfs:label "traceability_chain_type_value" ;
    rdfs:range mt:TraceabilityChainTypeEnum ;
    skos:definition "Type or topology of the traceability chain" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_chain_type" .

mt:traceability_link_identifier_value a owl:DatatypeProperty ;
    rdfs:label "traceability_link_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for a step, edge, or link in a traceability chain" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_link_identifier" .

mt:traceability_statement_date_value a owl:DatatypeProperty ;
    rdfs:label "traceability_statement_date_value" ;
    rdfs:range xsd:dateTime ;
    skos:definition "Date and time when the traceability statement was issued or last updated" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:modified" ;
    mt:sql_identifier "mt_statement_date" .

mt:traceability_statement_identifier_value a owl:DatatypeProperty ;
    rdfs:label "traceability_statement_identifier_value" ;
    rdfs:range xsd:string ;
    skos:definition "Identifier for a metrological traceability statement that can be referenced from another CE-RISE model" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:identifier" ;
    mt:sql_identifier "mt_statement_identifier" .

mt:traceability_statement_label_value a owl:DatatypeProperty ;
    rdfs:label "traceability_statement_label_value" ;
    rdfs:range xsd:string ;
    skos:definition "Human-readable label for the traceability statement" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:label" ;
    mt:sql_identifier "mt_statement_label" .

mt:traceability_statement_type_value a owl:ObjectProperty ;
    rdfs:label "traceability_statement_type_value" ;
    rdfs:range mt:TraceabilityStatementTypeEnum ;
    skos:definition "Type of traceability being documented" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:type" ;
    mt:sql_identifier "mt_statement_type" .

mt:traceability_status_value a owl:ObjectProperty ;
    rdfs:label "traceability_status_value" ;
    rdfs:range mt:TraceabilityStatusEnum ;
    skos:definition "Lifecycle or validity status of the traceability statement" ;
    skos:inScheme mt: ;
    mt:owl.filler "pav:version" ;
    mt:sql_identifier "mt_traceability_status" .

mt:BoundaryDefinition a owl:Class ;
    rdfs:label "BoundaryDefinition" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:procedure_standard_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:goal_scope_definition_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:procedure_standard_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:characterization_model_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:excluded_processes_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:goal_scope_definition_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:boundary_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:procedure_version_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:boundary_name_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:impact_method_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:data_source_scope_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:allocation_rule_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:goal_scope_definition_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:boundary_name_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:impact_method_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:included_processes_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:data_quality_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:procedure_standard_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:boundary_name_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:boundary_type_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:boundary_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:boundary_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:data_quality_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:impact_method_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:excluded_processes_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:included_processes_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:data_quality_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:procedure_version_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:boundary_type_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:included_processes_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:excluded_processes_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:data_source_scope_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:allocation_rule_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:characterization_model_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:characterization_model_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:data_source_scope_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:procedure_version_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:BoundaryTypeEnum ;
            owl:onProperty mt:boundary_type_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:allocation_rule_value ] ;
    skos:definition "Goal-and-scope, system boundary, scenario, allocation, or model definition used as the reference for a boundary-defined result" ;
    skos:exactMatch mt:boundaryDefinition ;
    skos:inScheme mt: ;
    mt:references "ISO 14040; ISO 14044; ISO 14067; Product Environmental Footprint; JCGM 200:2012" ;
    mt:sql_identifier "mt_boundary_definition_record" .

mt:MeasurementProcedure a owl:Class ;
    rdfs:label "MeasurementProcedure" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:procedure_version_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:procedure_role_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:environmental_conditions_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:procedure_name_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:environmental_conditions_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:anyURI ;
            owl:onProperty mt:procedure_uri_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:procedure_name_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:method_parameters_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:procedure_standard_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:procedure_description_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:operator_or_software_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:procedure_version_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:operator_or_software_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:sampling_or_specimen_definition_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:ProcedureRoleEnum ;
            owl:onProperty mt:procedure_role_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:procedure_name_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:procedure_description_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:environmental_conditions_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:sampling_or_specimen_definition_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:procedure_standard_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:sampling_or_specimen_definition_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:procedure_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:procedure_standard_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:procedure_uri_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:method_parameters_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:procedure_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:procedure_role_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:operator_or_software_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:procedure_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:method_parameters_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:procedure_description_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:procedure_version_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:procedure_uri_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ] ;
    skos:definition "Measurement, calculation, sampling, calibration, analytical, or modelling procedure used to define or transfer a value" ;
    skos:exactMatch mt:measurementProcedure ;
    skos:inScheme mt: ;
    mt:references "JCGM 200:2012; ISO/IEC 17025; ISO 5725" ;
    mt:sql_identifier "mt_procedure" .

mt:TraceabilityBasis a owl:Class ;
    rdfs:label "TraceabilityBasis" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_basis_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:common_reference_uri_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reference_scope_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_basis_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:common_reference_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_authority_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_basis_type_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:common_reference_name_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_basis_type_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:anyURI ;
            owl:onProperty mt:common_reference_uri_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:common_reference_name_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityBasisTypeEnum ;
            owl:onProperty mt:traceability_basis_type_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:common_reference_uri_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:traceability_basis_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_basis_description_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:traceability_basis_description_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_used_date_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:common_reference_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_used_date_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_authority_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:reference_used_date_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_version_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reference_version_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_scope_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:reference_scope_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:common_reference_name_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:reference_authority_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:reference_version_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:common_reference_identifier_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_basis_description_value ] ;
    skos:definition "Reference basis to which a result is related, such as an SI realization, measurement standard, reference material, standard method, or boundary definition" ;
    skos:exactMatch mt:traceabilityBasis ;
    skos:inScheme mt: ;
    mt:references "JCGM 200:2012; ISO/IEC 17025; ILAC P10" ;
    mt:sql_identifier "mt_basis" .

mt:TraceabilityChain a owl:Class ;
    rdfs:label "TraceabilityChain" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:chain_completeness_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_chain_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityChainTypeEnum ;
            owl:onProperty mt:traceability_chain_type_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:chain_notes_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_chain_type_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_chain_name_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_chain_type_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:chain_start_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:chain_end_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:chain_end_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:traceability_chain_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:chain_validation_status_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_links ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:chain_start_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:traceability_chain_name_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:chain_completeness_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:chain_notes_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:chain_end_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:ChainCompletenessEnum ;
            owl:onProperty mt:chain_completeness_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:chain_validation_status_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:chain_start_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:traceability_chain_name_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:traceability_chain_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:chain_notes_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityLink ;
            owl:onProperty mt:traceability_links ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:TraceabilityStatusEnum ;
            owl:onProperty mt:chain_validation_status_value ] ;
    skos:definition "Documented chain or network relating a measurement result to a reference" ;
    skos:exactMatch mt:traceabilityChain ;
    skos:inScheme mt: ;
    mt:references "JCGM 200:2012; ISO/IEC 17025; ILAC P10" ;
    mt:sql_identifier "mt_chain" .

mt:competence_records a owl:ObjectProperty ;
    rdfs:label "competence_records" ;
    rdfs:range mt:CompetenceRecord ;
    skos:definition "Competence, accreditation, validation, or quality system records supporting traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:competenceRecord" ;
    mt:sql_identifier "mt_competence_records" .

mt:measurement_standards a owl:ObjectProperty ;
    rdfs:label "measurement_standards" ;
    rdfs:range mt:MeasurementStandard ;
    skos:definition "Measurement standards, artefacts, instruments, and realizations used in traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:measurementStandard" ;
    mt:sql_identifier "mt_measurement_standards" .

mt:reference_entities a owl:ObjectProperty ;
    rdfs:label "reference_entities" ;
    rdfs:range mt:ReferenceEntity ;
    skos:definition "Reference entities, standards, methods, instruments, datasets, or organizations used in traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:referenceEntity" ;
    mt:sql_identifier "mt_reference_entities" .

mt:reference_materials a owl:ObjectProperty ;
    rdfs:label "reference_materials" ;
    rdfs:range mt:ReferenceMaterial ;
    skos:definition "Reference materials and certified reference materials used in traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:referenceMaterial" ;
    mt:sql_identifier "mt_reference_materials" .

mt:CalibrationRecord a owl:Class ;
    rdfs:label "CalibrationRecord" ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_interval_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:calibration_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibrated_item_type_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:calibration_method_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_certificate_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_method_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:calibration_interval_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_status_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_result_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibrated_item_type_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom mt:CalibrationStatusEnum ;
            owl:onProperty mt:calibration_status_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_method_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_status_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:calibration_laboratory_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:environmental_conditions_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_certificate_url_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:calibration_certificate_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_certificate_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_date_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_certificate_url_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:environmental_conditions_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_due_date_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:calibration_result_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_date_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_laboratory_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:calibration_due_date_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:calibrated_item_type_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibrated_item_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_laboratory_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:date ;
            owl:onProperty mt:calibration_date_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:anyURI ;
            owl:onProperty mt:calibration_certificate_url_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_interval_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibrated_item_identifier_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:calibrated_item_identifier_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:uncertainty_reference_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:calibration_laboratory_accreditation_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_laboratory_accreditation_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:evidence_reference_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_due_date_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:environmental_conditions_value ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty mt:calibration_laboratory_accreditation_value ],
        [ a owl:Restriction ;
            owl:minCardinality 0 ;
            owl:onProperty mt:calibration_result_value ],
        [ a owl:Restriction ;
            owl:maxCardinality 1 ;
            owl:onProperty mt:evidence_reference_value ] ;
    skos:definition "Calibration, comparison, verification, or check record contributing to a traceability chain" ;
    skos:exactMatch mt:calibrationRecord ;
    skos:inScheme mt: ;
    mt:references "ISO/IEC 17025; ILAC P10; JCGM 200:2012" ;
    mt:sql_identifier "mt_calibration" .

mt:data_quality_reference_value a owl:DatatypeProperty ;
    rdfs:label "data_quality_reference_value" ;
    rdfs:range xsd:string ;
    skos:definition "Reference to a data quality assessment associated with this traceability record" ;
    skos:inScheme mt: ;
    mt:owl.filler "dqf:dataQualityReference" ;
    mt:sql_identifier "mt_data_quality_reference" .

mt:environmental_conditions_value a owl:DatatypeProperty ;
    rdfs:label "environmental_conditions_value" ;
    rdfs:range xsd:string ;
    skos:definition "Environmental, operating, or procedural conditions relevant to traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "ssn:hasProperty" ;
    mt:sql_identifier "mt_environmental_conditions" .

mt:procedure_standard_value a owl:DatatypeProperty ;
    rdfs:label "procedure_standard_value" ;
    rdfs:range xsd:string ;
    skos:definition "Standardized procedure, protocol, guide, or method document" ;
    skos:inScheme mt: ;
    mt:owl.filler "dcterms:conformsTo" ;
    mt:sql_identifier "mt_procedure_standard" .

mt:procedure_version_value a owl:DatatypeProperty ;
    rdfs:label "procedure_version_value" ;
    rdfs:range xsd:string ;
    skos:definition "Version, edition, revision, or publication date of the procedure" ;
    skos:inScheme mt: ;
    mt:owl.filler "pav:version" ;
    mt:sql_identifier "mt_procedure_version" .

mt:quantity_kind_value a owl:DatatypeProperty ;
    rdfs:label "quantity_kind_value" ;
    rdfs:range xsd:string ;
    skos:definition "Kind of quantity or indicator being traced, such as mass, length, concentration, carbon footprint, or circularity indicator" ;
    skos:inScheme mt: ;
    mt:owl.filler "qudt:hasQuantityKind" ;
    mt:sql_identifier "mt_quantity_kind" .

mt:quantity_unit_value a owl:DatatypeProperty ;
    rdfs:label "quantity_unit_value" ;
    rdfs:range xsd:string ;
    skos:definition "Unit in which the value or measurand is expressed" ;
    skos:inScheme mt: ;
    mt:owl.filler "qudt:unit" ;
    mt:sql_identifier "mt_quantity_unit" .

mt:statement_notes_value a owl:DatatypeProperty ;
    rdfs:label "statement_notes_value" ;
    rdfs:range xsd:string ;
    skos:definition "Additional notes about the traceability statement" ;
    skos:inScheme mt: ;
    mt:owl.filler "rdfs:comment" ;
    mt:sql_identifier "mt_statement_notes" .

mt:ChainCompletenessEnum a owl:Class ;
    rdfs:label "ChainCompletenessEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#complete> <https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#partial> <https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#inferred> <https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#gap_identified> <https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#unavailable> ) ;
    skos:definition "Completeness of a traceability chain" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#complete>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#gap_identified>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#inferred>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#partial>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ChainCompletenessEnum#unavailable> .

mt:ComparabilityDecisionEnum a owl:Class ;
    rdfs:label "ComparabilityDecisionEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#comparable> <https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#comparable_with_conditions> <https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#not_comparable> <https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#insufficient_information> <https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#not_evaluated> ) ;
    skos:definition "Decision values for metrological comparability assessments" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#comparable>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#comparable_with_conditions>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#insufficient_information>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#not_comparable>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ComparabilityDecisionEnum#not_evaluated> .

mt:CompetenceStatusEnum a owl:Class ;
    rdfs:label "CompetenceStatusEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#active> <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#suspended> <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#expired> <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#withdrawn> <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#not_applicable> <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#not_available> ) ;
    skos:definition "Status values for competence and accreditation records" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#active>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#expired>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#not_applicable>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#not_available>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#suspended>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CompetenceStatusEnum#withdrawn> .

mt:TraceabilityChainTypeEnum a owl:Class ;
    rdfs:label "TraceabilityChainTypeEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#linear_calibration_chain> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#branched_calibration_network> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#method_traceability_chain> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#boundary_traceability_chain> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#hybrid_chain> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#not_documented> ) ;
    skos:definition "Topology or kind of traceability chain" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#boundary_traceability_chain>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#branched_calibration_network>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#hybrid_chain>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#linear_calibration_chain>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#method_traceability_chain>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityChainTypeEnum#not_documented> .

mt:calibration_records a owl:ObjectProperty ;
    rdfs:label "calibration_records" ;
    rdfs:range mt:CalibrationRecord ;
    skos:definition "Calibration, comparison, verification, or check records that support traceability" ;
    skos:inScheme mt: ;
    mt:owl.filler "mt:calibrationRecord" ;
    mt:sql_identifier "mt_calibration_records" .

mt:CalibrationStatusEnum a owl:Class ;
    rdfs:label "CalibrationStatusEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#valid> <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#valid_with_restrictions> <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#due> <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#expired> <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#failed> <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#superseded> <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#not_available> ) ;
    skos:definition "Status of a calibration or equivalent record" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#due>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#expired>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#failed>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#not_available>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#superseded>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#valid>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/CalibrationStatusEnum#valid_with_restrictions> .

mt:ReferenceMaterialTypeEnum a owl:Class ;
    rdfs:label "ReferenceMaterialTypeEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#certified_reference_material> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#reference_material> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#calibrator> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#quality_control_material> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#matrix_reference_material> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#in_house_reference_material> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#other> ) ;
    skos:definition "Types of reference materials" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#calibrator>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#certified_reference_material>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#in_house_reference_material>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#matrix_reference_material>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#other>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#quality_control_material>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceMaterialTypeEnum#reference_material> .

mt:assigned_value_uncertainty_value a owl:DatatypeProperty ;
    rdfs:label "assigned_value_uncertainty_value" ;
    rdfs:range xsd:string ;
    skos:definition "Uncertainty associated with the assigned value" ;
    skos:inScheme mt: ;
    mt:owl.filler "uq:uncertaintyReference" ;
    mt:sql_identifier "mt_assigned_value_uncertainty" .

mt:assigned_value_unit_value a owl:DatatypeProperty ;
    rdfs:label "assigned_value_unit_value" ;
    rdfs:range xsd:string ;
    skos:definition "Unit associated with the assigned value" ;
    skos:inScheme mt: ;
    mt:owl.filler "qudt:unit" ;
    mt:sql_identifier "mt_assigned_value_unit" .

mt:assigned_value_value a owl:DatatypeProperty ;
    rdfs:label "assigned_value_value" ;
    rdfs:range xsd:string ;
    skos:definition "Assigned value of a measurement standard, reference material, calibrator, or conventional reference" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:value" ;
    mt:sql_identifier "mt_assigned_value" .

mt:TraceabilityStatementTypeEnum a owl:Class ;
    rdfs:label "TraceabilityStatementTypeEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#si_traceability> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#method_defined_traceability> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#boundary_defined_traceability> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#reference_material_traceability> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#conventional_reference_traceability> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#hybrid_traceability> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#not_evaluated> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#other> ) ;
    skos:definition "Kinds of traceability statements supported by this model" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#boundary_defined_traceability>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#conventional_reference_traceability>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#hybrid_traceability>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#method_defined_traceability>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#not_evaluated>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#other>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#reference_material_traceability>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatementTypeEnum#si_traceability> .

mt:ProcedureRoleEnum a owl:Class ;
    rdfs:label "ProcedureRoleEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#measurement> <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#calibration> <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#sampling> <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#analytical_method> <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#calculation> <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#modelling> <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#quality_control> <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#reporting> <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#other> ) ;
    skos:definition "Roles of procedures in a traceability statement" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#analytical_method>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#calculation>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#calibration>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#measurement>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#modelling>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#other>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#quality_control>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#reporting>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ProcedureRoleEnum#sampling> .

mt:BoundaryTypeEnum a owl:Class ;
    rdfs:label "BoundaryTypeEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#system_boundary> <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#goal_and_scope> <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#functional_unit> <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#allocation_boundary> <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#scenario_definition> <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#temporal_boundary> <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#geographical_boundary> <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#technological_boundary> <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#characterization_model> <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#other> ) ;
    skos:definition "Types of boundary or scope definitions" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#allocation_boundary>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#characterization_model>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#functional_unit>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#geographical_boundary>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#goal_and_scope>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#other>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#scenario_definition>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#system_boundary>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#technological_boundary>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/BoundaryTypeEnum#temporal_boundary> .

mt:MeasurementStandardTypeEnum a owl:Class ;
    rdfs:label "MeasurementStandardTypeEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#international_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#national_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#primary_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#secondary_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#reference_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#working_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#transfer_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#instrument_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#unit_realization> <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#other> ) ;
    skos:definition "Types or hierarchy levels of measurement standards" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#instrument_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#international_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#national_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#other>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#primary_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#reference_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#secondary_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#transfer_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#unit_realization>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/MeasurementStandardTypeEnum#working_standard> .

mt:TraceabilityLinkRoleEnum a owl:Class ;
    rdfs:label "TraceabilityLinkRoleEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#calibration> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#comparison> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#verification> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#correction> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#value_transfer> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#method_definition> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#boundary_definition> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#data_source_mapping> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#software_or_model_execution> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#other> ) ;
    skos:definition "Roles of links in a traceability chain" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#boundary_definition>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#calibration>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#comparison>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#correction>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#data_source_mapping>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#method_definition>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#other>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#software_or_model_execution>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#value_transfer>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityLinkRoleEnum#verification> .

mt:TraceabilityStatusEnum a owl:Class ;
    rdfs:label "TraceabilityStatusEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#draft> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#active> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#reviewed> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#verified> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#partial> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#expired> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#superseded> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#unavailable> ) ;
    skos:definition "Lifecycle and validation status values for traceability records" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#active>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#draft>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#expired>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#partial>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#reviewed>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#superseded>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#unavailable>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityStatusEnum#verified> .

mt:reference_valid_from_value a owl:DatatypeProperty ;
    rdfs:label "reference_valid_from_value" ;
    rdfs:range xsd:date ;
    skos:definition "Start date of validity for the reference entity or assigned value" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:validFrom" ;
    mt:sql_identifier "mt_reference_valid_from" .

mt:reference_valid_until_value a owl:DatatypeProperty ;
    rdfs:label "reference_valid_until_value" ;
    rdfs:range xsd:date ;
    skos:definition "End date of validity for the reference entity or assigned value" ;
    skos:inScheme mt: ;
    mt:owl.filler "schema:validThrough" ;
    mt:sql_identifier "mt_reference_valid_until" .

mt:TraceabilityBasisTypeEnum a owl:Class ;
    rdfs:label "TraceabilityBasisTypeEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#si_unit_realization> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#measurement_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#certified_reference_material> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#reference_material> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#measurement_procedure> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#standard_method> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#system_boundary> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#characterization_model> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#data_source_or_dataset> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#conventional_reference> <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#other> ) ;
    skos:definition "Types of references that can serve as the basis for traceability" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#certified_reference_material>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#characterization_model>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#conventional_reference>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#data_source_or_dataset>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#measurement_procedure>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#measurement_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#other>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#reference_material>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#si_unit_realization>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#standard_method>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/TraceabilityBasisTypeEnum#system_boundary> .

mt:EvidenceTypeEnum a owl:Class ;
    rdfs:label "EvidenceTypeEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#calibration_certificate> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#reference_material_certificate> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#test_report> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#method_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#procedure_document> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#accreditation_record> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#proficiency_test> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#validation_report> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#dataset_reference> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#software_record> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#boundary_document> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#supplier_declaration> <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#other> ) ;
    skos:definition "Types of evidence used to support traceability" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#accreditation_record>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#boundary_document>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#calibration_certificate>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#dataset_reference>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#method_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#other>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#procedure_document>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#proficiency_test>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#reference_material_certificate>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#software_record>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#supplier_declaration>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#test_report>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/EvidenceTypeEnum#validation_report> .

mt:ReferenceEntityTypeEnum a owl:Class ;
    rdfs:label "ReferenceEntityTypeEnum" ;
    owl:unionOf ( <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#si_definition> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#national_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#international_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#working_standard> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#instrument> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#reference_material> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#calibration_certificate> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#method_document> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#dataset> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#software> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#boundary_document> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#organization> <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#other> ) ;
    skos:definition "Types of reference entities used in traceability records" ;
    skos:inScheme mt: ;
    linkml:permissible_values <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#boundary_document>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#calibration_certificate>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#dataset>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#instrument>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#international_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#method_document>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#national_standard>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#organization>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#other>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#reference_material>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#si_definition>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#software>,
        <https://ce-rise-models.codeberg.page/metrological-traceability/ReferenceEntityTypeEnum#working_standard> .

mt:uncertainty_reference_value a owl:DatatypeProperty ;
    rdfs:label "uncertainty_reference_value" ;
    rdfs:range xsd:string ;
    skos:definition "Reference to an uncertainty statement, uncertainty budget, or uncertainty component associated with this traceability record" ;
    skos:inScheme mt: ;
    mt:owl.filler "uq:uncertaintyReference" ;
    mt:sql_identifier "mt_uncertainty_reference" .

mt:evidence_reference_value a owl:DatatypeProperty ;
    rdfs:label "evidence_reference_value" ;
    rdfs:range xsd:string ;
    skos:definition "Reference to supporting evidence such as a certificate, report, procedure, dataset, standard, or software record" ;
    skos:inScheme mt: ;
    mt:owl.filler "prov:wasDerivedFrom" ;
    mt:sql_identifier "mt_evidence_reference_value" .


