{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/hyperdrive_hyperdrive-origin-with-secrets", "title": "hyperdrive_hyperdrive-origin-with-secrets", "allOf": [ { "$ref": "#/components/schemas/hyperdrive_hyperdrive-origin" } ], "properties": { "access_client_secret": { "description": "The Client Secret of the Access token to use when connecting to the origin database", "example": "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef", "type": "string" }, "password": { "description": "The password required to access your origin database. This value is write-only and never returned by the API.", "example": "password1234!", "type": "string" } }, "required": [ "password" ], "type": "object" }