Apache OpenNLP · Schema

LemmatizationResult

LemmatizationResult schema from Apache OpenNLP

Machine LearningNatural Language ProcessingNLPText ProcessingApacheOpen SourceJava

Properties

Name Type Description
tokens array
lemmas array
View JSON Schema on GitHub

JSON Schema

apache-opennlp-lemmatization-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-lemmatization-result-schema.json",
  "title": "LemmatizationResult",
  "description": "LemmatizationResult schema from Apache OpenNLP",
  "type": "object",
  "properties": {
    "tokens": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "running",
        "faster"
      ]
    },
    "lemmas": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "run",
        "fast"
      ]
    }
  }
}