File size: 805 Bytes
f39c319 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PeerRegSummary",
"type": "object",
"required": [
"peer_summary",
"reg_summary",
"reference_clauses",
"risk_alerts"
],
"properties": {
"insufficient_context": {
"type": "boolean"
},
"peer_summary": {
"type": "string"
},
"reg_summary": {
"type": "string"
},
"reference_clauses": {
"type": "array",
"items": {
"type": "object",
"required": ["source", "topic", "clause"],
"properties": {
"source": { "type": "string" },
"topic": { "type": "string" },
"clause": { "type": "string" }
}
}
},
"risk_alerts": {
"type": "array",
"items": { "type": "string" }
}
}
} |