generated from bcgov/bcrs-template-ui
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from andrepestana-aot/6415_Schema-Add_Court_Or…
…der_and_Plan_of_Arrangement 6415 - Add Court Order and Plan of Arrangement
- Loading branch information
Showing
7 changed files
with
91 additions
and
3 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
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 |
---|---|---|
|
@@ -1119,6 +1119,12 @@ | |
} | ||
} | ||
|
||
COURT_ORDER = { | ||
'fileNumber': '#1234-5678/90', | ||
'orderDate': '2021-01-30T09:56:01+08:00', | ||
'effectOfOrder': 'Order to disclose financial data' | ||
} | ||
|
||
ALTERATION = { | ||
'provisionsRemoved': False, | ||
'business': { | ||
|
@@ -1156,7 +1162,8 @@ | |
}, | ||
'contactPoint': { | ||
'email': '[email protected]' | ||
} | ||
}, | ||
'courtOrder': COURT_ORDER | ||
} | ||
|
||
CONVERSION = { | ||
|
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"definitions": {}, | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://bcrs.gov.bc.ca/.well_known/schemas/court_order", | ||
"type": "object", | ||
"title": "Court Order Information Schema", | ||
"properties": { | ||
"fileNumber": { | ||
"type": "string", | ||
"minLength": 5, | ||
"maxLength": 20, | ||
"description": "The court assigns each court order a unique file number up to 20 characters in length." | ||
}, | ||
"orderDate": { | ||
"type": "string", | ||
"description": "The date and time of the court order.", | ||
"format": "date-time", | ||
"examples": ["1970-01-01T00:00:00+00:00"] | ||
}, | ||
"effectOfOrder": { | ||
"type": "string", | ||
"minLength": 5, | ||
"maxLength": 500, | ||
"description": "A brief note to explain the purpose of the Court Order." | ||
} | ||
}, | ||
"required": [ | ||
"fileNumber", | ||
"orderDate" | ||
] | ||
} |
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