File size: 692 Bytes
0a55f0f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
USES_EXTENDS_VERIFICATION_JSON_SCHEMA = {
    "type": "object",
    "properties": {
        "labels": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {"type": "integer"},
                    "label": {
                        "type": "string",
                        "enum": ["USES", "EXTENDS", "NOT_CONFIRMED"],
                    },
                    "cue_span": {"type": "string"},
                    "rationale": {"type": "string"},
                },
                "required": ["id", "label", "cue_span", "rationale"],
            },
        },
    },
    "required": ["labels"],
}