brick: timeseriesRELATIONSHIPv1.2
Definitions
Relates a Brick point to the TimeseriesReference that indicates where and how the data for this point is stored
Domain

Example usage

:sensor1    a   brick:Temperature_Sensor ;
    brick:hasUnit unit:DEG_F ;
    brick:timeseries [
        brick:hasTimeseriesId   "8f541ba4-c437-43ba-ba1d-5c946583fe54" ;
        brick:storedAt  :database ;
    ] ;
.

:sensor2    a   brick:Temperature_Sensor ;
    brick:hasUnit unit:DEG_F ;
    brick:timeseries [
        brick:hasTimeseriesId   "38b5fa0e-407e-4a23-8800-6ec4f6d60785" ;
        brick:storedAt  :database ;
    ] ;
.

# the properties on the database instance are non-normative
:database   a   brick:Database ;
    rdfs:label  "Postgres Timeseries Storage" ;
    :connstring "postgres://1.2.3.4/data" ;
.

Read more about Timeseries Storage here.