Amazon Lookout for Vision · JSON Structure

Amazon Lookout For Vision Project Metadata Structure

Metadata about an Amazon Lookout for Vision project.

Type: object Properties: 3
Computer VisionMachine LearningManufacturingQuality InspectionAnomaly Detection

ProjectMetadata is a JSON Structure definition published by Amazon Lookout for Vision, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ProjectArn ProjectName CreationTimestamp

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-vision/refs/heads/main/json-structure/amazon-lookout-for-vision-project-metadata-structure.json",
  "name": "ProjectMetadata",
  "description": "Metadata about an Amazon Lookout for Vision project.",
  "type": "object",
  "properties": {
    "ProjectArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the project."
        }
      ]
    },
    "ProjectName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectName"
        },
        {
          "description": "The name of the project."
        }
      ]
    },
    "CreationTimestamp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateTime"
        },
        {
          "description": "The unix timestamp for the date and time that the project was created. "
        }
      ]
    }
  }
}