Amazon Comprehend · JSON Structure

Openapi.Yml Entity Label Structure

Specifies one of the label or labels that categorize the personally identifiable information (PII) entity being analyzed.

Type: object Properties: 2
Machine LearningNatural Language ProcessingNLPText Analysis

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

Properties

Name Score

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-comprehend/refs/heads/main/json-structure/openapi.yml-entity-label-structure.json",
  "name": "EntityLabel",
  "description": "Specifies one of the label or labels that categorize the personally identifiable information (PII) entity being analyzed.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PiiEntityType"
        },
        {
          "description": "The name of the label."
        }
      ]
    },
    "Score": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Float"
        },
        {
          "description": "The level of confidence that Amazon Comprehend has in the accuracy of the detection."
        }
      ]
    }
  }
}