Amazon Rekognition · Schema

Image

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

Celebrity RecognitionComputer VisionContent ModerationCustom LabelsDeep LearningFace LivenessFacial RecognitionImage AnalysisMachine LearningObject DetectionText DetectionVideo Analysis

Properties

Name Type Description
Bytes string Blob of image bytes up to 5 MBs.
S3Object object
View JSON Schema on GitHub

JSON Schema

amazon-rekognition-image-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-rekognition/refs/heads/main/json-schema/amazon-rekognition-image-schema.json",
  "title": "Image",
  "description": "Provides the input image either as bytes or an S3 object.",
  "type": "object",
  "properties": {
    "Bytes": {
      "type": "string",
      "format": "byte",
      "description": "Blob of image bytes up to 5 MBs."
    },
    "S3Object": {
      "$ref": "#/components/schemas/S3Object"
    }
  }
}