Apache OpenNLP · JSON Structure

Apache Opennlp Model Info Structure

ModelInfo schema from Apache OpenNLP

Type: object Properties: 5
Machine LearningNatural Language ProcessingNLPText ProcessingApacheOpen SourceJava

ModelInfo is a JSON Structure definition published by Apache OpenNLP, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

modelId language type version loaded

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-opennlp/refs/heads/main/json-structure/apache-opennlp-model-info-structure.json",
  "description": "ModelInfo schema from Apache OpenNLP",
  "type": "object",
  "properties": {
    "modelId": {
      "type": "string",
      "description": "Unique model identifier",
      "example": "en-ner-person.bin"
    },
    "language": {
      "type": "string",
      "description": "Model language",
      "example": "eng"
    },
    "type": {
      "type": "string",
      "description": "Model type",
      "example": "TokenNameFinder"
    },
    "version": {
      "type": "string",
      "description": "Model version",
      "example": 1.5
    },
    "loaded": {
      "type": "boolean",
      "description": "Whether model is currently loaded",
      "example": true
    }
  },
  "name": "ModelInfo"
}