The SEAS Time Ontology.

IRI:
http://www.w3.org/2006/time#
Version IRI:
https://w3id.org/seas/TimeOntology-1.0
Current version:
v1.0
Authors:
http://www.maxime-lefrancois.info/me#
Imported Ontologies:
http://www.w3.org/2006/time# (visualise it with LODE)
https://w3id.org/seas/EvaluationOntology (visualise it with LODE)
Other visualisation:
Ontology source

Table of Content

  1. Classes
  2. Object Properties
  3. Data Properties
  4. Named Individuals
  5. Annotation Properties
  6. Namespace Declarations

Classes

Fixed Duration Sumc back to ToC or Class ToC

IRI: https://w3id.org/seas/FixedDurationSum

is defined by
https://w3id.org/seas/TimeOntology
Utility class to qualify the relation between a property and its sum over a time interval whose duration is fixed. For example: ``` [] a seas:FixedDurationSum ; seas:summedProperty <fridge/1/consumptionPower> ; seas:sumProperty <fridge/1/consumption> ; seas:sumDuration "PT24H"^^xsd:duration . ``` means that at any time, the value of `<fridge/1/consumption>` is the sum of `<fridge/1/consumptionPower>` over the past day.
has super-classes
Time Sumc
is in domain of
sum durationdp

Fixed Start Sumc back to ToC or Class ToC

IRI: https://w3id.org/seas/FixedStartSum

is defined by
https://w3id.org/seas/TimeOntology
Utility class to qualify the relation between a property and its sum over a time interval whose start is fixed. For example: ``` [] a seas:FixedStartSum ; seas:summedProperty <fridge/1/consumptionPower> ; seas:sumProperty <fridge/1/consumption> ; seas:sumStart "2014-02-24T00:00:00Z"^^xsd:dateTime . ``` means that at any time, the value of `<fridge/1/consumption>` is the sum of `<fridge/1/consumptionPower>` since February 24th 2014.
has super-classes
Time Sumc
is in domain of
sum startdp

Instantaneous Evaluationc back to ToC or Class ToC

IRI: https://w3id.org/seas/InstantaneousEvaluation

is defined by
https://w3id.org/seas/TimeOntology
The class of evaluations that are relative to an instant
has super-classes
evaluation
has temporal context some instant

Time Average Evaluationc back to ToC or Class ToC

IRI: https://w3id.org/seas/TimeAverageEvaluation

is defined by
https://w3id.org/seas/TimeOntology
The given value is the average of the quantity over the temporal context.
has super-classes
Time Interval Evaluationc

Time Constant Evaluationc back to ToC or Class ToC

IRI: https://w3id.org/seas/TimeConstantEvaluation

is defined by
https://w3id.org/seas/TimeOntology
The given value is the value of the quantity at any instant of the temporal context.
has super-classes
Time Interval Evaluationc

Time Interval Evaluationc back to ToC or Class ToC

IRI: https://w3id.org/seas/TimeIntervalEvaluation

is defined by
https://w3id.org/seas/TimeOntology
The class of evaluations that are relative to a time interval
has super-classes
evaluation
has temporal context some proper interval
has sub-classes
Time Average Evaluationc, Time Constant Evaluationc, Time Maximum Evaluationc, Time Minimum Evaluationc

Time Maximum Evaluationc back to ToC or Class ToC

IRI: https://w3id.org/seas/TimeMaximumEvaluation

is defined by
https://w3id.org/seas/TimeOntology
The given value is the maximum of the quantity over the temporal context.
has super-classes
Time Interval Evaluationc

Time Minimum Evaluationc back to ToC or Class ToC

IRI: https://w3id.org/seas/TimeMinimumEvaluation

is defined by
https://w3id.org/seas/TimeOntology
The given value is the minimum of the quantity over the temporal context.
has super-classes
Time Interval Evaluationc

Time Sumc back to ToC or Class ToC

