a11oy / schemas /evidenceos /claim-atomize-request.v1.schema.json
betterwithage's picture
deploy(hf): sync szl-holdings/a11oy@main derived COPY set
2dd24d3 verified
Raw
History Blame
747 Bytes
{
"$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]*$"
}
}
}