ResultField
ResultField is the return type of a single field read off an image. It has the name of the field (we will communicate this when we set up the templates). It has the value of the field which was read of the image, and the confidence with which that value was able to be read. Confidence will be a number 0->1. It also includes locations from which the label information was read. This could be multiple locations as the field information could come from multiple locations on the label.
type ResultField {
name: String!
value: String!
confidence: Float
locations: [Coordinate!]
}
Fields
ResultField.name ● String! non-null scalar
ResultField.value ● String! non-null scalar
ResultField.confidence ● Float scalar
ResultField.locations ● [Coordinate!] list object
Member Of
ParseImageResult object