-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DR-70429] remove timezone enums from appeals schemas (#823)
* remove timezone enum for HLR create request body v1 * remove timezone enum for SC create request body v1 * remove timezone enum for NOD create request body v1 * bump version
- Loading branch information
1 parent
c2b24c2
commit 6b17e39
Showing
16 changed files
with
23 additions
and
8,300 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,4 +1,4 @@ | ||
// The 20-0996 schema is supplied to us from Lighthouse: https://api.va.gov/services/appeals/v2/decision_reviews/higher_level_reviews/schema | ||
import schema from './schema.json'; | ||
schema.$schema = 'http://json-schema.org/draft-07/schema#'; | ||
schema.$schema = 'http://json-schema.org/draft-07/schema#'; // draft-07 not supported by Ajv testing tool | ||
export default schema; |
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,5 +1,5 @@ | ||
// The schema is supplied to us from Lighthouse: https://dev-developer.va.gov/explore/appeals/docs/decision_reviews?version=current | ||
import schema from './schema.json'; | ||
|
||
schema.$schema = 'http://json-schema.org/draft-07/schema#'; | ||
schema.$schema = 'http://json-schema.org/draft-07/schema#'; // draft-07 not supported by Ajv testing tool | ||
export default schema; |
Oops, something went wrong.