Skip to content

Commit bb648f9

Browse files
authored
fix: supply-chain exportToImportMap value type (#108)
This looks like it was just generated wrong. The response uses a Map<String, List<String>> for which the openapi syntax appears to be to put the value type in "additionalProperties" which I've done here.
1 parent 20e2b91 commit bb648f9

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

reference/SpaceTraders.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3517,12 +3517,10 @@
35173517
"properties": {
35183518
"exportToImportMap": {
35193519
"type": "object",
3520-
"properties": {
3521-
"string": {
3522-
"type": "array",
3523-
"items": {
3524-
"type": "string"
3525-
}
3520+
"additionalProperties": {
3521+
"type": "array",
3522+
"items": {
3523+
"type": "string"
35263524
}
35273525
}
35283526
}

0 commit comments

Comments
 (0)