diff --git a/schema/schema.json b/schema/schema.json index 473bfd45..2484f3ef 100644 --- a/schema/schema.json +++ b/schema/schema.json @@ -1797,6 +1797,24 @@ "FileType": { "$id": "#FileType", "anyOf": [ + { + "additionalProperties": false, + "properties": { + "description": { + "const": "Details of impact on access, roads, and rights of way", + "type": "string" + }, + "value": { + "const": "accessRoadsRightsOfWayDetails", + "type": "string" + } + }, + "required": [ + "value", + "description" + ], + "type": "object" + }, { "additionalProperties": false, "properties": { diff --git a/types/enums/FileTypes.ts b/types/enums/FileTypes.ts index d99864e3..e8799764 100644 --- a/types/enums/FileTypes.ts +++ b/types/enums/FileTypes.ts @@ -2,6 +2,8 @@ * Values of `file.type` */ export const FileTypes = { + accessRoadsRightsOfWayDetails: + 'Details of impact on access, roads, and rights of way', affordableHousingStatement: 'Affordable housing statement', arboriculturistReport: 'Arboriculturist report', bankStatement: 'Bank statement',