IRI: https://w3id.org/seas/TimeSum

is defined by
https://w3id.org/seas/TimeOntology
Utility class to qualify the relation between a property and its sum over a time interval. Two sub classes of seas:TimeSum enable to further describe the time interval over which the sum is computed: `seas:FixedStartSum`, and `seas:FixedDurationSum`.
has sub-classes
Fixed Duration Sumc, Fixed Start Sumc
is in domain of
sum propertyop, summed propertyop

Object Properties

event frequencyop back to ToC or Object Property ToC

IRI: https://w3id.org/seas/eventFrequency

is defined by
https://w3id.org/seas/TimeOntology
Links a feature of interest to a frequency of the events during a temporal context. Functional sub properties of `seas:eventFrequency` define the semantics of the event.
has super-properties
has property

event numberop back to ToC or Object Property ToC

IRI: https://w3id.org/seas/eventNumber

is defined by
https://w3id.org/seas/TimeOntology
Links a feature of interest to a number of events during a temporal context. Functional sub properties of `seas:eventNumber` define the semantics of the event. For example, if a window was closed 5 times during last night: ``` seas:closingNumber a owl:ObjectProperty , owl:FunctionalProperty ; rdfs:subPropertyOf seas:stateChangeNumber . <window> seas:closingNumber <window/closingNumber> . <window/closingNumber> seas:evaluation <window/closingNumber/evaluation/1> . <window/closingNumber/evaluation/1> seas:evaluatedValue 5 ; seas:hasTemporalContext [ time:hasBeginning [ time:asXSDDateTime "2016-09-25T23:00:00Z" ] ; time:hasEnd [ time:asXSDDateTime "2016-09-26T07:00:00Z" ] ; ] ```
has super-properties
has property

state change frequencyop back to ToC or Object Property ToC

IRI: https://w3id.org/seas/stateChangeFrequency

is defined by
https://w3id.org/seas/TimeOntology
Links a feature of interest to the frequency of experienced property value changes during the considered temporal context. Functional sub properties of `seas:stateChangeFrequency` define the semantics of the property.
has super-properties
has property

state change numberop back to ToC or Object Property ToC

IRI: https://w3id.org/seas/stateChangeNumber

is defined by
https://w3id.org/seas/TimeOntology
Links a feature of interest to the number of changes the value of a property experienced during the considered temporal context. Functional sub properties of `seas:stateDuration` define the semantics of the property. For example, if a window was opened and closed 5 times during last night: ``` seas:openCloseChangeNumber a owl:ObjectProperty , owl:FunctionalProperty ; rdfs:subPropertyOf seas:stateChangeNumber . <window> seas:openCloseChangeNumber <window/openCloseChangeNumber> . <window/openCloseChangeNumber> seas:evaluation <window/openCloseChangeNumber/evaluation/1> . <window/openCloseChangeNumber/evaluation/1> seas:evaluatedValue 5 ; seas:hasTemporalContext [ time:hasBeginning [ time:asXSDDateTime "2016-09-25T23:00:00Z" ] ; time:hasEnd [ time:asXSDDateTime "2016-09-26T07:00:00Z" ] ; ] ```
has super-properties
has property

state durationop back to ToC or Object Property ToC

IRI: https://w3id.org/seas/stateDuration

is defined by
https://w3id.org/seas/TimeOntology
Links a feature of interest to the duration during which a property has a given state during the considered temporal context. Functional sub properties of `seas:stateDuration` define the semantics of the property and the state. For example, if a window was open during 2 hours last night: ``` seas:openDuration a owl:ObjectProperty , owl:FunctionalProperty ; rdfs:subPropertyOf seas:stateDuration . <window> seas:openDuration <window/openDuration> . <window/openDuration> seas:evaluation <window/openDuration/evaluation/1> . <window/openDuration/evaluation/1> seas:evaluatedValue "PT2H"^^xsd:duration ; seas:hasTemporalContext [ time:hasBeginning [ time:asXSDDateTime "2016-09-25T23:00:00Z" ] ; time:hasEnd [ time:asXSDDateTime "2016-09-26T07:00:00Z" ] ; ] ```
has super-properties
has property

