Autodesk · Schema

CalculationResponse

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
totalEmissions number Total calculated emissions in kgCO2e.
unit string
emissionFactor number
quantity number
record object
View JSON Schema on GitHub

JSON Schema

autodesk-calculationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CalculationResponse",
  "title": "CalculationResponse",
  "type": "object",
  "properties": {
    "totalEmissions": {
      "type": "number",
      "description": "Total calculated emissions in kgCO2e."
    },
    "unit": {
      "type": "string",
      "example": "kgCO2e"
    },
    "emissionFactor": {
      "type": "number"
    },
    "quantity": {
      "type": "number"
    },
    "record": {
      "$ref": "#/components/schemas/Record"
    }
  }
}