{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Guide Board Trend Summary", "type": "object", "additionalProperties": false, "required": [ "id", "created_at", "runs_dir", "run_count", "groups" ], "properties": { "id": { "type": "string" }, "created_at": { "type": "string" }, "runs_dir": { "type": "string" }, "run_count": { "type": "integer" }, "groups": { "type": "array", "items": { "type": "object" } } } }