bedeo:has_legal_name


URI

https://csse.utoronto.ca/has_legal_name

Label

Has legal name

Description

Provides the legal name of an entity

Inherits from

Usage

DOMAINPROPERTYRANGE
bedeo:organization bedeo:has_legal_name xsd:string

Implementation

@prefix bedeo: <https://csse.utoronto.ca/> .
@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#> .

bedeo:has_legal_name a owl:DatatypeProperty ;
    rdfs:label "Has legal name"@en ;
    rdfs:comment "Provides the legal name of an entity"@en ;
    rdfs:domain bedeo:organization ;
    rdfs:range xsd:string ;
    rdfs:subPropertyOf bedeo:has_name .