{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthimaging/refs/heads/main/json-schema/healthimaging-delete-datastore-response-schema.json", "title": "DeleteDatastoreResponse", "type": "object", "required": [ "datastoreId", "datastoreStatus" ], "properties": { "datastoreId": { "allOf": [ { "$ref": "#/components/schemas/DatastoreId" }, { "description": "The data store identifier." } ] }, "datastoreStatus": { "allOf": [ { "$ref": "#/components/schemas/DatastoreStatus" }, { "description": "The data store status." } ] } } }