LemmatizationResult schema from Apache OpenNLP
{ "$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" ] } } }