Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1986,13 +1986,6 @@
"$ref": "#/definitions/DocumentLine"
}
},
"annotations": {
"description": "Extracted annotations from the page.",
"type": "array",
"items": {
"$ref": "#/definitions/DocumentAnnotation"
}
},
"barcodes": {
"description": "Extracted barcodes from the page.",
"type": "array",
Expand Down Expand Up @@ -2110,47 +2103,6 @@
}
}
},
"DocumentAnnotation": {
"description": "An annotation object that represents a visual annotation in the document, such as checks ✓ and crosses X.",
"type": "object",
"required": [
"kind",
"polygon",
"confidence"
],
"properties": {
"kind": {
"description": "Annotation kind.",
"type": "string",
"enum": [
"check",
"cross"
],
"x-ms-enum": {
"name": "DocumentAnnotationKind",
"modelAsString": true,
"values": [
{
"value": "check",
"description": "A visual check ✓."
},
{
"value": "cross",
"description": "A visual cross X."
}
]
}
},
"polygon": {
"description": "Bounding polygon of the annotation.",
"$ref": "#/definitions/BoundingPolygon"
},
"confidence": {
"description": "Confidence of correctly extracting the annotation.",
"$ref": "#/definitions/Confidence"
}
}
},
"DocumentBarcode": {
"description": "A barcode object.",
"type": "object",
Expand Down