observable:WirelessNetworkConnectionFacet leaf node


URI

https://ontology.unifiedcyberontology.org/uco/observable/WirelessNetworkConnectionFacet

Label

WirelessNetworkConnectionFacet

Description

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]

Usage

Instances of observable:WirelessNetworkConnectionFacet can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class owl:Thing
types:threadNextItem owl:ObjectProperty The link to a next item in a thread. owl:Thing
types:threadPreviousItem owl:ObjectProperty A direct link to a previous item in a thread. owl:Thing

Property Shapes

By the associated SHACL property shapes, instances of observable:WirelessNetworkConnectionFacet can have the following properties:

PROPERTY

PROPERTY TYPE

DESCRIPTION

MIN COUNT

MAX COUNT

LOCAL RANGE
(type range for property on this class)

GLOBAL RANGE
(type range for property globally)

observable:WirelessNetworkConnectionFacet
observable:baseStation owl:DatatypeProperty The base station.
1 xsd:string
xsd:string
observable:password owl:DatatypeProperty Specifies an authentication password.
1 xsd:string
xsd:string
observable:ssid owl:DatatypeProperty Network identifier.
1 xsd:string
xsd:string
observable:wirelessNetworkSecurityMode owl:DatatypeProperty Specifies the security mode of a wireless network (None, WEP, WPA, etc).
1 owl:Thing

Implementation

@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 .