Tag

A key and value pair that is attached to the specified Amazon Lookout for Vision model.

Computer VisionMachine LearningManufacturingQuality InspectionAnomaly Detection

Properties

Name Type Description
Key object
Value object
View JSON Schema on GitHub

JSON Schema

amazon-lookout-for-vision-tag-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-tag-schema.json",
  "title": "Tag",
  "description": "A key and value pair that is attached to the specified Amazon Lookout for Vision model.",
  "type": "object",
  "properties": {
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKey"
        },
        {
          "description": "The key of the tag that is attached to the specified model."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagValue"
        },
        {
          "description": "The value of the tag that is attached to the specified model."
        }
      ]
    }
  },
  "required": [
    "Key",
    "Value"
  ]
}