Autodesk · Schema
Record
Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| datasetId | string | |
| name | string | |
| category | string | |
| region | string | |
| year | integer | |
| unit | string | Unit of measurement. |
| emissionFactor | number | Carbon emission factor value. |
| emissionFactorUnit | string | Unit for the emission factor (e.g., kgCO2e/kWh). |
| gwp | number | Global Warming Potential value. |
| metadata | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Record",
"title": "Record",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"datasetId": {
"type": "string"
},
"name": {
"type": "string"
},
"category": {
"type": "string"
},
"region": {
"type": "string"
},
"year": {
"type": "integer"
},
"unit": {
"type": "string",
"description": "Unit of measurement."
},
"emissionFactor": {
"type": "number",
"description": "Carbon emission factor value."
},
"emissionFactorUnit": {
"type": "string",
"description": "Unit for the emission factor (e.g., kgCO2e/kWh)."
},
"gwp": {
"type": "number",
"description": "Global Warming Potential value."
},
"metadata": {
"type": "object",
"additionalProperties": true
}
}
}