chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:17:40 +08:00
commit f1825c8ceb
10096 changed files with 2364182 additions and 0 deletions
@@ -0,0 +1,26 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://github.com/ray-project/ray/dashboard/modules/job/component_activities_schema.json",
"type": "object",
"patternProperties": {
"[0-9a-f]*": {
"type": "object",
"properties": {
"is_active": {
"type": "string",
"enum": ["ACTIVE", "INACTIVE", "ERROR"]
},
"reason": {
"type": ["string", "null"]
},
"timestamp": {
"type": ["number"]
},
"last_activity_at": {
"type": ["number", "null"]
}
},
"required": ["is_active"]
}
}
}