This documentation describes the use and integration of the API, including endpoints, authentication and sample implementation scenarios.

Changes

On January 1, 2026, the questionnaire was updated and individual questions were deactivated or recreated. No new endpoints were created, and no changes were made to the question types. You can access the latest documentation here: API version 20250814

Change

Description

n/a n/a

Overview

Endpoint

Description

company/bank/company/raw-data-access/{company-id} Request access to the raw data of the questionnaire of a specific company.
company/bank/questionnaire-files/{fileID} Function to retrieve a file of a specific questionnaire
questionnaire-report/{questionaireId}/generate Function to generate the ESG report of a company based on questionaireId. This call usually takes longer than 10 seconds. In the return, the identification number of the ESG report to be used in the API endpoint questionnaire-report/{questionaireReportId}/download is returned in the id attribute.
questionnaire-report/{questionaireReportId}/download Function to download the ESG report of a company.
company Listing of all companies on the platform, regardless of raw data access.
company/{company-id}/rawdata Listing of the raw data (all data of the questionnaire) of the last completed questionnaire of a company.

Swagger YAML Documentation

esg-openapi_20250814.yaml
api_example_response_20250814.json
Valid from 2025-08-14

company/raw-data-access/{company-id}

Description: 

Request access to the raw data of the questionnaire of a specific company.

https://my.oekb.at/oekb-esgdatahub/api/company/bank/company/raw-data-access/{company-id}

 

Parameter:

Parameter

Description

company-id Unique ID of the company that typically comes from the API Endpoint company or company/rawdataAccess

 

Example Request:

curl -X 'POST' 'https://my.oekb.at/oekb-esgdatahub/api/company/bank/company/raw-data-access/xxxx-xxxx-xxxx-xxxx-xxxx'

 

Example Response:

{
    "id": "null",
    "companyId" : "xxxxxxxxxx"
    "status": "SENT",
    "requestedOn": "2023-02-27T13:11:09.49441"
}

questionnaire-files/{fileId}

Description: 

Function to retrieve a file of a specific questionnaire.

https://my.oekb.at/oekb-esgdatahub/api/company/bank/questionnaire-files/{fileId}

 

Parameter:

Parameter

Description

fileid Unique ID of the file that typically comes from the API Endpoint company/{company-id}/rawdata

 

Example Request:

curl –X 'GET' 'https://my.oekb.at/oekb-esgdatahub/api/company/bank/questionnaire-files/xxxxxxxxx' \-H 'accept: application/json' \-H 'x-api-key: xxxxxxxxxxx' \-H 'X-XSRF-TOKEN: xxxx-xxxx-xxxx-xxxx-xxxxxxxxxx'

 

Example Response:

Response body
Download file
Response headers
accept-ranges: bytes
cache-control: no-cache,no-store,max-age=0,must-revalidate
connection: keep-alive
content-disposition: attachment; filename="ESG_Download.octet-stream"
content-length: 4637105
content-type: application/octet-stream
date: Wed,01 Mar 2023 12:56:44 GMT
expires: 0
keep-alive: timeout=60
pragma: no-cache
strict-transport-security: max-age=1800; includeSubDomains
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block

questionnaire-report/{questionaireId}/generate

Beschreibung: 

Function to generate the ESG report of a company based on questionaireId. This call usually takes longer than 10 seconds. In the return, the identification number of the ESG report to be used in the API endpoint questionnaire-report/{questionaireReportId}/download is returned in the id attribute.

https://my.oekb.at/oekb-esgdatahub/api/company/bank/questionnaire-report/{questionnaireId}/generate

Parameter:

Parameter

Description

questionaireId Specifies the ID of the questionnaire for which the ESG report is to be generated

 

Example Request:

curl –X 'GET' \'https://my.oekb.at/oekb-esgdatahub/api/company/bank/questionnaire-report/xxxxxxxxx/generate' \-H 'accept: application/json' \-H 'x-api-key: xxxxxxxxxxx' \-H 'X-XSRF-TOKEN: xxxx-xxxx-xxxx-xxxx-xxxxxxxxxx

 

Example Response:

{
  "fileName": "Report21-2024-03-21-20-22-de.pdf",
  "mimeType": "application/pdf",
  "dmsId": null,
  "id": "942bc21f-bd50-4b0b-885a-da99690eea9c",
  "questionnaireId": "8fe4dd89-28af-402c-8ef3-82e9c12cadfa",
  "createDate": null,
  "createdByType": "BANK",
  "createdById": "3c8dce34-d7e7-4847-8600-e3292c9fbb4b"
}

questionnaire-report/{questionaireReportId}/download

Description: 

Function to download the ESG report of a company.

https://my.oekb.at/oekb-esgdatahub/api/company/bank/questionnaire-report/{questionnaireReportId}/download

 

Parameter:

Parameter

Description

questionnaireReportId Specifies the unique ID of the ESG report

Example Request:

curl –X 'GET' \'https://my.oekb.at/oekb-esgdatahub/api/company/bank/questionnaire-report/xxxxxxxxx/download' \-H 'accept: application/json' \-H 'x-api-key: xxxxxxxxxxx' \-H 'X-XSRF-TOKEN: xxxx-xxxx-xxxx-xxxx-xxxxxxxxxx

 

Example Response:

Response body
Download file
Response headers
accept-ranges: bytes
cache-control: no-cache,no-store,max-age=0,must-revalidate
connection: keep-alive
content-disposition: attachment; filename="ESG_Download.octet-stream"
content-length: 4637105
content-type: application/octet-stream
date: Wed,01 Mar 2023 12:56:44 GMT
expires: 0
keep-alive: timeout=60
pragma: no-cache
strict-transport-security: max-age=1800; includeSubDomains
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block

company/{company-id}/rawdata

Description: 

Listing of the raw data, the last completed questionnaire, of a company.

https://my.oekb.at/oekb-esgdatahub/api/company/bank/company/{company-id}/rawdata?language=en

 

Parameter:

Parameter

Description

company-id Unique ID of the company that typically comes from the API endpoint company or company/rawdataAccess
language [optional] (e.g.: language=en)
With this option, translatable fields such as the question text or the answer options are displayed in the respective language.

 

Example Request:

curl -X 'GET' \'https://my.oekb.at/oekb-esgdatahub/api/company/bank/company/xxxxxxxxxxxxxxxxxxxxxx/rawdata?language=en' \-H 'accept: application/json' \-H 'x-api-key: xxxxxxxxxx' \-H 'X-XSRF-TOKEN: xxxxxxx

 

Example Response:

 

company/rawdataAccess

Description: 

List of all companies on the platform that have granted access to raw data.

https://my.oekb.at/oekb-esgdatahub/api/company/bank/company/rawdataAccess?page=0&size=100

 

Parameter:

Parameter

Description

