Constant RUN_SCHEMA_JSON
Source pub const RUN_SCHEMA_JSON: &str = "{\n \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n \"$id\": \"https://schemas.fleetforge.dev/run.json\",\n \"title\": \"FleetForge Run Record\",\n \"type\": \"object\",\n \"required\": [\"run_id\", \"status\", \"spec\", \"created_at\", \"updated_at\"],\n \"additionalProperties\": true,\n \"properties\": {\n \"run_id\": {\n \"type\": \"string\",\n \"format\": \"uuid\"\n },\n \"status\": {\n \"type\": \"string\",\n \"enum\": [\n \"pending\",\n \"running\",\n \"succeeded\",\n \"failed\",\n \"canceled\",\n \"paused_at_step\"\n ]\n },\n \"spec\": {\n \"type\": \"object\"\n },\n \"created_at\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n \"updated_at\": {\n \"type\": \"string\",\n \"format\": \"date-time\"\n },\n \"labels\": {\n \"type\": \"object\",\n \"additionalProperties\": {\n \"type\": \"string\"\n }\n },\n \"breakpoints\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n }\n }\n}\n";