Amazon Rekognition · Schema

DetectFacesResponse

DetectFacesResponse schema from Amazon Rekognition

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

Properties

Name Type Description
FaceDetails array Details of each face found in the image.
OrientationCorrection string Orientation correction value.
View JSON Schema on GitHub

JSON Schema

amazon-rekognition-detect-faces-response-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-detect-faces-response-schema.json",
  "title": "DetectFacesResponse",
  "description": "DetectFacesResponse schema from Amazon Rekognition",
  "type": "object",
  "properties": {
    "FaceDetails": {
      "type": "array",
      "description": "Details of each face found in the image.",
      "items": {
        "$ref": "#/components/schemas/FaceDetail"
      }
    },
    "OrientationCorrection": {
      "type": "string",
      "description": "Orientation correction value."
    }
  }
}