pfGreenhouseGasSourceType
Description
Organises emissions for an enterprise (or All), optionally with a crop and/or livestock inventory classification, and provides an array of emissions by pathway.
Properties
Name | Description | Required | Type |
---|---|---|---|
Enterprise | The farming enterprise pertaining to this source. Use All if the emissions are for all enterprises. | Yes | pfEnterpriseType |
Name | Name of the enterprise including any inventory classification or crop defined. | No | string |
Species | The species of the animal or crop responsible for this source of emissions. | No | string |
Emissions | Array of emissions for the specified enterprise. | No | Array of pfGreenhouseGasEmissionType |
Examples
Example 1
{
"enterprise": "livestock.cattle.dairy",
"species": "Cattle",
"name": "Milking cows",
"emissions": [
{
"name": "Enteric fermentation",
"scope": "Scope1",
"category": "Biogenic",
"pool": "Livestock",
"cause": "Enteric Fermentation",
"CH4": {
"massGas": {
"measurement": 53.9,
"resolution": 0.1,
"units": "TNE"
},
"massCO2e": {
"measurement": 1349.2,
"resolution": 0.1,
"units": "TNE"
}
},
"CO2eIntensity": [
{
"value": {
"measurement": 4.61,
"resolution": 0.01,
"units": "KGM"
},
"denominator": "MilkSolids",
"denominatorUnits": "KGM"
}
],
"allocatedProducts": [
{
"product": "Milk Solids",
"harmonisedCode": "04.01",
"percentage": 80,
"CO2e": {
"measurement": 1079.4,
"units": "TNE"
}
},
{
"product": "Cattle Liveweight",
"harmonisedCode": "01.02",
"percentage": 20,
"CO2e": {
"measurement": 269.8,
"units": "TNE"
}
}
]
}
]
}
Example 2
{
"enterprise": "fieldcrops.cereal.wheat",
"name": "Wheat crop",
"species": "Wheat",
"emissions": [
{
"name": "Wheat fertiliser",
"scope": "Scope1",
"category": "Biogenic",
"pool": "Soil",
"cause": "Fertilizer",
"N2O": {
"massGas": {
"measurement": 670,
"units": "KGM"
}
},
"CO2": {
"massGas": {
"measurement": 0,
"units": "KGM"
}
},
"CO2e": {
"measurement": 199.81,
"units": "TNE"
},
"CO2eIntensity": [
{
"value": {
"measurement": 199.81,
"units": "KGM"
},
"denominator": "Area",
"denominatorUnits": "HAR"
},
{
"value": {
"measurement": 66,
"units": "KGM"
},
"denominator": "ProductWeight",
"denominatorUnits": "TNE"
}
],
"allocatedProducts": [
{
"product": "Wheat and meslin",
"harmonisedCode": "10.01",
"percentage": 95,
"CO2e": {
"measurement": 189.82,
"units": "TNE"
}
},
{
"product": "Cereal straw and husks",
"harmonisedCode": "12.13",
"percentage": 5,
"CO2e": {
"measurement": 9.99,
"units": "TNE"
}
}
]
}
]
}