Spaces:
Running
Running
File size: 747 Bytes
2dd24d3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://a-11-oy.com/schemas/evidenceos/claim-atomize-request.v1.schema.json",
"title": "EvidenceOS Claim Atomize Request v1",
"description": "Bounded request for structural-only claim atomization. The operation does not assert semantic atomicity or truth.",
"$comment": "The runtime refuses input that structurally splits into more than 32 review candidates; this output-bound invariant is not expressible from the input string in JSON Schema.",
"type": "object",
"additionalProperties": false,
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"maxLength": 32768,
"pattern": "^[\\s\\S]*\\S[\\s\\S]*$"
}
}
}
|