Apache OpenNLP · JSON Structure

Apache Opennlp Parse Result Structure

ParseResult schema from Apache OpenNLP

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

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

Properties

parseTree probability

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-parse-result-structure.json",
  "description": "ParseResult schema from Apache OpenNLP",
  "type": "object",
  "properties": {
    "parseTree": {
      "type": "string",
      "description": "Penn Treebank-style parse tree",
      "example": "(S (NP Pierre Vinken) (VP will join (NP the board)))"
    },
    "probability": {
      "type": "double",
      "description": "Parse probability",
      "example": 0.87
    }
  },
  "name": "ParseResult"
}