OBJECT

AirRecord

A type that describes the components of an air record

link GraphQL Schema definition

1type AirRecord {
2
3# Chemical substance measured in the environment
4contaminant: Contaminant!
5
6# Identifier of the station where the measurement was taken
7station: Int!
8
9# Date and time of measurement (ISO 8601)
10date: String!
11
12# Value of measurement in micrograms per cubic meter (µg/m3)
13value: Float!
14
15status: AirStatus!
16
17}