﻿@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix unit: <https://w3id.org/uom/> .

unit:SI_code a owl:AnnotationProperty ;
    rdfs:label "SI code" .

unit:UCUM_code a owl:AnnotationProperty ;
    rdfs:label "UCUM code" .

unit:kg.m-3.MPa-1 a owl:NamedIndividual ;
    rdfs:label "kilogram per cubic metre megapascal"@en ;
    skos:altLabel "kilogram per cubic meter megapascal"@en ;
    skos:definition "A unit which is equal to 10³ gram per 1 cubic metre by 10⁶ pascal."@en ;
    unit:SI_code "kg m-3 MPa-1" ;
    unit:UCUM_code "kg.m-3.MPa-1",
        "kg/m3/MPa" .

