{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Dyno", "title": "Dyno", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "name": { "type": "string" }, "app": { "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "name": { "type": "string" } } }, "attach_url": { "type": "string", "nullable": true }, "command": { "type": "string" }, "created_at": { "type": "string", "format": "date-time" }, "release": { "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "version": { "type": "integer" } } }, "size": { "type": "string" }, "state": { "type": "string", "enum": [ "crashed", "down", "idle", "starting", "up" ] }, "type": { "type": "string" }, "updated_at": { "type": "string", "format": "date-time" } } }