Sleds/scorewalker-utils/ValidationWalker/Association.json

41 lines
723 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"documentPageIndex": {
"type": "integer"
},
"libraryPageId": {
"type": "string"
},
"libraryDocumentType": {
"type": "string"
},
"ruleMatched": {
"type": "integer"
},
"rawScore": {
"type": "integer"
},
"score": {
"type": "integer"
},
"goodConf": {
"type": "boolean"
},
"matches": {
"type": "array",
"items": { "$ref": "AssociationMatch.json#" }
},
"breakPage": {
"type": "boolean"
}
},
"additionalProperties": true,
"required": [
"documentPageIndex",
"rawScore",
"score"
]
}