Amazon Comprehend · Schema

EntityRecognizerMetadataEntityTypesListItem

Individual item from the list of entity types in the metadata of an entity recognizer.

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

Name Type Description
Type object
EvaluationMetrics object
NumberOfTrainMentions object
View JSON Schema on GitHub

JSON Schema

openapi.yml-entity-recognizer-metadata-entity-types-list-item-schema.json Raw ↑
{
  "$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-recognizer-metadata-entity-types-list-item-schema.json",
  "title": "EntityRecognizerMetadataEntityTypesListItem",
  "description": "Individual item from the list of entity types in the metadata of an entity recognizer.",
  "type": "object",
  "properties": {
    "Type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AnyLengthString"
        },
        {
          "description": "Type of entity from the list of entity types in the metadata of an entity recognizer. "
        }
      ]
    },
    "EvaluationMetrics": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityTypesEvaluationMetrics"
        },
        {
          "description": "Detailed information about the accuracy of the entity recognizer for a specific item on the list of entity types. "
        }
      ]
    },
    "NumberOfTrainMentions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "Indicates the number of times the given entity type was seen in the training data. "
        }
      ]
    }
  }
}