{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://pydantic.dev/schemas/DashboardDefinitionRead", "title": "DashboardDefinitionRead", "properties": { "kind": { "type": "string", "enum": [ "Dashboard" ], "title": "Kind" }, "metadata": { "$ref": "#/components/schemas/DashboardProjectMetadataRead" }, "spec": { "$ref": "#/components/schemas/DashboardSpec" } }, "type": "object", "required": [ "kind", "metadata", "spec" ] }