Properties
| Name | Type | Description |
|---|---|---|
| end_index | integer | End character index of the annotated text |
| start_index | integer | Start character index of the annotated text |
| title | string | Title of the cited source |
| type | string | Annotation type (url_citation) |
| url | string | URL of the cited source |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Annotation",
"title": "Annotation",
"description": "Text annotation (URL citation)",
"properties": {
"end_index": {
"description": "End character index of the annotated text",
"format": "int32",
"type": "integer"
},
"start_index": {
"description": "Start character index of the annotated text",
"format": "int32",
"type": "integer"
},
"title": {
"description": "Title of the cited source",
"type": "string"
},
"type": {
"description": "Annotation type (url_citation)",
"type": "string"
},
"url": {
"description": "URL of the cited source",
"type": "string"
}
},
"type": "object"
}