{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OrganizationOAuthApplication", "title": "OrganizationOAuthApplication", "type": "object", "description": "Serializer for organization-scoped OAuth applications (read-only).", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "name": { "type": "string", "maxLength": 255 }, "client_id": { "type": "string", "maxLength": 100 }, "redirect_uris_list": { "type": "array", "items": { "type": "string" }, "readOnly": true }, "is_verified": { "type": "boolean", "description": "True if this application has been verified by PostHog" }, "created": { "type": "string", "format": "date-time", "readOnly": true }, "updated": { "type": "string", "format": "date-time", "readOnly": true } }, "required": [ "created", "id", "redirect_uris_list", "updated" ] }