page (e.g.: language=de)
size (e.g.: size=100)

Example Request:

curl -X 'GET' \'https://my.oekb.at/oekb-esgdatahub/api/company/bank/company/rawdataAccess?page=0&size=100' \ -H 'accept: application/json' \ -H 'x-api-key: xxxxxxxxxxxxxxxxxx' \ -H 'X-XSRF-TOKEN: xxxxxx

 

Example Response:

{
    "id": "342ac622-36b5-4359-92b8-9c66d4475aed",
    "assignedCompany": {
        "id": "a721f7d0-de09-40e4-a181-bd02e34a9196",
        "name": "API Test",
        "legalForm": {
            "id": "41ef6518-9f26-4620-9f20-1cc05d644b40",
            "country": {
                "id": "f6d410c3-950a-4b24-ac51-edfc98bb96ad",
                "name": "country.AT",
                "code": "AT",
                "placeholder_text": "FN123456x",
                "isRegistrationNumberRequired": true,
                "isVatRequired": false,
                "regex": "^FN[0-9]{1,6}[a,b,d,f,g,h,i,k,m,p,s,t,v,w,x,y,z]$",
                "vatRegex": "^(AT)?U[0-9]{8}$",
                "zipRegex": "^[0-9]{4,4}$",
                "orderIndex": 10
            },
            "code": "AG",
            "description": "masterdata.legalform.description.at.ag"
        },
        "lei": "1234",
        "vat": null,
        "companyRegistrationNumber": "FN281038x",
        "phone": "+43 xxx",
        "email": "xxx.xxx@oekb.at",
        "approvedEmail": "xxx.xxx@oekb.at",
        "www": null,
        "address": {
            "street": "Musterstraße",
            "houseNumber": "1",
            "zip": "1010",
            "city": "Musterstadt",
            "country": {
                "id": "f6d410c3-950a-4b24-ac51-edfc98bb96ad",
                "name": "country.AT",
                "code": "AT",
                "placeholder_text": "FN123456x",
                "isRegistrationNumberRequired": true,
                "isVatRequired": false,
                "regex": "^FN[0-9]{1,6}[a,b,d,f,g,h,i,k,m,p,s,t,v,w,x,y,z]$",
                "vatRegex": "^(AT)?U[0-9]{8}$",
                "zipRegex": "^[0-9]{4,4}$",
                "orderIndex": 10
            }
        },
        "status": "approved",
        "mainIndustry": {
            "code": "68",
            "description": "industry.real estate activities.68",
            "parentIndustry": {
                "code": "L",
                "description": "industry.real estate activities.L"
            }
        },
        "subIndustries": [],
        "acceptedChildBanks": null
    },
    "questionnaireStatus": "COMPLETED",
    "questionnaireProgress": 100,
    "isLastVersion": false,
    "completedOn": "2024-03-12T16:45:37.399038",
    "companyType": "LARGE",
    "answers": [
        {
            "answerString": null,
            "answerNumber": null,
            "answerDate": null,
            "answerId": "c3ed375b-3949-4602-982a-85b24f83f4b4",
            "questionnaireId": "342ac622-36b5-4359-92b8-9c66d4475aed",
            "question": {
                "questionCode": "1",
                "cluster": {
                    "id": "048FD79B8C9662BFE0630E00F58F38E9",
                    "code": "cluster.kontaktdaten",
                    "clusterOrder": 1,
                    "section": {
                        "code": "section.stammdaten",
                        "sectionOrder": 1
                    }
                },
                "questionOrder": 1,
                "questionTitle": "Unternehmensdaten",
                "questionPlaceholder": null,
                "questionHelpTooltip": "Geben Sie hier Ihre Stammdaten ein.",
                "answerType": "MASTERDATAMATRIX",
                "answerUnit": null,
                "answerOptions": [],
                "parentQuestion": null,
                "subQuestions": [],
                "questionOptionalStatusForCompanyType": "MANDATORY"
            },
            "answerOptionCodes": null,
            "answerAttachments": [],
            "answeredBy": {
                "id": "cd7eb67b-0108-45d3-9bb9-669fa7650189",
                "salutation": "Herr",
                "title": null,
                "surname": "xxx",
                "name": "xxx",
                "country": null,
                "phone": "+xxx",
                "email": "xxx.xxx@oekb.at",
                "loginName": null,
                "userRole": null,
                "userStatus": "ACTIVE",
                "zgpId": null,
                "permission": null,
                "isSubscribedToNewsletter": null
            },
            "answerMatrixBuildings": null,
            "answerMatrixWaterData": null,
            "answerMatrixWasteData": null,
            "answerMatrixEnergyData": null,
            "answerMatrixNewEnergyData": null,
            "answerMatrixEmployeeData": null,
            "answerMatrixEmployeeMobilityData": null,
            "answerMatrixGreenhouseGasData": null,
            "answerMatrixClimate": null,
            "answerMatrixTaxonomy": null,
            "answerMatrixCompanyMobilityData": null,
            "answerMatrixIntensity": null,
            "answerMatrixMasterData": {
                "masterData": {
                    "questionnaireForCompanyStructure": "sharedDomain.questionnaire.questions.master-data.master-data-form.master-radio-button-answer-option-corporate-group",
                    "firstName": "xxx",
                    "lastName": "xxx",
                    "phoneNumber": "+43167886786",
                    "email": "xxx.xxx@oekb.at",
                    "reportYearFrom": "2021-01-01T00:00:00",
                    "reportYearTo": "2021-12-31T00:00:00",
                    "baseYearFrom": "2019-01-01T00:00:00",
                    "baseYearTo": "2019-12-31T00:00:00",
                    "turnoverInReportYear": 500,
                    "numberOfEmployees": 5000000
                },
                "id": null
            },
            "changedFromPreviousVersion": true,
            "benchmarkingBranch": {
                "benchmarkingNumber": null,
                "benchmarkingOptions": null
            },
            "benchmarkingAll": {
                "benchmarkingNumber": null,
                "benchmarkingOptions": null
            },
            "noAnswerReason": null,
            "comment": null,
            "answeredOn": "2024-02-22T09:14:32.917315",
            "status": "DONE",
            "certaintyLevel": null
        },
        ...
    ],
    "questionnaireFiles": null,
    "questionnaireReports": [
        {
            "fileName": "Report12-2024-03-15-09-41-de.pdf",
            "mimeType": "application/pdf",
            "id": "7e07c280-4010-4c8c-9a84-fb69798f6cdb"
        },
        {
            "fileName": "Report12-2024-03-15-10-10-de.pdf",
            "mimeType": "application/pdf",
            "id": "050c5799-2789-4035-ab3b-95b04ddfae96"
        },
        {
            "fileName": "Report12-2024-03-20-16-24-de.pdf",
            "mimeType": "application/pdf",
            "id": "4b36c359-b1e2-4bcb-ad3e-bb65bb13a8d1"
        }
    ],
    "acceptedChildBanks": [
        {
            "id": "b1b1dc97-7064-4144-9583-b0b86fc1de94",
            "businessPartnerId": "1000000000",
            "logoFileName": null,
            "logoDmsId": null,
            "bankName": "Oesterreichische Kontrollbank Aktiengesellschaft",
            "bankReferenceId": "2c3de46c-c5c2-4770-86b7-6225e722b480",
            "bankReferenceIdLink": null,
            "bankStatus": "ACTIVE",
            "bankType": "CREDIT_INSTITUTION",
            "parentBankId": "3e193d68-e7a7-4bf7-a54d-07b525ea56f1"
        }
    ]
}

