-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jeremy Ho <[email protected]>
- Loading branch information
Showing
5 changed files
with
41 additions
and
32 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 |
---|---|---|
|
@@ -41,5 +41,6 @@ | |
"title": "pin", | ||
"required": ["pin"] | ||
} | ||
] | ||
], | ||
"additionalProperties": false | ||
} |
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,8 +1,6 @@ | ||
{ | ||
"class": "status", | ||
"class": ["Application", "Review", "Assessment"], | ||
"concept": "http://bcgov.github.io/nr-pies/docs/concept/process_tracking", | ||
"description": "The authorization request is under review by subject matter expert.", | ||
"parent_class": "stage", | ||
"parent_concept": "underreview", | ||
"system": "http://bcgov.github.io/nr-pies/docs/concept/process_tracking", | ||
"value": "pending review" | ||
"status": "UnderReview" | ||
} |
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,23 +1,35 @@ | ||
{ | ||
"$id": "https://github.com/bcgov/nr-pies/blob/main/docs/spec/types/project_bundle.schema.json", | ||
"$schema": "https://json-schema.org/draft-07/schema", | ||
"title": "Project Bundle", | ||
"description": "An identifier for a specific area with clear boundaries.", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Process", | ||
"description": "Represents a process tracking concept.", | ||
"type": "object", | ||
"properties": { | ||
"project_id": { | ||
"type": "string", | ||
"description": "A unique key to track all permits related to a project or activity across all permitting systems.", | ||
"pattern": "/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i" | ||
"class": { | ||
"type": "array", | ||
"items": { | ||
"type": "string", | ||
"description": "A process tracking term." | ||
}, | ||
"minItems": 1, | ||
"maxItems": 3, | ||
"uniqueItems": true | ||
}, | ||
"project_name": { | ||
"concept": { | ||
"type": "string", | ||
"description": "Short name of the project." | ||
"description": "A reference to the concept map encodings used.", | ||
"format": "uri", | ||
"pattern": "^https://bcgov.github.io/nr-pies/docs/concept/*$" | ||
}, | ||
"project_description": { | ||
"type": "string", | ||
"description": "Full description of the project. This may contain information to better understand a project." | ||
"description": { | ||
"description": "An optional description of the status if present.", | ||
"type": "string" | ||
}, | ||
"status": { | ||
"description": "A description of the current condition or update of an application or authorization. Additional details about the current state are frequently conveyed (e.g., 'Pending Review', 'Under Inspection'). Statuses may be defined by the line of business.", | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["project_id", "project_name"] | ||
"required": ["class", "concept"], | ||
"additionalProperties": false | ||
} |
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,19 +1,17 @@ | ||
{ | ||
"event": [ | ||
{ | ||
"start": "2017-01-01T00:00:00.000Z", | ||
"end": "2017-01-02T00:00:00.000Z" | ||
"start": "2017-01-02T00:00:00.000Z", | ||
"end": "2017-01-03T00:00:00.000Z" | ||
}, | ||
{ | ||
"start": "2017-01-03T00:00:00.000Z" | ||
"start": "2017-01-04T00:00:00.000Z" | ||
} | ||
], | ||
"process": { | ||
"class": "status", | ||
"class": ["Application", "Review", "Assessment"], | ||
"concept": "http://bcgov.github.io/nr-pies/docs/concept/process_tracking", | ||
"description": "The authorization request is under review by subject matter expert.", | ||
"parent_class": "stage", | ||
"parent_concept": "underreview", | ||
"system": "http://bcgov.github.io/nr-pies/docs/concept/process_tracking", | ||
"value": "pending review" | ||
"status": "UnderReview" | ||
} | ||
} |