{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SlackChannelsResponse", "title": "SlackChannelsResponse", "type": "object", "properties": { "channels": { "type": "array", "items": { "$ref": "#/components/schemas/SlackChannel" }, "description": "Slack channels visible to the PostHog Slack app." }, "lastRefreshedAt": { "type": "string", "nullable": true, "description": "ISO 8601 timestamp of the last full Slack API refresh (only set on full lists, not single-channel lookups)." } }, "required": [ "channels" ] }