answer-files/{fileId}

Description: 

Function to download a file for a specific question.

https://my.oekb.at/oekb-esgdatahub/api/company/bank/answer-files/{fileId}

 

Parameter:

Parameter

Description

fileId Unique ID of the file that typically comes from the API endpoint company/{company-id}/rawdata
size (e.g.: size=100)

 

Example Request:

curl –X 'GET' 'https://my.oekb.at/oekb-esgdatahub/api/company/bank/answer-files/xxxxxxxxx' \-H 'accept: application/json' \-H 'x-api-key: xxxxxxxxxxx' \-H 'X-XSRF-TOKEN: xxxx-xxxx-xxxx-xxxx-xxxxxxxxxx'

 

Example Response:

Response body
Download file
Response headers
accept-ranges: bytes
cache-control: no-cache,no-store,max-age=0,must-revalidate
connection: keep-alive
content-disposition: attachment; filename="ESG_Download.octet-stream"
content-length: 4637105
content-type: application/octet-stream
date: Wed,01 Mar 2023 12:56:44 GMT
expires: 0
keep-alive: timeout=60
pragma: no-cache
strict-transport-security: max-age=1800; includeSubDomains
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block

Examples of tables / matrices

Master data matrix (answerMatrixMasterData)

Attribute Value
Question ID 1
Consolidation type
sharedDomain.questionnaire.questions.master-data.master-data-form.master-radio-button-answer-option-corporate-group Consolidated at ultimate parent company level (earlier corporate group)
sharedDomain.questionnaire.questions.master-data.master-data-form.master-radio-button-answer-option-individual-company Unconsolidated (former individual companies)
Beispieldaten Eingabemaske Stammdatentabelle
API Dokumentation Stammdatentabelle

