observable:language leaf node


URI

https://unifiedcyberontology.org/ontology/uco/observable#language

Label

language

Description

Specifies the language the string is written in, e.g. English.
For consistency, it is strongly recommended to use the ISO 639-2 language code, if available. Please see http://www.loc.gov/standards/iso639-2/php/code_list.php for a list of ISO 639-2 codes.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) observable:language xsd:string

Implementation

@prefix observable: <https://unifiedcyberontology.org/ontology/uco/observable#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:language a owl:DatatypeProperty ;
    rdfs:label "language"@en ;
    rdfs:comment """Specifies the language the string is written in, e.g. English.
          For consistency, it is strongly recommended to use the ISO 639-2 language code, if available. Please see http://www.loc.gov/standards/iso639-2/php/code_list.php for a list of ISO 639-2 codes."""@en ;
    rdfs:range xsd:string .