https://ontology.unifiedcyberontology.org/uco/observable/CellSiteFacet
A cell site facet contains the metadata surrounding the cell site.
Instances of observable:CellSiteFacet can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
---|---|---|---|---|
observable:CellSiteFacet | ||||
observable:cellSiteCountryCode | 1 |
xsd:string
|
||
observable:cellSiteIdentifier | 1 |
xsd:string
|
||
observable:cellSiteLocationAreaCode | 1 |
xsd:string
|
||
observable:cellSiteNetworkCode | 1 |
xsd:string
|
||
observable:cellSiteType | 1 |
xsd:string
|
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:CellSiteFacet a owl:Class,
sh:NodeShape ;
rdfs:label "CellSiteFacet"@en ;
rdfs:comment "A cell site facet contains the metadata surrounding the cell site."@en ;
rdfs:subClassOf core:Facet ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:cellSiteCountryCode ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:cellSiteIdentifier ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:cellSiteLocationAreaCode ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:cellSiteNetworkCode ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:cellSiteType ] ;
sh:targetClass observable:CellSiteFacet .