Skip to content

Commit

Permalink
chore: Add @next schema for diff
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed Feb 7, 2024
1 parent dff455d commit fdb1a7d
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4381,6 +4381,9 @@
"service": {
"additionalProperties": false,
"properties": {
"files": {
"$ref": "#/definitions/RequestedFiles"
},
"flowId": {
"$ref": "#/definitions/UUID"
},
Expand All @@ -4390,7 +4393,8 @@
},
"required": [
"flowId",
"url"
"url",
"files"
],
"type": "object"
},
Expand Down Expand Up @@ -20504,6 +20508,37 @@
},
"type": "object"
},
"RequestedFiles": {
"$id": "#RequestedFiles",
"additionalProperties": false,
"description": "File types requested by this service. Schema[\"files\"] will be a subset of this list based on the user's journey through the service.",
"properties": {
"optional": {
"items": {
"$ref": "#/definitions/FileType"
},
"type": "array"
},
"recommended": {
"items": {
"$ref": "#/definitions/FileType"
},
"type": "array"
},
"required": {
"items": {
"$ref": "#/definitions/FileType"
},
"type": "array"
}
},
"required": [
"required",
"recommended",
"optional"
],
"type": "object"
},
"Response": {
"additionalProperties": false,
"properties": {
Expand Down

0 comments on commit fdb1a7d

Please sign in to comment.