Skip to content

Files

Latest commit

 

History

History
27 lines (19 loc) · 742 Bytes

api-ner-response.md

File metadata and controls

27 lines (19 loc) · 742 Bytes

Api Ner Response

Structure

ApiNerResponse

Fields

Name Type Tags Description
entity_group string Required Entity group inferred.
Constraints: Minimum Length: 1
word string Required Corresponding word
Constraints: Minimum Length: 1
start string Required Start position of the entity in the given input.
Constraints: Minimum Length: 1
end string Required Start position of the entity in the given input.
Constraints: Minimum Length: 1

Example (as JSON)

{
  "entity_group": "entity_group6",
  "word": "word2",
  "start": "start4",
  "end": "end8"
}