-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 1bd19c7 🚀
- Loading branch information
Showing
4 changed files
with
487 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"description": "", | ||
"type": "object", | ||
"required": [ | ||
"announcementType", | ||
"announcementUrl", | ||
"announcementDate" | ||
], | ||
"properties": { | ||
"announcementType": { | ||
"type": "string", | ||
"enum": [ | ||
"Primary", | ||
"Secondary" | ||
] | ||
}, | ||
"announcementUrl": { | ||
"type": "string", | ||
"title": "Announcement URL" | ||
}, | ||
"announcementDate": { | ||
"type": "string", | ||
"title": "Announcement date" | ||
}, | ||
"otherProjectsInAnnouncement": { | ||
"type": "string", | ||
"title": "Other projects in announcement" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
{ | ||
"title": "Conditional approval", | ||
"description": "", | ||
"type": "object", | ||
"properties": { | ||
"decision": { | ||
"title": "Minister's decision", | ||
"type": "object", | ||
"required": [ | ||
"ministerDecision", | ||
"ministerDate", | ||
"ministerAnnouncement" | ||
], | ||
"properties": { | ||
"ministerDecision": { | ||
"type": "string", | ||
"enum": [ | ||
"Approved", | ||
"Not approved", | ||
"Hold" | ||
] | ||
}, | ||
"ministerDate": { | ||
"type": "string" | ||
}, | ||
"ministerAnnouncement": { | ||
"type": "string", | ||
"enum": [ | ||
"Announce immediately", | ||
"Hold announcement" | ||
] | ||
} | ||
} | ||
}, | ||
"isedDecisionObj": { | ||
"title": "", | ||
"type": "object", | ||
"required": [ | ||
"isedDecision", | ||
"isedDate", | ||
"isedAnnouncement" | ||
], | ||
"properties": { | ||
"isedDecision": { | ||
"type": "string", | ||
"enum": [ | ||
"Approved", | ||
"Not approved", | ||
"Hold" | ||
] | ||
}, | ||
"isedDate": { | ||
"type": "string" | ||
}, | ||
"isedAnnouncement": { | ||
"type": "string", | ||
"enum": [ | ||
"Announce immediately", | ||
"Hold announcement" | ||
] | ||
} | ||
} | ||
}, | ||
"letterOfApproval": { | ||
"type": "object", | ||
"required": [ | ||
"letterOfApprovalUpload", | ||
"letterOfApprovalDateSent" | ||
], | ||
"properties": { | ||
"letterOfApprovalUpload": { | ||
"title": " ", | ||
"type": "string" | ||
}, | ||
"letterOfApprovalDateSent": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"response": { | ||
"type": "object", | ||
"required": [ | ||
"applicantResponse", | ||
"statusApplicantSees" | ||
], | ||
"properties": { | ||
"applicantResponse": { | ||
"type": "string", | ||
"enum": [ | ||
"Accepted", | ||
"Rejected" | ||
] | ||
}, | ||
"statusApplicantSees": { | ||
"type": "string", | ||
"enum": [ | ||
"Conditionally Approved" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"title": "GIS Information", | ||
"description": "", | ||
"type": "object", | ||
"required": [ | ||
"assignedTo", | ||
"targetDate", | ||
"nextStep", | ||
"commentsOnCoverageData", | ||
"commentsOnHouseholdCounts", | ||
"commentsOnOverbuild", | ||
"commentsOnOverlap" | ||
], | ||
"properties": { | ||
"assignedTo": { | ||
"title": "Assigned to", | ||
"type": "string" | ||
}, | ||
"targetDate": { | ||
"title": "Target date", | ||
"type": "string" | ||
}, | ||
"nextStep": { | ||
"title": "Progress", | ||
"type": "string", | ||
"enum": [ | ||
"Not started", | ||
"Needs RFI", | ||
"Needs 2nd review", | ||
"Assessment complete" | ||
], | ||
"default": "Not started" | ||
}, | ||
"commentsOnCoverageData": { | ||
"title": "Comments on coverage data", | ||
"type": "string" | ||
}, | ||
"commentsOnHouseholdCounts": { | ||
"title": "Comments on household counts", | ||
"type": "string" | ||
}, | ||
"commentsOnOverbuild": { | ||
"title": "Comments on overbuild", | ||
"type": "string" | ||
}, | ||
"commentsOnOverlap": { | ||
"title": "Comments on overlap", | ||
"type": "string" | ||
} | ||
} | ||
} |
Oops, something went wrong.