{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Formation", "title": "Formation", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "type": { "type": "string", "description": "Process type name (web, worker, etc.)" }, "command": { "type": "string" }, "quantity": { "type": "integer" }, "size": { "type": "string" }, "app": { "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "name": { "type": "string" } } }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" } } }