-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a11d5e
commit 90ad8e2
Showing
5 changed files
with
67 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
import { Schema } from '../../types/Schema'; | ||
import {Schema} from '../../types/Schema'; | ||
|
||
export const validResponses: Schema['responses'] = [ | ||
{ | ||
"metadata": { | ||
"section_name": "The property", | ||
"auto_answered": true | ||
metadata: { | ||
section_name: 'The property', | ||
auto_answered: true, | ||
}, | ||
"question": "Is the property in London Borough of Southwark?", | ||
"responses": [ | ||
question: 'Is the property in London Borough of Southwark?', | ||
responses: [ | ||
{ | ||
"value": "Yes" | ||
} | ||
] | ||
value: 'Yes', | ||
}, | ||
], | ||
}, | ||
{ | ||
"metadata": { | ||
"policy_refs": [ | ||
metadata: { | ||
policy_refs: [ | ||
{ | ||
"text": "Town and Country Planning Act 1990, Part 7, Section 191 & Section 192" | ||
} | ||
text: 'Town and Country Planning Act 1990, Part 7, Section 191 & Section 192', | ||
}, | ||
], | ||
"section_name": "About the project" | ||
section_name: 'About the project', | ||
}, | ||
"question": "What are you applying about?", | ||
"responses": [ | ||
question: 'What are you applying about?', | ||
responses: [ | ||
{ | ||
"value": "Proposed changes I want to make in the future" | ||
} | ||
] | ||
value: 'Proposed changes I want to make in the future', | ||
}, | ||
], | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import {Flags} from "../enums/Flags"; | ||
import {Flags} from '../enums/Flags'; | ||
|
||
/** | ||
* @id #Result | ||
|