Example Clock
Turtle
@prefix ex: <https://saref.etsi.org/saref4grid/v2.1.1/example/Clock/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix oneM2M: <http://www.owl-ontologies.com/oneM2M#> .
@prefix saref: <https://saref.etsi.org/core/> .
@prefix s4grid: <https://saref.etsi.org/saref4grid/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
<https://saref.etsi.org/saref4grid/v2.1.1/example/Clock#> a dctype:Dataset ;
dcterms:license <https://forge.etsi.org/etsi-software-license> ;
dcterms:conformsTo <https://saref.etsi.org/saref4grid/v2.1.1/> ;
dcterms:title "Example Clock"@en ;
dcterms:description "Example Clock"@en .
#################################################################
# Object Properties
#################################################################
s4grid:hasClock a owl:ObjectProperty .
#################################################################
# Data properties
#################################################################
s4grid:hasClockBase a owl:DatatypeProperty .
s4grid:hasDaylightSavingsBegin a owl:DatatypeProperty .
s4grid:hasDaylightSavingsDeviation a owl:DatatypeProperty .
s4grid:hasDaylightSavingsEnabled a owl:DatatypeProperty .
s4grid:hasDaylightSavingsEnd a owl:DatatypeProperty .
s4grid:hasObis a owl:DatatypeProperty .
s4grid:hasStatus a owl:DatatypeProperty .
s4grid:hasTime a owl:DatatypeProperty .
s4grid:hasTimeZone a owl:DatatypeProperty .
#################################################################
# Classes
#################################################################
s4grid:Clock a owl:Class .
s4grid:GridMeter a owl:Class .
#################################################################
# Individuals
#################################################################
ex:Meter1234 a s4grid:GridMeter,
owl:NamedIndividual ;
s4grid:hasClock ex:Clock1234 .
ex:Clock1234 a s4grid:Clock,
owl:NamedIndividual ;
s4grid:hasClockBase "4"^^xsd:int ;
s4grid:hasDaylightSavingsBegin "2023-03-26T02:00:00"^^xsd:dateTime ;
s4grid:hasDaylightSavingsDeviation "60"^^xsd:integer ;
s4grid:hasDaylightSavingsEnabled "true"^^xsd:boolean ;
s4grid:hasDaylightSavingsEnd "2023-10-29T03:00:00"^^xsd:dateTime ;
s4grid:hasObis "0-0:1.0.0.255"^^xsd:string ;
s4grid:hasStatus "1"^^xsd:int ;
s4grid:hasTime "2023-05-30T09:00:00"^^xsd:dateTime ;
s4grid:hasTimeZone "120"^^xsd:long .