{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateCredentialRequest", "title": "CreateCredentialRequest", "type": "object", "properties": { "accountId": { "type": "string", "description": "Unique account identifier" }, "keyCreationOption": { "type": "string", "enum": [ "ReplaceExisting", "FailIfExists" ], "default": "ReplaceExisting" } }, "required": [ "accountId" ] }