Apache OpenNLP · Schema

NERResult

NERResult schema from Apache OpenNLP

Machine LearningNatural Language ProcessingNLPText ProcessingApacheOpen SourceJava

Properties

Name Type Description
entities array
View JSON Schema on GitHub

JSON Schema

apache-opennlp-ner-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-opennlp/refs/heads/main/json-schema/apache-opennlp-ner-result-schema.json",
  "title": "NERResult",
  "description": "NERResult schema from Apache OpenNLP",
  "type": "object",
  "properties": {
    "entities": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/NamedEntity"
      }
    }
  }
}