Page Build Status
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/page-build-status", "title": "Page Build Status", "description": "Page Build Status", "type": "object", "properties": { "url": { "type": "string", "format": "uri", "example": "https://api.github.com/repos/github/hello-world/pages/builds/latest" }, "status": { "type": "string", "example": "queued" } }, "required": [ "url", "status" ] }