is related to


URI

http://semanticscience.org/resource/isRelatedTo

Label

is related to

Description

A is related to B iff there is some relation between A and B.

Usage

DOMAINPROPERTYRANGE
entity is related to entity

Implementation

@prefix dct: <http://purl.org/dc/terms/> .
@prefix ns0: <http://schema.org/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sio: <http://semanticscience.org/resource/> .

sio:isRelatedTo a owl:ObjectProperty,
        owl:SymmetricProperty ;
    rdfs:label "is related to"@en ;
    dct:description "A is related to B iff there is some relation between A and B."@en ;
    ns0:comment "'is related to' is the top level relation in SIO" ;
    sio:subset "core",
        "relations+" ;
    rdfs:domain sio:Entity ;
    rdfs:isDefinedBy <http://semanticscience.org/ontology/sio/v1.53/sio-subset-labels.owl> ;
    rdfs:range sio:Entity .