DatasetMetadata

Summary information for an Amazon Lookout for Vision dataset. For more information, see DescribeDataset and ProjectDescription.

Computer-VisionMachine-LearningManufacturingQuality InspectionAnomaly Detection

Properties

Name Type Description
DatasetType object
CreationTimestamp object
Status object
StatusMessage object
View JSON Schema on GitHub

JSON Schema

amazon-lookout-for-vision-dataset-metadata-schema.json Raw ↑
{
  "$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 <a>DescribeDataset</a> and <a>ProjectDescription</a>.",
  "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."
        }
      ]
    }
  }
}