Emissions¶
Overview¶
Machine variations can be differentiated by the emission levels that they comply to. Emission levels are linked to a given emission standard, which is in turn linked to a specific fuel type.
For example equipment with a diesel engine can be subject to Tier and Stage emission standards.
Tier is an american emission standard and is comprised of 5 levels; 1/2/3/i4/4.
Stage is a european emission standard and is comprised of 6 levels; I/II/III-A/III-B/IV/V
A given machine can comply to multiple emission levels, but only one level per standard. For example a machine can be Tier 4/Stage IV or Tier 3/Stage IIA, but cannot be Tier 2/Tier 3 or Stage IV/Stage V.
Models¶
Emission Standard¶
Schema¶
{
    "id": 0,
    "key": "string",
    "name": "string",
    "fuelTypeKey": "string"
}
Emission Standard Collection¶
Schema¶
[
    {
        ... Emission Standard
    }
]
Emission Level¶
Schema¶
{
    "id": 0,
    "key": "string",
    "name": "string",
    "emissionStandardKey": "string"
}
Emission Level Collection¶
Schema¶
[
    {
        ... Emission Level
    }
]