records
Air Quality Annual Summary
Dataset schema
Click to expand Click to collapse
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
{
- "title":"annual_37_183_0021_2017",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/annual_37_183_0021_2017"
}
] - "definitions":{
- "annual_37_183_0021_2017":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/annual_37_183_0021_2017_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "annual_37_183_0021_2017_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "state_code":,{
- "type":"integer",
- "title":"State Code",
- "description":"State Geographies Code for NC is 37"
} - "county_code":,{
- "type":"integer",
- "title":"County Code",
- "description":"Wake County Geographies Code is 183"
} - "site_number":,{
- "type":"string",
- "title":"Site Number",
- "description":"Site Number"
} - "parameter_code":,{
- "type":"integer",
- "title":"Parameter Code",
- "description":"The AQS code corresponding to the parameter measured by the monitor."
} - "poc":,{
- "type":"integer",
- "title":"POC",
- "description":"This is the “Parameter Occurrence Code” used to distinguish different instruments that measure the same parameter at the same site."
} - "latitude":,{
- "type":"number",
- "title":"Latitude",
- "description":"The monitoring site’s angular distance north of the equator measured in decimal degrees."
} - "longitude":,{
- "type":"number",
- "title":"Longitude",
- "description":"The monitoring site’s angular distance east of the prime meridian measured in decimal degrees."
} - "datum":,{
- "type":"string",
- "title":"Datum",
- "description":"The Datum associated with the Latitude and Longitude measures."
} - "parameter_name":,{
- "type":"string",
- "title":"Parameter Name",
- "description":"The name or description assigned in AQS to the parameter measured by the monitor. Parameters may be pollutants or non-pollutants."
} - "duration_description":,{
- "type":"string",
- "title":"Duration Description",
- "description":"Duration Description"
} - "pollutant_standard":,{
- "type":"string",
- "title":"Pollutant Standard",
- "description":"A description of the ambient air quality standard rules used to aggregate statistics."
} - "year":,{
- "type":"string",
- "format":"date",
- "title":"Year",
- "description":"Year"
} - "units_of_measure":,{
- "type":"string",
- "title":"Units of Measure",
- "description":"The unit of measure for the parameter. QAD always returns data in the standard units for the parameter. Submitters are allowed to report data in any unit and EPA converts to a standard unit so that we may use the data in calculations."
} - "exceptional_data_type":,{
- "type":"string",
- "title":"Exceptional Data Type",
- "description":"An example of an exceptional event would be a wildfire; it is something that affects air quality, but the local agency has no control over. No Events means no events occurred. Events Included means events occurred and the data from them is included in the summary. Events Excluded means that events occurred but data form them is excluded from the summary. Concurred Events Excluded means that events occurred but only EPA concurred exclusions are removed from the summary. If an event occurred for the parameter in question, the data will have multiple records for each monitor."
} - "observation_count":,{
- "type":"integer",
- "title":"Observation Count",
- "description":"The number of observations (samples) taken during the year."
} - "observation_percent":,{
- "type":"integer",
- "title":"Observation Percent",
- "description":"The percent representing the number of observations taken with respect to the number scheduled to be taken during the year. This is only calculated for monitors where measurements are required (e.g., only certain parameters)."
} - "primary_exceedance_count":,{
- "type":"number",
- "title":"Primary Exceedance Count",
- "description":"The number of samples during the year that exceeded the primary air quality standard."
} - "secdary_exceedance_count":,{
- "type":"number",
- "title":"Secondary Exceedance Count",
- "description":"The number of samples during the year that exceeded the secondary air quality standard."
} - "valid_day_count":,{
- "type":"integer",
- "title":"Valid Day Count",
- "description":"The number of days during the year where the daily monitoring criteria were met, if the calculation of the summaries is based on valid days."
} - "required_day_count":,{
- "type":"integer",
- "title":"Required Day Count",
- "description":"The number of days during the year which the monitor was scheduled to take samples if measurements are required."
} - "exceptional_data_count":,{
- "type":"integer",
- "title":"Exceptional Data Count",
- "description":"The number of data points in the annual data set affected by exceptional air quality events (things outside the norm that affect air quality)."
} - "certification_indicator":,{
- "type":"string",
- "title":"Certification Indicator",
- "description":"An indication whether the completeness and accuracy of the information on the annual summary record has been certified by the submitter. Certified means the submitter has certified the data (due May 01 the year after collection). Certification not required means that the parameter does not require certification or the deadline has not yet passed. Uncertified (past due) means that certification is required but is overdue. Requested but not yet concurred means the submitter has completed the process, but EPA has not yet acted to certify the data. Requested but denied means the submitter has completed the process, but EPA has denied the request for cause. Was certified but data changed means the data was certified but data was replaced and the process has not been repeated."
} - "null_data_count":,{
- "type":"integer",
- "title":"Null Data Count",
- "description":"The count of scheduled samples when no data was collected and the reason for no data was reported."
} - "half_mdl_sub_count":,{
- "type":"integer",
- "title":"Half MDL Sub Count",
- "description":"The number of samples reported during the year that were below the method detection limit (MDL) for the monitoring instrument, multiplied by 1/2. Sometimes these values are used in place of the MDL in summary calculations."
} - "arithmetic_mean":,{
- "type":"number",
- "title":"Arithmetic Mean",
- "description":"The average (arithmetic mean) value for the year."
} - "arithmetic_standard_dev":,{
- "type":"number",
- "title":"Arithmetic Standard Dev",
- "description":"The standard deviation about the mean of the values for the year."
} - "weighted_arithmetic_mean":,{
- "type":"integer",
- "title":"Weighted Arithmetic Mean",
- "description":"Weighted Arithmetic Mean"
} - "minimum_value":,{
- "type":"number",
- "title":"Minimum Value",
- "description":""
} - "first_maximum_value":,{
- "type":"number",
- "title":"First Maximum Value",
- "description":""
} - "first_maximum_datetime":,{
- "type":"string",
- "format":"date-time",
- "title":"First Maximum DateTime",
- "description":""
} - "second_maximum_value":,{
- "type":"number",
- "title":"Second Maximum Value",
- "description":""
} - "second_maximum_datetime":,{
- "type":"string",
- "format":"date-time",
- "title":"Second Maximum DateTime",
- "description":""
} - "third_maximum_value":,{
- "type":"number",
- "title":"Third Maximum Value",
- "description":""
} - "third_maximum_datetime":,{
- "type":"string",
- "format":"date-time",
- "title":"Third Maximum DateTime",
- "description":""
} - "fourth_maximum_value":,{
- "type":"number",
- "title":"Fourth Maximum Value",
- "description":""
} - "fourth_maximum_datetime":,{
- "type":"string",
- "format":"date-time",
- "title":"Fourth Maximum DateTime",
- "description":""
} - "50th_perecentile":,{
- "type":"number",
- "title":"50th Percentile",
- "description":""
} - "75th_perecentile":,{
- "type":"number",
- "title":"75th Percentile",
- "description":""
} - "90th_perecentile":,{
- "type":"number",
- "title":"90th Percentile",
- "description":""
} - "95th_perecentile":,{
- "type":"number",
- "title":"95th Percentile",
- "description":""
} - "98th_perecentile":,{
- "type":"number",
- "title":"98th Percentile",
- "description":""
} - "99th_perecentile":,{
- "type":"number",
- "title":"99th Percentile",
- "description":""
} - "method_count":,{
- "type":"integer",
- "title":"Method Count",
- "description":""
} - "tribe_name":,{
- "type":"string",
- "title":"Tribe Name",
- "description":"Name of Tribal Area Station is Within"
} - "state_name":,{
- "type":"string",
- "title":"State Name",
- "description":"State Name"
} - "county_name":,{
- "type":"string",
- "title":"County Name",
- "description":"Wake County"
} - "city_name":,{
- "type":"string",
- "title":"City Name",
- "description":"City Name"
} - "local_site_name":,{
- "type":"string",
- "title":"Local Site Name",
- "description":"Local Site Name"
} - "address":,{
- "type":"string",
- "title":"Address",
- "description":"Street Address of Site"
} - "msa_or_cbsa_name":,{
- "type":"string",
- "title":"Metropolitan Statistical Area or Core-Based Statistical Area Name",
- "description":"Metropolitan Statistical Area or Core-Based Statistical Area Name"
} - "data_source":,{
- "type":"string",
- "title":"Data Source",
- "description":"Please visit https://aqs.epa.gov/aqsweb/documents/data_mart_welcome.html for more information on AQS Data Mart"
} - "monitoring_site_latitude_longitude":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Monitoring Site (Latitude, Longitude)",
- "description":"Latitude Longitude Coordinates in WGS84 Format"
}
} - "state_code":
}
} - "fields":
} - "properties":
} - "annual_37_183_0021_2017":
}