Relation
Represents a semantic relationship between entities, events, or concepts extracted from the text. See the Relations guide for more details.
Fields
| Property | Required | Type | Description |
|---|---|---|---|
| id | True | string | ID of the relation used to refer to it from other objects |
| name | True | string | Name of the relation (e.g., eat) |
| textRepr | True | string | Textual representation of the relation (e.g., eat(John, apple)) |
| type | True | string | Relation type (verb, attr, external) |
| args | True | List[Argument] | Relation arguments |
| feats | True | Map[string, string] | Relation features (e.g., negation, modality, ...) |
| support | False | List[Support] | Support of the relation in the text |