{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowsVaultConnectionHttpApiKeySetup", "title": "FlowsVaultConnectionHttpApiKeySetup", "type": "object", "additionalProperties": false, "required": [ "type", "name", "value", "in" ], "properties": { "type": { "$ref": "#/components/schemas/FlowsVaultConnectionSetupTypeApiKeyEnum" }, "name": { "type": "string", "minLength": 1, "maxLength": 55 }, "value": { "type": "string", "minLength": 1, "maxLength": 255 }, "in": { "$ref": "#/components/schemas/FlowsVaultConnectionHttpApiKeySetupInEnum" } } }