{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/api_user_v1_UserConnectedApp", "title": "api_user_v1_UserConnectedApp", "type": "object", "properties": { "connected_app_id": { "type": "string", "description": "The ID of the Connected App." }, "name": { "type": "string", "description": "The name of the Connected App." }, "description": { "type": "string", "description": "A description of the Connected App." }, "client_type": { "type": "string", "description": "The type of Connected App. Supported values are `first_party`, `first_party_public`, `third_party`, and `third_party_public`." }, "scopes_granted": { "type": "string", "description": "The scopes granted to the Connected App at the completion of the last authorization flow." }, "logo_url": { "type": "string", "description": "The logo URL of the Connected App, if any." } }, "required": [ "connected_app_id", "name", "description", "client_type", "scopes_granted" ] }