{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VerifyDcrProviderResponse", "title": "VerifyDcrProviderResponse", "description": "A response containing the result of attempting to verify a DCR provider configuration.", "type": "object", "properties": { "status": { "type": "string", "enum": [ "success", "failed" ], "x-speakeasy-unknown-values": "allow" }, "errors": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "status", "errors" ] }