crm:P90_has_value leaf node


URI

http://www.cidoc-crm.org/cidoc-crm/P90_has_value

Label

P90 has value

Description

Scope note:
This property allows an E54 Dimension to be approximated by an E60 Number primitive.

Examples:
- height of silver cup 232 (E54) has value 226 (E60)

In First Order Logic:
P90(x,y) ⊃ E54(x)
P90(x,y) ⊃ E60(y)

Usage

DOMAINPROPERTYRANGE
crm:E54_Dimension crm:P90_has_value owl:Thing (inferred)

Implementation

@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

crm:P90_has_value a owl:DatatypeProperty ;
    rdfs:label "P90 has value"@en ;
    rdfs:comment """Scope note:
This property allows an E54 Dimension to be approximated by an E60 Number primitive.

Examples:
- height of silver cup 232 (E54) has value 226 (E60)

In First Order Logic:
P90(x,y) ⊃ E54(x)
P90(x,y) ⊃ E60(y)"""@en ;
    rdfs:domain crm:E54_Dimension ;
    skos:notation "P90"^^xsd:string .