File size: 1,164 Bytes
a557d54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b6fc16d
a557d54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b6fc16d
 
a557d54
 
 
 
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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
  "title": "GEMSchema",
  "description": "The default GEM schema",
  "type": "object",
  "properties": {
    "submission_name": {
      "title": "Submission Name",
      "type": "string"
    },
    "param_count": {
      "title": "Param Count",
      "type": "integer"
    },
    "description": {
      "title": "Description",
      "default": "An optional brief description of the system that will be shown on the results page",
      "type": "string"
    },
    "tasks": {
      "title": "Tasks",
      "type": "object",
      "additionalProperties": {
        "$ref": "#/definitions/Task"
      }
    }
  },
  "required": [
    "submission_name",
    "param_count",
    "tasks"
  ],
  "definitions": {
    "Task": {
      "title": "Task",
      "type": "object",
      "properties": {
        "values": {
          "title": "Values",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "keys": {
          "title": "Keys",
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "values",
        "keys"
      ]
    }
  }
}