https://ontology.unifiedcyberontology.org/uco/observable/WirelessNetworkConnectionFacet
A wireless network connection facet is a grouping of characteristics unique to a connection (completed or attempted) across an IEEE 802.11 standards-conformant digital network (a group of two or more computer systems linked together). [based on https://www.webopedia.com/TERM/N/network.html]
Instances of observable:WirelessNetworkConnectionFacet can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
---|---|---|---|---|
observable:WirelessNetworkConnectionFacet | ||||
observable:baseStation | 1 |
xsd:string
|
||
observable:password | 1 |
xsd:string
|
||
observable:ssid | 1 |
xsd:string
|
||
observable:wirelessNetworkSecurityMode | 1 |
@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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix vocabulary: <https://ontology.unifiedcyberontology.org/uco/vocabulary/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:WirelessNetworkConnectionFacet a owl:Class,
sh:NodeShape ;
rdfs:label "WirelessNetworkConnectionFacet"@en ;
rdfs:comment "A wireless network connection facet is a grouping of characteristics unique to a connection (completed or attempted) across an IEEE 802.11 standards-conformant digital network (a group of two or more computer systems linked together). [based on https://www.webopedia.com/TERM/N/network.html]"@en ;
rdfs:subClassOf core:Facet ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:baseStation ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:password ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:ssid ],
[ sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:or ( [ sh:datatype vocabulary:WirelessNetworkSecurityModeVocab ] [ sh:datatype xsd:string ] ) ;
sh:path observable:wirelessNetworkSecurityMode ],
[ sh:message "Value is not member of the vocabulary WirelessNetworkSecurityModeVocab." ;
sh:or ( [ sh:datatype vocabulary:WirelessNetworkSecurityModeVocab ;
sh:in ( "None"^^vocabulary:WirelessNetworkSecurityModeVocab "WEP"^^vocabulary:WirelessNetworkSecurityModeVocab "WPA"^^vocabulary:WirelessNetworkSecurityModeVocab "WPA2-PSK"^^vocabulary:WirelessNetworkSecurityModeVocab "WPA2-Enterprise"^^vocabulary:WirelessNetworkSecurityModeVocab "WPA3-PSK"^^vocabulary:WirelessNetworkSecurityModeVocab "WPA3-Enterprise"^^vocabulary:WirelessNetworkSecurityModeVocab ) ] [ sh:datatype xsd:string ] ) ;
sh:path observable:wirelessNetworkSecurityMode ] ;
sh:targetClass observable:WirelessNetworkConnectionFacet .