Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_experiment.json « ml « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf8da7f999f4df8ac4f0f214905d5ae3c3a64077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "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"] } }
      }
    }
  }
}