Skip to content

Commit

Permalink
Deploying to gh-pages from @ 2827c9d 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
ccbc-service-account committed Oct 23, 2024
1 parent 346079e commit 8cc4caf
Show file tree
Hide file tree
Showing 4 changed files with 487 additions and 0 deletions.
30 changes: 30 additions & 0 deletions schemaspy/data/announcement.json
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"
}
}
}
103 changes: 103 additions & 0 deletions schemaspy/data/conditional_approval_data.json
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"
]
}
}
}
}
}
51 changes: 51 additions & 0 deletions schemaspy/data/gis_data.json
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"
}
}
}
Loading

0 comments on commit 8cc4caf

Please sign in to comment.