Skip to content

Commit

Permalink
chore: update FileTypes enum (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak authored Mar 12, 2024
1 parent 425f83b commit bcfb2f5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
18 changes: 18 additions & 0 deletions schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 2 additions & 0 deletions types/enums/FileTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit bcfb2f5

Please sign in to comment.