Example Response answerMatrixMasterData:

 "answerMatrixMasterData": {
   "masterData": {
       "questionnaireForCompanyStructure": "sharedDomain.questionnaire.questions.master-data.master-data-form.master-radio-button-answer-option-corporate-group",
       "firstName": "Max ",
       "lastName": "Mustermann",
       "phoneNumber": "00431531273043",
       "email": "max.mustermann@gmail.com",
       "reportYearFrom": "2021-01-28T00:00:00",
       "reportYearTo": "2022-01-28T00:00:00",
       "baseYearFrom": "2022-01-28T00:00:00",
       "baseYearTo": "2022-12-28T00:00:00",
       "turnoverInReportYear": 1000000,
       "numberOfEmployees": 100
   },

Wasserverbrauch (answerMatrixWaterData)

Attribut Wert
Question ID 50
API Dokumentation Wasserverbrauch (1/2)
API Dokumentation Wasserverbrauch (2/2)

Beispiel Rückgabe answerMatrixWaterData:

"waterData": {
    "years": [
        {
            "year": 2020,
            "isBaseYear": true,
            "isReportYear": false,
            "isGoalYear": false,
            "inWaterStressArea": {},
            "outWaterStressArea": {},
            "totalWaterStressArea": {
                "surfaceWaterValue": 0,
                "baseWaterValue": 0,
                "seaWaterValue": 0,
                "producedWaterValue": 0,
                "water3rdPartyValue": 3000,
                "totalValues": 3000
            },
            "tab": "DETAIL",
            "unitValue": "m³"
        },
        {
            "year": 2030,
            "isBaseYear": false,
            "isReportYear": false,
            "isGoalYear": true,
            "inWaterStressArea": {
                "totalValues": 0
            },
            "outWaterStressArea": {
                "totalValues": 0
            },
            "totalWaterStressArea": {
                "surfaceWaterValue": 0,
                "baseWaterValue": 0,
                "seaWaterValue": 0,
                "producedWaterValue": 0,
                "water3rdPartyValue": 2700,
                "water3rdPartyPercent": -10,
                "totalValues": 2700,
                "totalPercent": 9.999999999999998
            },
            "tab": "DETAIL",
            "unitValue": "m³"
        }
    ]

 

 

Treibhausgas Emissionen (answerMatrixGreenhouseGasData) - SEPARATED

Attribut Wert
Question ID 3118
scope SEPARATED
tab DETAIL

 

Please note that totals for market-based and location-based greenhouse gas emissions are now also shown separately across all three scopes in the attributes yearTotalMarketBased and yearTotalLocationBased.

API Dokumentation Treibhausgasemissionen Separated (1/3)
API Dokumentation Treibhausgasemissionen Separated (2/3)
API Dokumentation Treibhausgasemissionen Separated (3/3)

Beispiel Rückgabe answerMatrixGreenhouseGasData:

{
    "greenhouseGasData": {
        "years": [
            {
                "year": 2020,
                "isBaseYear": true,
                "isReportYear": false,
                "isGoalYear": false,
                "rows": [
                    {
                        "scopes": [
                            1
                        ],
                        "total": 85,
                        "totalsPerScopeBase": {},
                        "greenhouseGasses": [
                            {
                                "rowId": "a509cf1f-874c-4058-af5b-266d16a07354",
                                "value": 40,
                                "name": "greenhouse_gas_article.stationary assets (e.g. heating systems)",
                                "isDefault": true
                            },
                            {
                                "rowId": "6af5e8be-33bd-4f51-916e-58057bd90f81",
                                "value": 45,
                                "name": "greenhouse_gas_article.mobile assets (e.g. vehicles)",
                                "isDefault": true
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": null,
                            "referenceMarketValue": null,
                            "referenceLocationValue": null,
                            "targetPercent": null,
                            "targetPercentMarketBased": null,
                            "targetPercentLocationBased": null,
                            "targetSharePercent": null,
                            "targetSharePercentageMarkedBased": null,
                            "targetSharePercentageLocationBased": null,
                            "targetResult": null,
                            "targetResultMarkedBased": null,
                            "targetResultLocationBased": null
                        }
                    },
                    {
                        "scopes": [
                            2
                        ],
                        "total": null,
                        "totalsPerScopeBase": {
                            "MARKET": 127,
                            "LOCATION": 177
                        },
                        "greenhouseGasses": [
                            {
                                "rowId": "29c6d037-953e-4b3f-adad-beb6b9f24134",
                                "marketValue": 50,
                                "locationValue": 100,
                                "name": "greenhouse_gas_article.emissions from the generation of purchased electricity",
                                "isDefault": true
                            },
                            {
                                "rowId": "e01bede0-5205-4b08-8a28-91a7fee49ab1",
                                "marketValue": 70,
                                "locationValue": 70,
                                "name": "greenhouse_gas_article.steam",
                                "isDefault": true
                            },
                            {
                                "rowId": "47381916-3bbe-4cf1-ae8a-37a37e387546",
                                "marketValue": 7,
                                "locationValue": 7,
                                "name": "greenhouse_gas_article.district heating and cooling",
                                "isDefault": true
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": null,
                            "referenceMarketValue": null,
                            "referenceLocationValue": null,
                            "targetPercent": null,
                            "targetPercentMarketBased": null,
                            "targetPercentLocationBased": null,
                            "targetSharePercent": null,
                            "targetSharePercentageMarkedBased": null,
                            "targetSharePercentageLocationBased": null,
                            "targetResult": null,
                            "targetResultMarkedBased": null,
                            "targetResultLocationBased": null
                        }
                    },
                    {
                        "scopes": [
                            3
                        ],
                        "total": 54,
                        "totalsPerScopeBase": {},
                        "greenhouseGasses": [
                            {
                                "rowId": "f4197e66-86ed-4732-b700-af5240fd4c68",
                                "value": 20,
                                "name": "greenhouse_gas_article.purchased goods and services",
                                "isDefault": true
                            },
                            {
                                "rowId": "23ab3b9b-8756-4a60-a551-e42e43086b89",
                                "name": "greenhouse_gas_article.capital goods",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "7e304f7f-8cbf-4e6c-9b66-a316689084df",
                                "name": "greenhouse_gas_article.fuel and energy-related emissions (not included in scope 1 or 2)",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "90036d39-a7cc-4fbf-b83c-7aebb19e6626",
                                "name": "greenhouse_gas_article.transport and distribution (upstream)",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "add8230e-ea15-4d2c-874d-6263fdb6107b",
                                "name": "greenhouse_gas_article.waste",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "72dde607-6292-4a3e-8a05-fa8684567bc3",
                                "name": "greenhouse_gas_article.business travel",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "5c1a543a-d391-44d6-8d9c-dc4c980e89ad",
                                "name": "greenhouse_gas_article.employee commuting",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "29076f5d-5b37-45a8-9fee-95456a0d0f7a",
                                "name": "greenhouse_gas_article.tangible assets rented or leased",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "6fc1be9e-fee3-4d79-82fd-642ff4a16a24",
                                "name": "greenhouse_gas_article.transport and distribution (downstream)",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "c033e8a2-b2ea-4185-9914-d833b3fae09e",
                                "name": "greenhouse_gas_article.processing of products sold",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "1b55fa7d-f585-4704-8936-bc23e31f3670",
                                "name": "greenhouse_gas_article.use of products sold",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "c45aee48-2cb3-49ae-abb7-837c1e70bff1",
                                "name": "greenhouse_gas_article.handling of sold products at the end of their life cycle",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "67eeecc2-9cf2-45b2-ad1b-a409f68e02f0",
                                "value": 30,
                                "name": "greenhouse_gas_article.leased or rented property, plant and equipment",
                                "isDefault": true
                            },
                            {
                                "rowId": "57976b4e-275f-4003-864b-ffbecb41d25d",
                                "name": "greenhouse_gas_article.franchise",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "8a5a8f4b-9d74-4b9c-b632-d0e144ba3dbe",
                                "value": 4,
                                "name": "greenhouse_gas_article.investments",
                                "isDefault": true
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": null,
                            "referenceMarketValue": null,
                            "referenceLocationValue": null,
                            "targetPercent": null,
                            "targetPercentMarketBased": null,
                            "targetPercentLocationBased": null,
                            "targetSharePercent": null,
                            "targetSharePercentageMarkedBased": null,
                            "targetSharePercentageLocationBased": null,
                            "targetResult": null,
                            "targetResultMarkedBased": null,
                            "targetResultLocationBased": null
                        }
                    }
                ],
                "yearTotal": null,
                "yearTotalMarketBased": 266,
                "yearTotalLocationBased": 316,
                "tab": "DETAIL",
                "scope": "SEPARATED"
            },
            {
                "year": 2022,
                "isBaseYear": false,
                "isReportYear": true,
                "isGoalYear": false,
                "rows": [
                    {
                        "scopes": [
                            1
                        ],
                        "total": 70,
                        "totalsPerScopeBase": {},
                        "greenhouseGasses": [
                            {
                                "rowId": "f24f7a40-be4b-452b-aec0-271c836b9df3",
                                "value": 35,
                                "name": "greenhouse_gas_article.stationary assets (e.g. heating systems)",
                                "isDefault": true
                            },
                            {
                                "rowId": "23c906b0-35ce-444c-bbd6-ffcfc166ea8e",
                                "value": 35,
                                "name": "greenhouse_gas_article.mobile assets (e.g. vehicles)",
                                "isDefault": true
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": null,
                            "referenceMarketValue": null,
                            "referenceLocationValue": null,
                            "targetPercent": null,
                            "targetPercentMarketBased": null,
                            "targetPercentLocationBased": null,
                            "targetSharePercent": null,
                            "targetSharePercentageMarkedBased": null,
                            "targetSharePercentageLocationBased": null,
                            "targetResult": null,
                            "targetResultMarkedBased": null,
                            "targetResultLocationBased": null
                        }
                    },
                    {
                        "scopes": [
                            2
                        ],
                        "total": null,
                        "totalsPerScopeBase": {
                            "MARKET": 100,
                            "LOCATION": 140
                        },
                        "greenhouseGasses": [
                            {
                                "rowId": "f0ae0c61-2c41-4cea-951f-33d6f7e7bd76",
                                "marketValue": 40,
                                "locationValue": 80,
                                "name": "greenhouse_gas_article.emissions from the generation of purchased electricity",
                                "isDefault": true
                            },
                            {
                                "rowId": "0412ed16-b8c2-4dab-a995-8185fd3b898d",
                                "marketValue": 55,
                                "locationValue": 55,
                                "name": "greenhouse_gas_article.steam",
                                "isDefault": true
                            },
                            {
                                "rowId": "8a6c1dae-3b5a-44f2-8cc3-86ff0d3cd8f5",
                                "marketValue": 5,
                                "locationValue": 5,
                                "name": "greenhouse_gas_article.district heating and cooling",
                                "isDefault": true
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": null,
                            "referenceMarketValue": null,
                            "referenceLocationValue": null,
                            "targetPercent": null,
                            "targetPercentMarketBased": null,
                            "targetPercentLocationBased": null,
                            "targetSharePercent": null,
                            "targetSharePercentageMarkedBased": null,
                            "targetSharePercentageLocationBased": null,
                            "targetResult": null,
                            "targetResultMarkedBased": null,
                            "targetResultLocationBased": null
                        }
                    },
                    {
                        "scopes": [
                            3
                        ],
                        "total": 49,
                        "totalsPerScopeBase": {},
                        "greenhouseGasses": [
                            {
                                "rowId": "d5911856-5fa6-478d-a240-7d4caa47094f",
                                "value": 18,
                                "name": "greenhouse_gas_article.purchased goods and services",
                                "isDefault": true
                            },
                            {
                                "rowId": "dac61750-5610-4d33-bd93-9352f34d49ec",
                                "name": "greenhouse_gas_article.capital goods",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "f21e8e9f-14c2-49d6-aed5-e25f7ec97035",
                                "name": "greenhouse_gas_article.fuel and energy-related emissions (not included in scope 1 or 2)",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "dcba8675-1673-4476-8247-47969ecb56b4",
                                "name": "greenhouse_gas_article.transport and distribution (upstream)",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "f66e2f7c-00a1-40a3-b4f2-30574db9fe6a",
                                "name": "greenhouse_gas_article.waste",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "72ed4f7a-3864-49b5-a066-c01762523ef0",
                                "name": "greenhouse_gas_article.business travel",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "fe97ef3f-d08e-474e-a5c2-94b4f5481f45",
                                "name": "greenhouse_gas_article.employee commuting",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "8d2d253d-5fa1-4487-81e5-7e7a67e10ccd",
                                "name": "greenhouse_gas_article.tangible assets rented or leased",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "e114bdcd-f061-42e1-9f88-bc123229a4dd",
                                "name": "greenhouse_gas_article.transport and distribution (downstream)",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "033c2b96-cfd2-42ea-9549-e7f6087bdd45",
                                "name": "greenhouse_gas_article.processing of products sold",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "f096aa18-0d48-411e-9a5b-c7a0c3743821",
                                "name": "greenhouse_gas_article.use of products sold",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "cdbf201e-e811-4612-b406-7286a6f57482",
                                "name": "greenhouse_gas_article.handling of sold products at the end of their life cycle",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "cac160a6-cd35-43a3-8254-526b697c1c66",
                                "value": 28,
                                "name": "greenhouse_gas_article.leased or rented property, plant and equipment",
                                "isDefault": true
                            },
                            {
                                "rowId": "6e710d38-770d-48fc-a391-4cd73a2188de",
                                "name": "greenhouse_gas_article.franchise",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "b21825ec-244c-4e33-983b-ca4c305ab6b9",
                                "value": 3,
                                "name": "greenhouse_gas_article.investments",
                                "isDefault": true
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": null,
                            "referenceMarketValue": null,
                            "referenceLocationValue": null,
                            "targetPercent": null,
                            "targetPercentMarketBased": null,
                            "targetPercentLocationBased": null,
                            "targetSharePercent": null,
                            "targetSharePercentageMarkedBased": null,
                            "targetSharePercentageLocationBased": null,
                            "targetResult": null,
                            "targetResultMarkedBased": null,
                            "targetResultLocationBased": null
                        }
                    }
                ],
                "yearTotal": null,
                "yearTotalMarketBased": 219,
                "yearTotalLocationBased": 259,
                "tab": "DETAIL",
                "scope": "SEPARATED"
            },
            {
                "year": 2030,
                "isBaseYear": false,
                "isReportYear": false,
                "isGoalYear": true,
                "rows": [
                    {
                        "scopes": [
                            1
                        ],
                        "total": 85,
                        "totalsPerScopeBase": {},
                        "greenhouseGasses": [
                            {
                                "rowId": "a509cf1f-874c-4058-af5b-266d16a07354",
                                "value": 40,
                                "name": "greenhouse_gas_article.stationary assets (e.g. heating systems)",
                                "isDefault": true
                            },
                            {
                                "rowId": "6af5e8be-33bd-4f51-916e-58057bd90f81",
                                "value": 45,
                                "name": "greenhouse_gas_article.mobile assets (e.g. vehicles)",
                                "isDefault": true
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": 85,
                            "referenceMarketValue": null,
                            "referenceLocationValue": null,
                            "targetPercent": -30,
                            "targetPercentMarketBased": null,
                            "targetPercentLocationBased": null,
                            "targetSharePercent": 100,
                            "targetSharePercentageMarkedBased": null,
                            "targetSharePercentageLocationBased": null,
                            "targetResult": 59.49999999999999,
                            "targetResultMarkedBased": null,
                            "targetResultLocationBased": null
                        }
                    },
                    {
                        "scopes": [
                            2
                        ],
                        "total": null,
                        "totalsPerScopeBase": {
                            "MARKET": 127,
                            "LOCATION": 177
                        },
                        "greenhouseGasses": [
                            {
                                "rowId": "29c6d037-953e-4b3f-adad-beb6b9f24134",
                                "marketValue": 50,
                                "locationValue": 100,
                                "name": "greenhouse_gas_article.emissions from the generation of purchased electricity",
                                "isDefault": true
                            },
                            {
                                "rowId": "e01bede0-5205-4b08-8a28-91a7fee49ab1",
                                "marketValue": 70,
                                "locationValue": 70,
                                "name": "greenhouse_gas_article.steam",
                                "isDefault": true
                            },
                            {
                                "rowId": "47381916-3bbe-4cf1-ae8a-37a37e387546",
                                "marketValue": 7,
                                "locationValue": 7,
                                "name": "greenhouse_gas_article.district heating and cooling",
                                "isDefault": true
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": null,
                            "referenceMarketValue": 127,
                            "referenceLocationValue": 177,
                            "targetPercent": null,
                            "targetPercentMarketBased": -30,
                            "targetPercentLocationBased": -30,
                            "targetSharePercent": null,
                            "targetSharePercentageMarkedBased": 100,
                            "targetSharePercentageLocationBased": 100,
                            "targetResult": null,
                            "targetResultMarkedBased": 88.89999999999999,
                            "targetResultLocationBased": 123.89999999999999
                        }
                    },
                    {
                        "scopes": [
                            3
                        ],
                        "total": 54,
                        "totalsPerScopeBase": {},
                        "greenhouseGasses": [
                            {
                                "rowId": "f4197e66-86ed-4732-b700-af5240fd4c68",
                                "value": 20,
                                "name": "greenhouse_gas_article.purchased goods and services",
                                "isDefault": true
                            },
                            {
                                "rowId": "23ab3b9b-8756-4a60-a551-e42e43086b89",
                                "name": "greenhouse_gas_article.capital goods",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "7e304f7f-8cbf-4e6c-9b66-a316689084df",
                                "name": "greenhouse_gas_article.fuel and energy-related emissions (not included in scope 1 or 2)",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "90036d39-a7cc-4fbf-b83c-7aebb19e6626",
                                "name": "greenhouse_gas_article.transport and distribution (upstream)",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "add8230e-ea15-4d2c-874d-6263fdb6107b",
                                "name": "greenhouse_gas_article.waste",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "72dde607-6292-4a3e-8a05-fa8684567bc3",
                                "name": "greenhouse_gas_article.business travel",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "5c1a543a-d391-44d6-8d9c-dc4c980e89ad",
                                "name": "greenhouse_gas_article.employee commuting",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "29076f5d-5b37-45a8-9fee-95456a0d0f7a",
                                "name": "greenhouse_gas_article.tangible assets rented or leased",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "6fc1be9e-fee3-4d79-82fd-642ff4a16a24",
                                "name": "greenhouse_gas_article.transport and distribution (downstream)",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "c033e8a2-b2ea-4185-9914-d833b3fae09e",
                                "name": "greenhouse_gas_article.processing of products sold",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "1b55fa7d-f585-4704-8936-bc23e31f3670",
                                "name": "greenhouse_gas_article.use of products sold",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "c45aee48-2cb3-49ae-abb7-837c1e70bff1",
                                "name": "greenhouse_gas_article.handling of sold products at the end of their life cycle",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "67eeecc2-9cf2-45b2-ad1b-a409f68e02f0",
                                "value": 30,
                                "name": "greenhouse_gas_article.leased or rented property, plant and equipment",
                                "isDefault": true
                            },
                            {
                                "rowId": "57976b4e-275f-4003-864b-ffbecb41d25d",
                                "name": "greenhouse_gas_article.franchise",
                                "isDefault": true,
                                "valueBase": "UNSPECIFIED"
                            },
                            {
                                "rowId": "8a5a8f4b-9d74-4b9c-b632-d0e144ba3dbe",
                                "value": 4,
                                "name": "greenhouse_gas_article.investments",
                                "isDefault": true
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": 54,
                            "referenceMarketValue": null,
                            "referenceLocationValue": null,
                            "targetPercent": -30,
                            "targetPercentMarketBased": null,
                            "targetPercentLocationBased": null,
                            "targetSharePercent": 100,
                            "targetSharePercentageMarkedBased": null,
                            "targetSharePercentageLocationBased": null,
                            "targetResult": 37.8,
                            "targetResultMarkedBased": null,
                            "targetResultLocationBased": null
                        }
                    }
                ],
                "yearTotal": null,
                "yearTotalMarketBased": 186.2,
                "yearTotalLocationBased": 221.2,
                "tab": "DETAIL",
                "scope": "SEPARATED"
            }
        ],
        "scopes": "SEPARATED",
        "lastSelectedYear": 2030,
        "dataVersion": 148
    }
}

Beispiel Rückgabe answerMatrixGreenhouseGasData:

"answerMatrixGreenhouseGasData": {
    "greenhouseGasData": {
        "years": [
            {
                "rows": [
                    {
                        "scopes": [
                            1,
                            2,
                            3
                        ],
                        "total": 266,
                        "greenhouseGasses": [
                            {
                                "name": "greenhouse_gas_article.stationary assets (e.g. heating systems)"
                            },
                            {
                                "name": "greenhouse_gas_article.mobile assets (e.g. vehicles)"
                            },
                            {
                                "name": "greenhouse_gas_article.emissions from the generation of purchased electricity"
                            },
                            {
                                "name": "greenhouse_gas_article.steam"
                            },
                            {
                                "name": "greenhouse_gas_article.district heating and cooling"
                            },
                            {
                                "name": "greenhouse_gas_article.purchased goods and services"
                            },
                            {
                                "name": "greenhouse_gas_article.capital goods"
                            },
                            {
                                "name": "greenhouse_gas_article.fuel and energy-related emissions (not included in scope 1 or 2)"
                            },
                            {
                                "name": "greenhouse_gas_article.transport and distribution (upstream)"
                            },
                            {
                                "name": "greenhouse_gas_article.waste"
                            },
                            {
                                "name": "greenhouse_gas_article.business travel"
                            },
                            {
                                "name": "greenhouse_gas_article.employee commuting"
                            },
                            {
                                "name": "greenhouse_gas_article.tangible assets rented or leased"
                            },
                            {
                                "name": "greenhouse_gas_article.transport and distribution (downstream)"
                            },
                            {
                                "name": "greenhouse_gas_article.processing of products sold"
                            },
                            {
                                "name": "greenhouse_gas_article.use of products sold"
                            },
                            {
                                "name": "greenhouse_gas_article.handling of sold products at the end of their life cycle"
                            },
                            {
                                "name": "greenhouse_gas_article.leased or rented property, plant and equipment"
                            },
                            {
                                "name": "greenhouse_gas_article.franchise"
                            },
                            {
                                "name": "greenhouse_gas_article.investments"
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": null,
                            "targetPercent": null,
                            "targetSharePercent": null,
                            "targetResult": 0
                        }
                    }
                ],
                "year": 2020,
                "tab": "DETAIL",
                "isBaseYear": true,
                "isReportYear": false,
                "isGoalYear": false
            },
            {
                "rows": [
                    {
                        "scopes": [
                            1,
                            2,
                            3
                        ],
                        "total": null,
                        "greenhouseGasses": [
                            {
                                "name": "greenhouse_gas_article.stationary assets (e.g. heating systems)"
                            },
                            {
                                "name": "greenhouse_gas_article.mobile assets (e.g. vehicles)"
                            },
                            {
                                "name": "greenhouse_gas_article.emissions from the generation of purchased electricity"
                            },
                            {
                                "name": "greenhouse_gas_article.steam"
                            },
                            {
                                "name": "greenhouse_gas_article.district heating and cooling"
                            },
                            {
                                "name": "greenhouse_gas_article.purchased goods and services"
                            },
                            {
                                "name": "greenhouse_gas_article.capital goods"
                            },
                            {
                                "name": "greenhouse_gas_article.fuel and energy-related emissions (not included in scope 1 or 2)"
                            },
                            {
                                "name": "greenhouse_gas_article.transport and distribution (upstream)"
                            },
                            {
                                "name": "greenhouse_gas_article.waste"
                            },
                            {
                                "name": "greenhouse_gas_article.business travel"
                            },
                            {
                                "name": "greenhouse_gas_article.employee commuting"
                            },
                            {
                                "name": "greenhouse_gas_article.tangible assets rented or leased"
                            },
                            {
                                "name": "greenhouse_gas_article.transport and distribution (downstream)"
                            },
                            {
                                "name": "greenhouse_gas_article.processing of products sold"
                            },
                            {
                                "name": "greenhouse_gas_article.use of products sold"
                            },
                            {
                                "name": "greenhouse_gas_article.handling of sold products at the end of their life cycle"
                            },
                            {
                                "name": "greenhouse_gas_article.leased or rented property, plant and equipment"
                            },
                            {
                                "name": "greenhouse_gas_article.franchise"
                            },
                            {
                                "name": "greenhouse_gas_article.investments"
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": 266,
                            "targetPercent": 100,
                            "targetSharePercent": 30,
                            "targetResult": 159.6
                        }
                    }
                ],
                "year": 2030,
                "tab": "DETAIL",
                "isBaseYear": false,
                "isReportYear": false,
                "isGoalYear": true
            },
            {
                "rows": [
                    {
                        "scopes": [
                            1,
                            2,
                            3
                        ],
                        "total": 219,
                        "greenhouseGasses": [
                            {
                                "name": "greenhouse_gas_article.stationary assets (e.g. heating systems)"
                            },
                            {
                                "name": "greenhouse_gas_article.mobile assets (e.g. vehicles)"
                            },
                            {
                                "name": "greenhouse_gas_article.emissions from the generation of purchased electricity"
                            },
                            {
                                "name": "greenhouse_gas_article.steam"
                            },
                            {
                                "name": "greenhouse_gas_article.district heating and cooling"
                            },
                            {
                                "name": "greenhouse_gas_article.purchased goods and services"
                            },
                            {
                                "name": "greenhouse_gas_article.capital goods"
                            },
                            {
                                "name": "greenhouse_gas_article.fuel and energy-related emissions (not included in scope 1 or 2)"
                            },
                            {
                                "name": "greenhouse_gas_article.transport and distribution (upstream)"
                            },
                            {
                                "name": "greenhouse_gas_article.waste"
                            },
                            {
                                "name": "greenhouse_gas_article.business travel"
                            },
                            {
                                "name": "greenhouse_gas_article.employee commuting"
                            },
                            {
                                "name": "greenhouse_gas_article.tangible assets rented or leased"
                            },
                            {
                                "name": "greenhouse_gas_article.transport and distribution (downstream)"
                            },
                            {
                                "name": "greenhouse_gas_article.processing of products sold"
                            },
                            {
                                "name": "greenhouse_gas_article.use of products sold"
                            },
                            {
                                "name": "greenhouse_gas_article.handling of sold products at the end of their life cycle"
                            },
                            {
                                "name": "greenhouse_gas_article.leased or rented property, plant and equipment"
                            },
                            {
                                "name": "greenhouse_gas_article.franchise"
                            },
                            {
                                "name": "greenhouse_gas_article.investments"
                            }
                        ],
                        "targetCalculation": {
                            "referenceValue": null,
                            "targetPercent": null,
                            "targetSharePercent": null,
                            "targetResult": 0
                        }
                    }
                ],
                "year": 2022,
                "tab": "DETAIL",
                "isBaseYear": false,
                "isReportYear": true,
                "isGoalYear": false
            }
        ],
        "scopes": "COMBINED"
    },
    "id": null
}

Treibhausgas Emissionen Intensität (answerMatrixIntensity) - SEPARATED

Attribut Wert
Question ID 1037
scope SEPARATED
API Dokumentation Treibhausgasemissionen Intensität Seperated (1/3)
API Dokumentation Treibhausgasemissionen Intensität Seperated (2/3)
API Dokumentation Treibhausgasemissionen Intensität Seperated (3/3)

Beispiel Rückgabe answerMatrixIntensity:

"answerMatrixIntensity": {
    "intensities": {
        "selectedScope": "SEPARATED",
        "years": [
            {
                "data": [
                    {
                        "scopes": [
                            1
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 10
                            }
                        ]
                    },
                    {
                        "scopes": [
                            2
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 10
                            },
                            {
                                "intensityUnit": "tCO2e/MWh",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 2
                            }
                        ]
                    },
                    {
                        "scopes": [
                            3
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 10
                            }
                        ]
                    }
                ],
                "year": 2020,
                "isBaseYear": true,
                "isReportYear": false,
                "isGoalYear": false
            },
            {
                "data": [
                    {
                        "scopes": [
                            1
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 7
                            },
                            {
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 5
                            }
                        ]
                    },
                    {
                        "scopes": [
                            2
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 7
                            },
                            {
                                "intensityUnit": "tCO2e/MWh",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 1
                            }
                        ]
                    },
                    {
                        "scopes": [
                            3
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 7
                            }
                        ]
                    }
                ],
                "year": 2022,
                "isBaseYear": false,
                "isReportYear": true,
                "isGoalYear": false
            },
            {
                "data": [
                    {
                        "scopes": [
                            1
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": 10,
                                    "targetShareInPercent": 100,
                                    "reductionTargetInPercent": -70,
                                    "calculationResult": 3.0000000000000004
                                },
                                "value": 10
                            },
                            {
                                "targetCalculation": {
                                    "referenceValue": 5,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": 0
                                },
                                "value": 5
                            }
                        ]
                    },
                    {
                        "scopes": [
                            2
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": 10,
                                    "targetShareInPercent": 100,
                                    "reductionTargetInPercent": -70,
                                    "calculationResult": 3.0000000000000004
                                },
                                "value": 10
                            },
                            {
                                "intensityUnit": "tCO2e/MWh",
                                "targetCalculation": {
                                    "referenceValue": 2,
                                    "targetShareInPercent": 100,
                                    "reductionTargetInPercent": -70,
                                    "calculationResult": 0.6000000000000001
                                },
                                "value": 2
                            }
                        ]
                    },
                    {
                        "scopes": [
                            3
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": 10,
                                    "targetShareInPercent": 100,
                                    "reductionTargetInPercent": -70,
                                    "calculationResult": 3.0000000000000004
                                },
                                "value": 10
                            }
                        ]
                    }
                ],
                "year": 2030,
                "isBaseYear": false,
                "isReportYear": false,
                "isGoalYear": true
            }
        ]
    },
    "id": null
}

 

Treibhausgas Emissionen Intensität (answerMatrixIntensity) - COMBINED

Attribut Wert
Question ID 1037
scope COMBINED
API Dokumentation Treibhausgasemissionen Intensität Combined (1/3)
API Dokumentation Treibhausgasemissionen Intensität Combined (2/3)
API Dokumentation Treibhausgasemissionen Intensität Combined (3/3)

Beispiel Rückgabe answerMatrixIntensity:

"answerMatrixIntensity": {
    "intensities": {
        "selectedScope": "COMBINED",
        "years": [
            {
                "data": [
                    {
                        "scopes": [
                            1,
                            2,
                            3
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 10
                            },
                            {
                                "intensityUnit": "tCO2e/MWh",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 2
                            }
                        ]
                    }
                ],
                "year": 2020,
                "isBaseYear": true,
                "isReportYear": false,
                "isGoalYear": false
            },
            {
                "data": [
                    {
                        "scopes": [
                            1,
                            2,
                            3
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 10
                            },
                            {
                                "intensityUnit": "tCO2e/MWh",
                                "targetCalculation": {
                                    "referenceValue": null,
                                    "targetShareInPercent": null,
                                    "reductionTargetInPercent": null,
                                    "calculationResult": null
                                },
                                "value": 1
                            }
                        ]
                    }
                ],
                "year": 2022,
                "isBaseYear": false,
                "isReportYear": true,
                "isGoalYear": false
            },
            {
                "data": [
                    {
                        "scopes": [
                            1,
                            2,
                            3
                        ],
                        "rows": [
                            {
                                "intensityUnit": "tCO2e/m2",
                                "targetCalculation": {
                                    "referenceValue": 10,
                                    "targetShareInPercent": 100,
                                    "reductionTargetInPercent": -70,
                                    "calculationResult": 3.0000000000000004
                                },
                                "value": 10
                            },
                            {
                                "intensityUnit": "tCO2e/MWh",
                                "targetCalculation": {
                                    "referenceValue": 2,
                                    "targetShareInPercent": 100,
                                    "reductionTargetInPercent": -70,
                                    "calculationResult": 0.6000000000000001
                                },
                                "value": 2
                            }
                        ]
                    }
                ],
                "year": 2030,
                "isBaseYear": false,
                "isReportYear": false,
                "isGoalYear": true
            }
        ]
    },
    "id": null
}

 

