@prefix dcterms: <http://purl.org/dc/terms/> .
@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 s4dmgt: <https://saref.etsi.org/saref4dmgt/> .
@prefix s4syst: <https://saref.etsi.org/saref4syst/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

s4dmgt:ManagementConnection rdfs:subClassOf [ a owl:Class ;
            owl:intersectionOf ( s4syst:Connection [ a owl:Restriction ;
                        owl:onProperty s4syst:connectsSystem ;
                        owl:someValuesFrom s4dmgt:Client ] [ a owl:Restriction ;
                        owl:onProperty s4syst:connectsSystem ;
                        owl:someValuesFrom s4dmgt:Server ] ) ] .

s4dmgt:connectedToServer rdfs:range s4dmgt:Server .

s4dmgt:hasConnectedClient rdfs:domain s4dmgt:Server .

<https://saref.etsi.org/saref4dmgt/v1.1.1/example/base-pattern#> dcterms:references s4dmgt:Server .

<https://saref.etsi.org/saref4dmgt/v1.1.1/> dcterms:references s4dmgt:Server ;
    dcterms:subject s4dmgt:Server .

s4dmgt:Server a owl:Class ;
    rdfs:label "Server"@en ;
    dcterms:isReferencedBy <https://saref.etsi.org/saref4dmgt/v1.1.1/>,
        <https://saref.etsi.org/saref4dmgt/v1.1.1/example/base-pattern#> ;
    rdfs:comment """A DM Server is the software entity which is responsible for performing DM operations on a fleet of Devices. It exposes the set of available operations to an entity that needs to trigger an operation, such as a manufacturer or a Customer Care service. 

The DM Server is a endpoint, generally secured, with which DM Clients communicate. 

The protocol used between Server and Client is not in the scope of this ontology. It can follow a DM standard such as CWMP or LwM2M, or be completely proprietary."""@en ;
    rdfs:isDefinedBy <https://saref.etsi.org/saref4dmgt/v1.1.1/> ;
    rdfs:seeAlso <https://saref.etsi.org/saref4dmgt/v1.1.1/> ;
    rdfs:subClassOf s4syst:System ;
    skos:hiddenLabel "Server" .

