{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/TokenCreate.json", "title": "TokenCreate", "properties": { "client_id": { "description": "ID of client to request token for. Leave off if client ID and secret are being supplied through Authorization header.\n", "type": "string" }, "client_secret": { "description": "Leave off if client ID and secret are being supplied through Authorization header.\n", "type": "string" }, "grant_type": { "enum": [ "client_credentials" ], "example": "client_credentials", "type": "string" } }, "required": [ "grant_type" ], "type": "object" }