Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.81 KB

record.md

File metadata and controls

25 lines (20 loc) · 1.81 KB

Record

A data record of an observation deriving from an event. May contain several record values when multiple sensors, providing multiple types of measurements, are used.

Req = Requirement: M = mandatory, R = recommended, O = optional.

Field name Format Req Definition Example Reference
recordID string M Unique identifier for a record
instrumentID string M Identifier of the instrument that recorded the data
eventID string M Identifier of the event
datasetID string M Identifier of the dataset
recordStart datetime M The recording date and time. 2009-05-21T12:00:00Z
recordEnd datetime O The recording ending date and time, if it exists. 2009-05-21T13:00:00Z
recordValues array of keyValue M Array containing all the values measured for this record, provided as key:value pair. The key (attribute name) must be the same as in the instrument.sensor.valuesMeasured {"distance" : "2981", "azimuth" : "79.24", "elevation" : "3.51"} (see KeyValue object)
organismPublic string M Inherited field that tells if the data from the animal recorded can be published (based on isPublic field in Organism object) true
dateCreated date M The date when the first version of the record was published. (date generated at time of publication)
dateUpdated date M The date when the record was last updated. (date generated at time of data update)

KeyValue object

Field name Format Req Definition Example Reference
key string M Identifier of the key (attribute name).
value string M Value measured.