Amazon Rekognition · Schema

DetectModerationLabelsResponse

DetectModerationLabelsResponse schema from Amazon Rekognition

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

Properties

Name Type Description
ModerationLabels array
ModerationModelVersion string
HumanLoopActivationOutput object
ProjectVersion string
View JSON Schema on GitHub

JSON Schema

amazon-rekognition-detect-moderation-labels-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-moderation-labels-response-schema.json",
  "title": "DetectModerationLabelsResponse",
  "description": "DetectModerationLabelsResponse schema from Amazon Rekognition",
  "type": "object",
  "properties": {
    "ModerationLabels": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Confidence": {
            "type": "number",
            "format": "float"
          },
          "Name": {
            "type": "string",
            "example": "Explicit Nudity"
          },
          "ParentName": {
            "type": "string"
          }
        }
      }
    },
    "ModerationModelVersion": {
      "type": "string",
      "example": "7.0"
    },
    "HumanLoopActivationOutput": {
      "type": "object"
    },
    "ProjectVersion": {
      "type": "string"
    }
  }
}