{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ExistingCredential", "description": "ExistingCredential schema from Public API (Otter Public API).", "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-existing-credential-schema.json", "type": "object", "properties": { "key": { "type": "string", "description": "The key of the credential.", "example": "userEmail" }, "value": { "type": "string", "description": "The value of the credential.", "example": "test-user@gmail.com" } }, "required": [ "key", "value" ] }