{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ResetCredentialsResponse", "type": "object", "required": [ "privateKey", "publicKey" ], "properties": { "privateKey": { "type": "string", "description": "PEM-encoded private key in PKCS#8 format. This key is generated in-memory and never stored. Store it securely.", "example": "-----BEGIN PRIVATE KEY-----\nMIIEowIBAAKCAQEA...\n-----END PRIVATE KEY-----" }, "publicKey": { "type": "string", "description": "PEM-encoded RSA public key that has been set in the Snowflake workspace", "example": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A...\n-----END PUBLIC KEY-----" } } }