{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-feeds-webhook-cache-sync-schema.json", "title": "webhook-cache-sync", "description": "webhook-cache-sync from GitHub API", "type": "object", "properties": { "after": { "type": "string", "example": "example_value" }, "before": { "type": "string", "example": "example_value" }, "cache_location": { "type": "string", "example": "example_value" }, "enterprise": { "$ref": "#/components/schemas/enterprise-webhooks" }, "installation": { "$ref": "#/components/schemas/simple-installation" }, "organization": { "$ref": "#/components/schemas/organization-simple-webhooks" }, "ref": { "type": "string", "example": "main" }, "repository": { "$ref": "#/components/schemas/repository-webhooks" }, "sender": { "$ref": "#/components/schemas/simple-user-webhooks" } }, "required": [ "cache_location", "ref", "before", "after" ] }