{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthimaging/refs/heads/main/json-schema/healthimaging-dicom-study-date-and-time-schema.json",
"title": "DICOMStudyDateAndTime",
"type": "object",
"required": [
"DICOMStudyDate"
],
"properties": {
"DICOMStudyDate": {
"allOf": [
{
"$ref": "#/components/schemas/DICOMStudyDate"
},
{
"description": "The DICOM study date provided in yyMMdd format."
}
]
},
"DICOMStudyTime": {
"allOf": [
{
"$ref": "#/components/schemas/DICOMStudyTime"
},
{
"description": "The DICOM study time provided in HHmmss.FFFFFF format."
}
]
}
},
"description": "The aggregated structure to store DICOM study date and study time for search capabilities."
}