snap:ObjectAggregate leaf node


URI

http://www.ifomis.org/bfo/1.1/snap#ObjectAggregate

Label

object_aggregate

Description

Definition: A material entity [snap:MaterialEntity] that is a mereological sum of separate object [snap:Object] entities and possesses non-connected boundaries. - Examples: a heap of stones, a group of commuters on the subway, a collection of random bacteria, a flock of geese, the patients in a hospital - Synonyms: substance aggregate

Usage

Instances of snap:ObjectAggregate can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class owl:Thing
dc:contributor owl:AnnotationProperty owl:Thing
dc:creator owl:AnnotationProperty owl:Thing
dc:format owl:AnnotationProperty owl:Thing
dc:identifier owl:AnnotationProperty owl:Thing
dc:language owl:AnnotationProperty owl:Thing
dc:publisher owl:AnnotationProperty owl:Thing
dc:rights owl:AnnotationProperty owl:Thing
dc:source owl:AnnotationProperty owl:Thing
dc:title owl:AnnotationProperty owl:Thing

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix snap: <http://www.ifomis.org/bfo/1.1/snap#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

snap:ObjectAggregate a owl:Class ;
    rdfs:label "object_aggregate"^^xsd:string ;
    rdfs:comment "Definition: A material entity [snap:MaterialEntity] that is a mereological sum of separate object [snap:Object] entities and possesses non-connected boundaries."^^xsd:string,
        "Examples: a heap of stones, a group of commuters on the subway, a collection of random bacteria, a flock of geese, the patients in a hospital"^^xsd:string,
        "Synonyms: substance aggregate"^^xsd:string ;
    rdfs:subClassOf snap:MaterialEntity ;
    owl:disjointWith snap:FiatObjectPart,
        snap:Object .