-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca6792e
commit 3aa25e5
Showing
5 changed files
with
54 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-07/schema", | ||
"$id": "relation.json", | ||
"$id": "/v1/relation.json", | ||
"title": "Detector to FOV relation schema", | ||
"description": "Detector to FOV relation section of the YAML configuration file schema.\n Unit of length is mm. Unit of angle is degrees.", | ||
"type": "object", | ||
"properties": { | ||
"radial distance": { | ||
"$ref": "transformation_data.json" | ||
"radial shift": { | ||
"$ref": "/v1/transformation_data.json" | ||
}, | ||
"tangential shift": { | ||
"$ref": "transformation_data.json" | ||
}, | ||
"rotations": { | ||
"$ref": "transformation_data.json" | ||
"$ref": "/v1/transformation_data.json" | ||
}, | ||
"rotation": { | ||
"$ref": "/v1/transformation_data.json" | ||
} | ||
}, | ||
"required": [ | ||
"radial distance, rotations" | ||
"radial shift", | ||
"tangential shift", | ||
"rotation" | ||
] | ||
} |
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