diff --git a/test/Altinn.App.Api.Tests/OpenApi/swagger.json b/test/Altinn.App.Api.Tests/OpenApi/swagger.json index 63f8ea339..0625e8143 100644 --- a/test/Altinn.App.Api.Tests/OpenApi/swagger.json +++ b/test/Altinn.App.Api.Tests/OpenApi/swagger.json @@ -1804,7 +1804,7 @@ "description": "OK" }, "425": { - "description": "Too Early" + "description": "Client Error" }, "500": { "description": "Internal Server Error" @@ -5259,7 +5259,8 @@ "actions": { "type": "object", "additionalProperties": { - "type": "boolean" + "type": "boolean", + "nullable": true }, "nullable": true }, @@ -5365,8 +5366,7 @@ "type": "boolean" }, "allowInSubform": { - "type": "boolean", - "deprecated": true + "type": "boolean" }, "shadowFields": { "$ref": "#/components/schemas/ShadowFields" @@ -5464,7 +5464,7 @@ "copyInstanceSettings": { "$ref": "#/components/schemas/CopyInstanceSettings" }, - "storageAccountNumber": { + "storageContainerNumber": { "type": "integer", "format": "int32", "nullable": true @@ -5479,7 +5479,8 @@ "features": { "type": "object", "additionalProperties": { - "type": "boolean" + "type": "boolean", + "nullable": true }, "nullable": true }, @@ -6502,8 +6503,12 @@ "JsonNodeOptions": { "type": "object", "properties": { - "propertyNameCaseInsensitive": { - "type": "boolean" + "hasValue": { + "type": "boolean", + "readOnly": true + }, + "value": { + "$ref": "#/components/schemas/JsonNodeOptions" } }, "additionalProperties": false @@ -7344,7 +7349,8 @@ "items": { "$ref": "#/components/schemas/ValidationIssueWithSource" } - } + }, + "nullable": true }, "nullable": true }, diff --git a/test/Altinn.App.Api.Tests/OpenApi/swagger.yaml b/test/Altinn.App.Api.Tests/OpenApi/swagger.yaml index b51ddaa7e..591b4f8cb 100644 --- a/test/Altinn.App.Api.Tests/OpenApi/swagger.yaml +++ b/test/Altinn.App.Api.Tests/OpenApi/swagger.yaml @@ -1101,7 +1101,7 @@ paths: '200': description: OK '425': - description: Too Early + description: Client Error '500': description: Internal Server Error '401': @@ -3215,6 +3215,7 @@ components: type: object additionalProperties: type: boolean + nullable: true nullable: true userActions: type: array @@ -3290,7 +3291,6 @@ components: type: boolean allowInSubform: type: boolean - deprecated: true shadowFields: $ref: '#/components/schemas/ShadowFields' additionalProperties: false @@ -3361,7 +3361,7 @@ components: $ref: '#/components/schemas/MessageBoxConfig' copyInstanceSettings: $ref: '#/components/schemas/CopyInstanceSettings' - storageAccountNumber: + storageContainerNumber: type: integer format: int32 nullable: true @@ -3374,6 +3374,7 @@ components: type: object additionalProperties: type: boolean + nullable: true nullable: true logo: $ref: '#/components/schemas/Logo' @@ -4114,8 +4115,11 @@ components: JsonNodeOptions: type: object properties: - propertyNameCaseInsensitive: + hasValue: type: boolean + readOnly: true + value: + $ref: '#/components/schemas/JsonNodeOptions' additionalProperties: false JsonPatch: type: object @@ -4723,6 +4727,7 @@ components: type: array items: $ref: '#/components/schemas/ValidationIssueWithSource' + nullable: true nullable: true clientActions: type: array