{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ClientCredentials", "title": "ClientCredentials", "type": "object", "required": [ "grant_type", "client_id", "client_secret", "audience" ], "properties": { "grant_type": { "type": "string", "description": "Denotes the flow you are using. For Client Credentials, use client_credentials.", "enum": [ "client_credentials" ] }, "client_id": { "type": "string", "description": "Your application's Client ID." }, "client_secret": { "type": "string", "description": "Your application's Client Secret." }, "audience": { "type": "string", "description": "The unique identifier of the target API you want to access." } } }