File size: 484 Bytes
0a55f0f | 1 2 3 4 5 6 7 8 9 10 11 12 13 | CONTRIBUTION_JSON_SCHEMA = {
"type": "object",
"properties": {
"label": {"type": "string", "enum": ["USES", "EXTENDS", "NOT_CONFIRMED"]},
"paper_claim": {"type": "string"},
"cluster_title": {"type": "string"},
"cluster_key": {"type": "string"},
"evidence_span": {"type": "string"},
"rationale": {"type": "string"},
},
"required": ["label", "paper_claim", "cluster_title", "cluster_key", "evidence_span", "rationale"],
}
|