sum propertyop back to ToC or Object Property ToC

IRI: https://w3id.org/seas/sumProperty

is defined by
https://w3id.org/seas/TimeOntology
Links a time sum to the property that is result of a sum over a time interval.

has characteristics: functional

has domain
Time Sumc
has range
property

summed propertyop back to ToC or Object Property ToC

IRI: https://w3id.org/seas/summedProperty

is defined by
https://w3id.org/seas/TimeOntology
Links a time sum to the property that is summed over a time interval.

has characteristics: functional

has domain
Time Sumc
has range
property

time derivativeop back to ToC or Object Property ToC

IRI: https://w3id.org/seas/timeDerivative

is defined by
https://w3id.org/seas/TimeOntology
Links a time relative property to its time derivative property. For example, ``` <car/1/speed> seas:timeDerivative <car/1/acceleration> . ``` Means that `<car/1/acceleration>` is the time derivative of `<car/1/speed>`.

has characteristics: functional

has super-properties
derives from

Data Properties

sum durationdp back to ToC or Data Property ToC

IRI: https://w3id.org/seas/sumDuration

is defined by
https://w3id.org/seas/TimeOntology
Links a fixed duration sum to the duration of the floating time interval over which the sum is computed.
has domain
Fixed Duration Sumc
has range
duration

sum startdp back to ToC or Data Property ToC

IRI: https://w3id.org/seas/sumStart

is defined by
https://w3id.org/seas/TimeOntology
Links a fixed start sum to the start of the time interval over which the sum is computed.
has domain
Fixed Start Sumc
has range
date time

Named Individuals

time ontologyni back to ToC or Named Individual ToC

IRI: https://w3id.org/seas/TimeOntology

belongs to
vocabularyc

Annotation Properties

contributorap back to ToC or Annotation Property ToC

IRI: http://purl.org/dc/terms/contributor

creatorap back to ToC or Annotation Property ToC

IRI: http://purl.org/dc/terms/creator

descriptionap back to ToC or Annotation Property ToC

IRI: http://purl.org/dc/terms/description

issuedap back to ToC or Annotation Property ToC

IRI: http://purl.org/dc/terms/issued

licenseap back to ToC or Annotation Property ToC

IRI: http://purl.org/dc/terms/license

modifiedap back to ToC or Annotation Property ToC

IRI: http://purl.org/dc/terms/modified

preferred namespace prefixap back to ToC or Annotation Property ToC

IRI: http://purl.org/vocab/vann/preferredNamespacePrefix

preferred namespace uriap back to ToC or Annotation Property ToC

IRI: http://purl.org/vocab/vann/preferredNamespaceUri

term statusap back to ToC or Annotation Property ToC

IRI: http://www.w3.org/2003/06/sw-vocab-status/ns#term_status

titleap back to ToC or Annotation Property ToC

IRI: http://purl.org/dc/terms/title

Namespace Declarations back to ToC

default namespace
http://www.w3.org/2006/time#
0-1
http://xmlns.com/foaf/0.1/
by
http://creativecommons.org/licenses/by/
ns
http://www.w3.org/2003/06/sw-vocab-status/ns#
owl
http://www.w3.org/2002/07/owl#
rdf
http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdfs
http://www.w3.org/2000/01/rdf-schema#
seas
https://w3id.org/seas/
terms
http://purl.org/dc/terms/
vann
http://purl.org/vocab/vann/
voaf
http://purl.org/vocommons/voaf#
xsd
http://www.w3.org/2001/XMLSchema#

This HTML document was obtained by processing the OWL ontology source code through LODE, Live OWL Documentation Environment, developed by Silvio Peroni.