Abfall & Recycling (answerMatrixWasteData)

Attribut Wert
Question ID 1005
API Dokumentation Abfall & Recycling (1/3)
API Dokumentation Abfall & Recycling (2/3)
API Dokumentation Abfall & Recycling (3/3)

Beispiel Rückgabe answerMatrixWasteData:

"answerMatrixWasteData": {
    "wasteData": {
        "years": [
            {
                "year": 2023,
                "isBaseYear": false,
                "isReportYear": true,
                "isGoalYear": false,
                "notDangerousWasteSum": 249,
                "dangerousWasteSum": 40,
                "productionWasteSum": null,
                "normalPercentageChangeGoal": 0,
                "normalWasteGoalSum": 0,
                "specialPercentageChangeGoal": 0,
                "specialWasteGoalSum": 0,
                "prodPercentageChangeGoal": null,
                "prodWasteGoalSum": null,
                "selectedSumDetail": "DETAIL",
                "totalSum": 289,
                "totalBaseSum": null,
                "unitValue": "kg",
                "codeLegislation": "EU",
                "normalWastes": [
                    {
                        "rowId": "4f99d85f-9164-49de-93c4-10dabee48519",
                        "wasteValue": 24,
                        "wasteArticle": {
                            "wasteType": "NORMAL_WASTE",
                            "wasteCode": "02 01 04",
                            "wasteName": "waste_article.waste plastics (except packaging).02 01 04",
                            "isDefault": false,
                            "codeLegislation": "EU"
                        }
                    },
                    {
                        "rowId": "98c1d353-10ba-4032-bb65-35223f2f89cc",
                        "wasteValue": 50,
                        "wasteArticle": {
                            "wasteType": "NORMAL_WASTE",
                            "wasteCode": "12 01 03",
                            "wasteName": "waste_article.non-ferrous metal filings and turnings.12 01 03",
                            "isDefault": false,
                            "codeLegislation": "EU"
                        }
                    },
                    {
                        "rowId": "e8f4b171-0fe8-4b8a-8b86-4601326c38e6",
                        "wasteValue": 60,
                        "wasteArticle": {
                            "wasteType": "NORMAL_WASTE",
                            "wasteCode": "20 01 01",
                            "wasteName": "waste_article.paper and cardboard.20 01 01",
                            "isDefault": false,
                            "codeLegislation": "EU"
                        }
                    },
                    {
                        "rowId": "398b2902-38f6-466f-ac74-bd9d0739118d",
                        "wasteValue": 55,
                        "wasteArticle": {
                            "wasteType": "NORMAL_WASTE",
                            "wasteCode": "02 01",
                            "wasteName": "waste_article.wastes from agriculture, horticulture, a.02 01",
                            "isDefault": false,
                            "codeLegislation": "EU"
                        }
                    },
                    {
                        "rowId": "f5dd9e9a-dfc5-4f27-9a17-bd49c504364e",
                        "wasteValue": 60,
                        "wasteArticle": {
                            "wasteType": "NORMAL_WASTE",
                            "wasteCode": "20 03 99",
                            "wasteName": "waste_article.municipal wastes not otherwise specified.20 03 99",
                            "isDefault": false,
                            "codeLegislation": "EU"
                        }
                    }
                ],
                "specialWastes": [
                    {
                        "rowId": "e5bf839a-d9cf-4445-97fd-67eb037a6ad1",
                        "wasteValue": 40,
                        "wasteArticle": {
                            "wasteType": "DANGEROUS_WASTE",
                            "wasteCode": "16 06 06",
                            "wasteName": "waste_article.separately collected electrolyte from ba.16 06 06",
                            "isDefault": false,
                            "codeLegislation": "EU"
                        }
                    }
                ],
                "productionWastes": []
            },
            {
                "year": 2030,
                "isBaseYear": false,
                "isReportYear": false,
                "isGoalYear": true,
                "notDangerousWasteSum": 200,
                "dangerousWasteSum": 40,
                "productionWasteSum": null,
                "normalPercentageChangeGoal": -10,
                "normalWasteGoalSum": 180,
                "specialPercentageChangeGoal": -10,
                "specialWasteGoalSum": 36,
                "prodPercentageChangeGoal": null,
                "prodWasteGoalSum": null,
                "selectedSumDetail": "SUM",
                "totalSum": 216,
                "totalBaseSum": 240,
                "unitValue": "kg",
                "codeLegislation": "EU",
                "normalWastes": [],
                "specialWastes": [],
                "productionWastes": null
            },
            {
                "year": 2020,
                "isBaseYear": true,
                "isReportYear": false,
                "isGoalYear": false,
                "notDangerousWasteSum": 200,
                "dangerousWasteSum": 40,
                "productionWasteSum": null,
                "normalPercentageChangeGoal": null,
                "normalWasteGoalSum": null,
                "specialPercentageChangeGoal": null,
                "specialWasteGoalSum": null,
                "prodPercentageChangeGoal": null,
                "prodWasteGoalSum": null,
                "selectedSumDetail": "SUM",
                "totalSum": 240,
                "totalBaseSum": null,
                "unitValue": "kg",
                "codeLegislation": "EU",
                "normalWastes": [],
                "specialWastes": [],
                "productionWastes": null
            }
        ],
        "lastSelectedYear": null
    },
    "id": null
}