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 #59 from vysakh-menon-aot/feature/4392
4392 Schema Change for Notations
- Loading branch information
Showing
11 changed files
with
381 additions
and
9 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 |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
'header': { | ||
'name': 'annualReport', | ||
'availableOnPaperOnly': False, | ||
'inColinOnly' : False, | ||
'inColinOnly': False, | ||
'date': '2019-04-08', | ||
'certifiedBy': 'full name', | ||
'email': '[email protected]', | ||
|
@@ -1123,7 +1123,22 @@ | |
COURT_ORDER = { | ||
'fileNumber': '#1234-5678/90', | ||
'orderDate': '2021-01-30T09:56:01+08:00', | ||
'effectOfOrder': 'planOfArrangement' | ||
'effectOfOrder': 'planOfArrangement', | ||
'orderDetails': 'A note about order' | ||
} | ||
|
||
REGISTRARS_NOTATION = { | ||
'fileNumber': '#1234-5678/90', | ||
'orderDate': '2021-01-30T09:56:01+08:00', | ||
'effectOfOrder': 'planOfArrangement', | ||
'orderDetails': 'A note about order' | ||
} | ||
|
||
REGISTRARS_ORDER = { | ||
'fileNumber': '#1234-5678/90', | ||
'orderDate': '2021-01-30T09:56:01+08:00', | ||
'effectOfOrder': 'planOfArrangement', | ||
'orderDetails': 'A note about order' | ||
} | ||
|
||
ALTERATION = { | ||
|
@@ -1577,6 +1592,63 @@ | |
} | ||
} | ||
|
||
REGISTRARS_NOTATION_FILING_TEMPLATE = { | ||
'filing': { | ||
'header': { | ||
'name': 'registrarsNotation', | ||
'date': '2021-05-06', | ||
'certifiedBy': 'full name', | ||
'email': '[email protected]', | ||
'filingId': 1 | ||
}, | ||
'business': { | ||
'foundingDate': '2018-01-01T00:00:00+00:00', | ||
'identifier': 'U1234567', | ||
'legalName': 'legal name - Test', | ||
'legalType': 'BC' | ||
}, | ||
'registrarsNotation': REGISTRARS_NOTATION | ||
} | ||
} | ||
|
||
REGISTRARS_ORDER_FILING_TEMPLATE = { | ||
'filing': { | ||
'header': { | ||
'name': 'registrarsOrder', | ||
'date': '2021-05-06', | ||
'certifiedBy': 'full name', | ||
'email': '[email protected]', | ||
'filingId': 1 | ||
}, | ||
'business': { | ||
'foundingDate': '2018-01-01T00:00:00+00:00', | ||
'identifier': 'U1234567', | ||
'legalName': 'legal name - Test', | ||
'legalType': 'BC' | ||
}, | ||
'registrarsOrder': REGISTRARS_ORDER | ||
} | ||
} | ||
|
||
COURT_ORDER_FILING_TEMPLATE = { | ||
'filing': { | ||
'header': { | ||
'name': 'courtOrder', | ||
'date': '2021-05-06', | ||
'certifiedBy': 'full name', | ||
'email': '[email protected]', | ||
'filingId': 1 | ||
}, | ||
'business': { | ||
'foundingDate': '2018-01-01T00:00:00+00:00', | ||
'identifier': 'U1234567', | ||
'legalName': 'legal name - Test', | ||
'legalType': 'BC' | ||
}, | ||
'courtOrder': COURT_ORDER | ||
} | ||
} | ||
|
||
STUB_FILING = { | ||
} | ||
|
||
|
@@ -1602,7 +1674,10 @@ | |
('changeOfDirectors', CHANGE_OF_DIRECTORS_MAILING), # bcorp-specific version of filing | ||
('alteration', ALTERATION), | ||
('conversion', CONVERSION), | ||
('transition', TRANSITION) | ||
('transition', TRANSITION), | ||
('courtOrder', COURT_ORDER), | ||
('registrarsNotation', REGISTRARS_NOTATION), | ||
('registrarsOrder', REGISTRARS_ORDER) | ||
] | ||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"definitions": {}, | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://bcrs.gov.bc.ca/.well_known/schemas/registrars_notation", | ||
"type": "object", | ||
"title": "Registrars Notation 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 order.", | ||
"format": "date-time", | ||
"examples": ["1970-01-01T00:00:00+00:00"] | ||
}, | ||
"effectOfOrder": { | ||
"type": "string", | ||
"minLength": 5, | ||
"maxLength": 500, | ||
"description": "planOfArrangement" | ||
}, | ||
"orderDetails": { | ||
"type": "string", | ||
"minLength": 0, | ||
"maxLength": 2000, | ||
"description": "A brief note to explain the purpose of the order." | ||
} | ||
}, | ||
"required": [ | ||
"fileNumber" | ||
] | ||
} |
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,36 @@ | ||
{ | ||
"definitions": {}, | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://bcrs.gov.bc.ca/.well_known/schemas/registrars_order", | ||
"type": "object", | ||
"title": "Registrars 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 order.", | ||
"format": "date-time", | ||
"examples": ["1970-01-01T00:00:00+00:00"] | ||
}, | ||
"effectOfOrder": { | ||
"type": "string", | ||
"minLength": 5, | ||
"maxLength": 500, | ||
"description": "planOfArrangement" | ||
}, | ||
"orderDetails": { | ||
"type": "string", | ||
"minLength": 0, | ||
"maxLength": 2000, | ||
"description": "A brief note to explain the purpose of the Order." | ||
} | ||
}, | ||
"required": [ | ||
"fileNumber" | ||
] | ||
} |
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
Oops, something went wrong.