{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-comprehend/refs/heads/main/json-schema/openapi.yml-entity-label-schema.json", "title": "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." } ] } } }