Skip to content

Commit db0e68a

Browse files
hf-kkleinKonstantin
and
Konstantin
authoredOct 2, 2024··
Add format: int64 to schema marketPartnerId (#9)
* Add `format: int64` to schema `marketPartnerId` * Update README.md --------- Co-authored-by: Konstantin <konstantin.klein+github@hochfrequenz.de>
1 parent 22cbfed commit db0e68a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Most of the classes are autogenerated from the [`openapi.yml`](openapi/openapi.y
4747
Note that we fixed some errors in the official OpenAPI spec.
4848
Our changes are mentioned at the beginning of the [`openapi.yml`](openapi/openapi.yml) file.
4949

50-
https://github.com/Hochfrequenz/malo-ident-python-models/blob/2e1784c93d000bb7503a9688f1c648059481c2fc/openapi/openapi.yml#L4-L9
50+
https://github.com/Hochfrequenz/malo-ident-python-models/blob/3cfe0aea3cff051303ef5e513d06ab6c5741f21a/openapi/openapi.yml#L4-L10
5151

5252
After updating the `openapi.yml` file, use
5353

‎openapi/openapi.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# 2. Some yaml parsers fail, because: Multi-line double-quoted strings are not sufficiently indented (can be found with prettier in CI)
88
# 3. Datetimes are poorly designed. Instead of using the OpenAPI format:date-time, a regex with good intentions is used. This leads to code-generators using type string instead of datetime.
99
# 4. 'format: UUID RFC4122' may not be recognized but is valid: "Formats such as "email", "uuid", and so on, MAY be used even though undefined by this specification".
10+
# 5. Typing the marketPartnerId as integer is a poor decision. For better compatability, we added the `format: int64`, so that the 13digit values fit (and they don't fit in 32bit).
1011

1112
openapi: 3.0.0
1213
servers:
@@ -614,6 +615,7 @@ components:
614615
marketPartnerId:
615616
pattern: "\\d{13}"
616617
type: integer
618+
format: int64 # ERROR-5
617619
description: Identifiziert den Marktpartner (Marktpartner-ID)
618620
example: 9900987654321
619621

0 commit comments

Comments
 (0)
Please sign in to comment.