This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add functionality to use archived vr_collection data (#4832)
* Add functionality to use archived vr_collection data * Apply corrections from review * Update keyname in root of object * update types with correct archivedVrCollectionId * Refactor ArchivedVrDataCollection to prevent typeerrors --------- Co-authored-by: VWSCoronaDashboard29 <[email protected]>
- Loading branch information
1 parent
2ed48f0
commit 5879a92
Showing
4 changed files
with
85 additions
and
13 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"title": "archived_vr_collection", | ||
"additionalProperties": false, | ||
"required": [ | ||
"last_generated", | ||
"proto_name", | ||
"name", | ||
"code" | ||
], | ||
"properties": { | ||
"last_generated": { | ||
"type": "string" | ||
}, | ||
"proto_name": { | ||
"$ref": "#/$defs/archived_vr_collection_id" | ||
}, | ||
"name": { | ||
"$ref": "#/$defs/archived_vr_collection_id" | ||
}, | ||
"code": { | ||
"$ref": "#/$defs/archived_vr_collection_id" | ||
} | ||
}, | ||
"$defs": { | ||
"archived_vr_collection_id": { | ||
"type": "string", | ||
"enum": ["VR_COLLECTION"] | ||
} | ||
} | ||
} |
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