summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/ml/get_experiment.json
blob: 482455a89e1bb1c29c246b10ea54a995377d963e (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
{
  "type": "object",
  "required": [
    "experiment"
  ],
  "properties": {
    "experiment": {
      "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"
            ]
          }
        }
      }
    }
  }
}