{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AuthorizationCode", "title": "AuthorizationCode", "type": "object", "required": [ "grant_type", "client_id", "client_secret", "code" ], "properties": { "grant_type": { "type": "string", "description": "Denotes the flow you are using. For Authorization Code, use authorization_code.", "enum": [ "authorization_code" ] }, "client_id": { "type": "string", "description": "Your application's Client ID." }, "client_secret": { "type": "string", "description": "Your application's Client Secret." }, "code": { "type": "string", "description": "The Authorization Code received from the initial /authorize call." }, "redirect_uri": { "type": "string", "description": "This is required only if it was set at the GET /authorize endpoint. The values must match.", "format": "uri" } } }