OpenAPI · Schema

OpenAPI OAuth Flows Object

Allows configuration of the supported OAuth Flows.

DocumentationRESTSpecification

Properties

Name Type Description
implicit object
password object
clientCredentials object
authorizationCode object
View JSON Schema on GitHub

JSON Schema

openapi-oauth-flows.json Raw ↑
{
  "$id": "openapi-oauth-flows.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OpenAPI OAuth Flows Object",
  "description": "Allows configuration of the supported OAuth Flows.",
  "type": "object",
  "properties": {
    "implicit": {
      "$ref": "openapi-oauth-flow.json"
    },
    "password": {
      "$ref": "openapi-oauth-flow.json"
    },
    "clientCredentials": {
      "$ref": "openapi-oauth-flow.json"
    },
    "authorizationCode": {
      "$ref": "openapi-oauth-flow.json"
    }
  },
  "patternProperties": {
    "^x-": {}
  },
  "additionalProperties": false
}