-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MHR api registration related schema updates. (#32)
Signed-off-by: Doug Lovett <[email protected]>
- Loading branch information
1 parent
cec2438
commit bf6b202
Showing
14 changed files
with
413 additions
and
38 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
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,35 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://bcrs.gov.bc.ca/.well_known/schemas/mhr/manufacturerInfo", | ||
"type": "object", | ||
"title": "The MHR Manufacturer Information Schema", | ||
"definitions": {}, | ||
"properties": { | ||
"bcolAccountNumber": { | ||
"type": "string", | ||
"maxLength": 6, | ||
"description": "The legacy BC Online Account number for the manufacturer." | ||
}, | ||
"dealerName": { | ||
"type": "string", | ||
"maxLength": 60, | ||
"description": "The name of the manufacturer dealer." | ||
}, | ||
"submittingParty": { | ||
"$ref": "https://bcrs.gov.bc.ca/.well_known/schemas/common/party" | ||
}, | ||
"owner": { | ||
"$ref": "https://bcrs.gov.bc.ca/.well_known/schemas/common/party" | ||
}, | ||
"manufacturerName": { | ||
"type": "string", | ||
"maxLength": 65, | ||
"description": "The name of the manufacturer." | ||
} | ||
}, | ||
"required": [ | ||
"dealerName", | ||
"submittingParty", | ||
"manufacturerName" | ||
] | ||
} |
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
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.