OBJECT
AirRecord
A type that describes the components of an air record
link GraphQL Schema definition
1 type AirRecord { 2 3 # Chemical substance measured in the environment 4 Contaminant! : 5 6 # Identifier of the station where the measurement was taken 7 Int! : 8 9 # Date and time of measurement (ISO 8601) 10 String! : 11 12 # Value of measurement in micrograms per cubic meter (µg/m3) 13 Float! : 14 15 AirStatus! : 16 17 }