{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Workflow", "type": "object", "properties": { "id": { "type": "integer", "description": "Unique identifier of the workflow." }, "node_id": { "type": "string" }, "name": { "type": "string", "description": "The name of the workflow." }, "path": { "type": "string", "description": "The path of the workflow file relative to the root of the repository." }, "state": { "type": "string" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" }, "url": { "type": "string" }, "html_url": { "type": "string" }, "badge_url": { "type": "string" } } }