{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowsVaultConnectioSetupOauthApp", "title": "FlowsVaultConnectioSetupOauthApp", "type": "object", "additionalProperties": false, "required": [ "type", "client_id", "client_secret", "domain" ], "properties": { "type": { "$ref": "#/components/schemas/FlowsVaultConnectioSetupTypeOauthAppEnum" }, "client_id": { "type": "string" }, "client_secret": { "type": "string" }, "domain": { "type": "string", "format": "hostname-rfc2181" }, "audience": { "type": "string", "minLength": 1, "format": "forms-url-https" } } }