{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-vision/refs/heads/main/json-schema/amazon-lookout-for-vision-dataset-metadata-schema.json", "title": "DatasetMetadata", "description": "Summary information for an Amazon Lookout for Vision dataset. For more information, see DescribeDataset and ProjectDescription.", "type": "object", "properties": { "DatasetType": { "allOf": [ { "$ref": "#/components/schemas/DatasetType" }, { "description": "The type of the dataset." } ] }, "CreationTimestamp": { "allOf": [ { "$ref": "#/components/schemas/DateTime" }, { "description": "The Unix timestamp for the date and time that the dataset was created. " } ] }, "Status": { "allOf": [ { "$ref": "#/components/schemas/DatasetStatus" }, { "description": "The status for the dataset." } ] }, "StatusMessage": { "allOf": [ { "$ref": "#/components/schemas/DatasetStatusMessage" }, { "description": "The status message for the dataset." } ] } } }