{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ResourceOwnerPassword", "title": "ResourceOwnerPassword", "type": "object", "required": [ "grant_type", "client_id", "username", "password" ], "properties": { "grant_type": { "type": "string", "description": "Denotes the flow you are using. For Resource Owner Password, use password.", "enum": [ "password" ] }, "client_id": { "type": "string", "description": "Your application's Client ID." }, "client_secret": { "type": "string", "description": "Your application's Client Secret. Required when the Token Endpoint Authentication Method field at your Application Settings is Post or Basic." }, "audience": { "type": "string", "description": "The unique identifier of the target API you want to access." }, "username": { "type": "string", "description": "Resource Owner's identifier, such as a username or email address." }, "password": { "type": "string", "description": "Resource Owner's secret." }, "scope": { "type": "string", "description": "String value of the different scopes the application is asking for. Multiple scopes are separated with whitespace." }, "realm": { "type": "string", "description": "String value of the realm the user belongs. Set this if you want to add realm support at this grant. For more information on what realms are refer to Realm Support." } } }