File size: 1,391 Bytes
e15864e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
39
40
41
42
43
44
45
{
  "type": "object",
  "required": ["trials"],
  "properties": {
    "trials": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["nct_id", "criteria"],
        "properties": {
          "nct_id": { "type": "string" },
          "criteria": {
            "type": "array",
            "items": {
              "type": "object",
              "required": ["key", "type", "description", "raw_criteria"],
              "properties": {
                "key":          { "type": "string" },
                "type":         { "enum": ["inclusion", "exclusion"] },
                "description":  { "type": "string" },
                "raw_criteria": { "type": "string" },
                "constraint": {
                  "oneOf": [
                    { "type": "null" },
                    {
                      "type": "object",
                      "required": ["key", "operator", "value"],
                      "properties": {
                        "key":      { "type": "string" },
                        "operator": { "enum": ["<=", ">=", "==", "!=", "in", "not_in", "between"] },
                        "value":    {},
                        "unit":     { "type": ["string", "null"] }
                      }
                    }
                  ]
                }
              }
            }
          }
        }
      }
    }
  }
}