inohilog

/var/log/inohiro.log

The TIme Ontology and The Timeline Ontology

  • The Time Ontology
:meetingStart
      a       :Instant ;
      :inDateTime
              :meetingStartDescription ;
      :inXSDDateTime
              2006-01-01T10:30:00-5:00 .

:meetingStartDescription
      a       :DateTimeDescription ;
      :unitType :unitMinute ;
      :minute 30 ;
      :hour 10 ;
      :day 1 ;
      :dayOfWeek :Sunday ;
      :dayOfYear 1 ;
      :week 1 ;
      :month 1 ;
      :timeZone tz-us:EST ;
      :year 2006 .
  • The Timeline Ontology
@prefix event: <http://purl.org/NET/c4dm/event.owl#>.
@prefix tl: <http://purl.org/NET/c4dm/timeline.owl#>.

:instant 
	a tl:Instant;
	tl:timeline <http://zitgist.com/music/signal/6da76448-982a-4a01-b65b-9a710301c9c9>
	tl:at "PT3S"^^xsd:duration;
	.

:interval
	a tl:Interval;
	tl:timeline tl:universaltimeline;
	tl:start "2001-10-26T12:00:00Z"^^xsd:dateTime;
	tl:duration "P7DT";
	.