Product
Contains data related to the estimation of a good or service's emissions from a set of underlying emission factors.
The Product object
// Example:
{
id: "prod_12345678",
name: "Road Bike - 2023 Model",
kgCO2e: 123.45,
shippable: true,
sector: 'Ground Transportation',
category: "Bicycle",
factors: [
{
factorId: "fct_123...",
value: 1.23
},
{
factorId: "fct_456...",
value: 34.51
},
...
],
active: true,
}Last updated