2022-06-30 13:39:01 -07:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"$id": "http://github.com/ray-project/ray/dashboard/modules/snapshot/component_activities_schema.json",
|
|
|
|
"type": "object",
|
|
|
|
"patternProperties": {
|
|
|
|
"[0-9a-f]*": {
|
|
|
|
"type": "object",
|
2022-07-25 10:54:22 -07:00
|
|
|
"properties": {
|
2022-06-30 13:39:01 -07:00
|
|
|
"is_active": {
|
2022-07-08 10:51:59 -07:00
|
|
|
"type": "string",
|
|
|
|
"enum": ["ACTIVE", "INACTIVE", "ERROR"]
|
2022-06-30 13:39:01 -07:00
|
|
|
},
|
|
|
|
"reason": {
|
2022-07-25 10:54:22 -07:00
|
|
|
"type": ["string", "null"]
|
2022-06-30 13:39:01 -07:00
|
|
|
},
|
|
|
|
"timestamp": {
|
2022-07-25 10:54:22 -07:00
|
|
|
"type": ["number"]
|
2022-06-30 13:39:01 -07:00
|
|
|
}
|
|
|
|
},
|
2022-07-25 10:54:22 -07:00
|
|
|
"required": ["is_active"]
|
2022-06-30 13:39:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|