changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "_disclaimer": {
+ "type": "string"
+ },
+ "agent_action": {
+ "enum": [
+ "PROCEED",
+ "VERIFY_MANUALLY",
+ "HOLD",
+ "REFER_TO_HUMAN",
+ "UPGRADE_REQUIRED"
+ ],
+ "type": "string"
+ },
+ "analysis_type": {
+ "type": "string"
+ },
+ "checked_at": {
+ "type": "string"
+ },
+ "confidence": {
+ "enum": [
+ "HIGH",
+ "MEDIUM",
+ "LOW",
+ "NONE"
+ ],
+ "type": "string"
+ },
+ "cross_document_conflicts": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "documents": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "agent_action": {
+ "$ref": "#/properties/agent_action"
+ },
+ "assessed_against": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "confidence": {
+ "$ref": "#/properties/confidence"
+ },
+ "document_type_identified": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "flags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "known_issuing_standard": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "label": {
+ "type": "string"
+ },
+ "reason": {
+ "type": "string"
+ },
+ "verdict": {
+ "$ref": "#/properties/verdict"
+ }
+ },
+ "required": [
+ "label",
+ "agent_action",
+ "verdict",
+ "confidence",
+ "document_type_identified",
+ "assessed_against",
+ "known_issuing_standard",
+ "flags",
+ "reason"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "package_agent_action": {
+ "$ref": "#/properties/agent_action"
+ },
+ "package_verdict": {
+ "$ref": "#/properties/verdict"
+ },
+ "verdict": {
+ "enum": [
+ "PASS",
+ "FLAG",
+ "FAIL",
+ "UNKNOWN_DOCUMENT_TYPE"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "agent_action",
+ "verdict",
+ "confidence",
+ "documents",
+ "cross_document_conflicts",
+ "package_verdict",
+ "package_agent_action",
+ "analysis_type",
+ "checked_at",
+ "_disclaimer"
+ ],
+ "type": "object"
+}