Amazon Rekognition · JSON Structure

Amazon Rekognition Image Structure

Provides the input image either as bytes or an S3 object.

Type: object Properties: 2
Celebrity RecognitionComputer VisionContent ModerationCustom LabelsDeep LearningFace LivenessFacial RecognitionImage AnalysisMachine LearningObject DetectionText DetectionVideo Analysis

Image is a JSON Structure definition published by Amazon Rekognition, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Bytes S3Object

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-rekognition/refs/heads/main/json-structure/amazon-rekognition-image-structure.json",
  "name": "Image",
  "description": "Provides the input image either as bytes or an S3 object.",
  "type": "object",
  "properties": {
    "Bytes": {
      "type": "string",
      "description": "Blob of image bytes up to 5 MBs."
    },
    "S3Object": {
      "$ref": "#/components/schemas/S3Object"
    }
  }
}