summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/ml/list_experiments.json
blob: 4c3e834abc61ece6ebdf78a771d373030ded7fe9 (plain)
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
{
  "type": "object",
  "required": [
    "experiments"
  ],
  "properties": {
    "experiments": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "experiment_id",
          "name",
          "artifact_location",
          "lifecycle_stage"
        ],
        "properties": {
          "experiment_id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "artifact_location": {
            "type": "string"
          },
          "lifecycle_stage": {
            "type": {
              "enum": [
                "active",
                "deleted"
              ]
            }
          }
        }
      }
    }
  }
}