Amazon Comprehend · Schema
EntityRecognizerSummary
Describes the information about an entity recognizer and its versions.
Machine LearningNatural Language ProcessingNLPText Analysis
Properties
| Name | Type | Description |
|---|---|---|
| RecognizerName | object | |
| NumberOfVersions | object | |
| LatestVersionCreatedAt | object | |
| LatestVersionName | object | |
| LatestVersionStatus | object |
JSON Schema
{
"$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-summary-schema.json",
"title": "EntityRecognizerSummary",
"description": " Describes the information about an entity recognizer and its versions.",
"type": "object",
"properties": {
"RecognizerName": {
"allOf": [
{
"$ref": "#/components/schemas/ComprehendArnName"
},
{
"description": " The name that you assigned the entity recognizer."
}
]
},
"NumberOfVersions": {
"allOf": [
{
"$ref": "#/components/schemas/Integer"
},
{
"description": " The number of versions you created."
}
]
},
"LatestVersionCreatedAt": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": " The time that the latest entity recognizer version was submitted for processing."
}
]
},
"LatestVersionName": {
"allOf": [
{
"$ref": "#/components/schemas/VersionName"
},
{
"description": " The version name you assigned to the latest entity recognizer version."
}
]
},
"LatestVersionStatus": {
"allOf": [
{
"$ref": "#/components/schemas/ModelStatus"
},
{
"description": " Provides the status of the latest entity recognizer version."
}
]
}
}
}