2022-10-11 01:57:18 +05:30
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"experiment"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"experiment": {
|
|
|
|
"type": "object",
|
2022-11-25 23:54:43 +05:30
|
|
|
"required": [
|
2022-10-11 01:57:18 +05:30
|
|
|
"experiment_id",
|
|
|
|
"name",
|
|
|
|
"artifact_location",
|
|
|
|
"lifecycle_stage"
|
|
|
|
],
|
2022-11-25 23:54:43 +05:30
|
|
|
"properties": {
|
|
|
|
"experiment_id": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"artifact_location": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"lifecycle_stage": {
|
|
|
|
"type": {
|
|
|
|
"enum": [
|
|
|
|
"active",
|
|
|
|
"deleted"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2022-10-11 01:57:18 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-11-25 23:54:43 +05:30
|
|
|
}
|