Skip to content

Commit

Permalink
Merge pull request #57 from Interhyp/update-submission-api-specs-v-6.7.8
Browse files Browse the repository at this point in the history
Update submission api specs v 6.7.8
  • Loading branch information
maciejrajczyk authored Jun 5, 2024
2 parents 2720d76 + 72c3d3f commit a3278a3
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Submission Data API

### v6.7.8
* Add PreInquires to Submission
* Extend green deal fields

### v6.7.7
* add shortTimeWork boolean to ShortTimeWork
* add new enum value - FARMER to FreeLancerJobTYpe
Expand Down
61 changes: 60 additions & 1 deletion submission-api-data/submission-api-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.2
x-guideline-version: v1
info:
title: Interhyp Submission API
version: 6.7.7
version: 6.7.8
contact:
name: Interhyp AG (Team Provider Excellence)
email: [email protected]
Expand Down Expand Up @@ -5560,6 +5560,18 @@ components:
maximum: 100000
description: |
DE: Primärenergiebedarf (in kWh/m2 pro Jahr)<br/> EN: Primary energy demand (kWh/m2 per year)
primaryEnergyConsumption:
type: integer
minimum: 0
maximum: 100000
description: |
DE: Primärenergieverbrauch nach Modernisierung (in kWh/m2 pro Jahr) - nicht relevant bei Grundstücken, sowie bei den Finanzierungsgründen Bau, Kauf Neubau<br/> EN: primary energy consumption after modernisation (kWh/m2 per year) - not relevant for plots of land and financing reasons build, buy new building
carbondioxideEmissions:
type: integer
minimum: 0
maximum: 100000
description: |
DE: CO2 Emissionen (in kg/m2 pro Jahr) nach Modernisierung - nicht relevant bei Grundstücken, sowie bei den Finanzierungsgründen Bau, Kauf Neubau<br> EN: Carbondioxide emissions (in kg/m2 per year) after modernisation - not relevant for plots of land and financing reasons build, buy new building
EntryMarking:
type: object
description: |
Expand Down Expand Up @@ -9785,6 +9797,51 @@ components:
DE: Grundstücksgröße. <br/>
EN: Property space.
$ref: '#/components/schemas/SquareMeter'
PreInquires:
type: object
required:
- preInquires
properties:
preInquires:
type: array
items:
$ref: '#/components/schemas/PreInquiry'
PreInquiry:
type: object
properties:
preInquiryId:
$ref: '#/components/schemas/PreInquiryId'
createdAt:
$ref: '#/components/schemas/ISODateTime'
status:
$ref: '#/components/schemas/PreInquiryStatus'
PreInquiryId:
type: object
description: |
DE: ID des Voranfrage. <br/> EN: PreInquiry identifier.
properties:
value:
type: string
PreInquiryStatus:
type: object
required:
- key
properties:
key:
$ref: '#/components/schemas/PreInquiryStatusKey'
PreInquiryStatusKey:
type: string
description: |
DE: Status des Voranfrage. <br/> EN: Status of the preInquiry.
x-extensible-enum:
- CREATED
- INWORK
- SUBMITTED
- ACCEPTED
- ACCEPTED_WITH_PROPOSAL
- REJECTED
- ABORTED
- TERMINATED
PreSubmissionCheck:
type: object
description: |
Expand Down Expand Up @@ -11707,6 +11764,8 @@ components:
$ref: '#/components/schemas/ResidualDebtProtections'
originInfo:
$ref: '#/components/schemas/OriginInfo'
preInquires:
$ref: '#/components/schemas/PreInquires'
SubmissionAwaitExternalProcessingStatus:
type: object
description: |
Expand Down

0 comments on commit a3278a3

Please sign in to comment.