Skip to content

Commit

Permalink
update api-servers openapi.json
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgaard-itis committed Nov 4, 2024
1 parent 4c10945 commit 679640a
Showing 1 changed file with 36 additions and 8 deletions.
44 changes: 36 additions & 8 deletions services/api-server/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -5939,8 +5939,8 @@
"job_id": "3497e4de-0e69-41fb-b08f-7f3875a1ac4b",
"metadata": {
"bool": "true",
"int": "42",
"float": "3.14",
"int": "42",
"str": "hej med dig"
},
"url": "https://f02b2452-1dd8-4882-b673-af06373b41b3.fake"
Expand Down Expand Up @@ -5975,8 +5975,8 @@
"example": {
"metadata": {
"bool": "true",
"int": "42",
"float": "3.14",
"int": "42",
"str": "hej med dig"
}
}
Expand Down Expand Up @@ -6262,8 +6262,15 @@
"title": "Items"
},
"total": {
"type": "integer",
"minimum": 0,
"anyOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "null"
}
],
"title": "Total"
}
},
Expand All @@ -6283,8 +6290,15 @@
"title": "Items"
},
"total": {
"type": "integer",
"minimum": 0,
"anyOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "null"
}
],
"title": "Total"
}
},
Expand Down Expand Up @@ -6826,11 +6840,25 @@
"title": "Uid"
},
"title": {
"type": "string",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Title"
},
"description": {
"type": "string",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Description"
}
},
Expand Down

0 comments on commit 679640a

Please sign in to comment.