Amazon Rekognition · JSON Structure

Amazon Rekognition Recognize Celebrities Response Structure

RecognizeCelebritiesResponse schema from Amazon Rekognition

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

RecognizeCelebritiesResponse 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

CelebrityFaces UnrecognizedFaces

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-recognize-celebrities-response-structure.json",
  "name": "RecognizeCelebritiesResponse",
  "description": "RecognizeCelebritiesResponse schema from Amazon Rekognition",
  "type": "object",
  "properties": {
    "CelebrityFaces": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Urls": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "Name": {
            "type": "string",
            "example": "Jeff Bezos"
          },
          "Id": {
            "type": "string"
          },
          "MatchConfidence": {
            "type": "float"
          },
          "KnownGender": {
            "type": "object"
          }
        }
      }
    },
    "UnrecognizedFaces": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  }
}