{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "UnregisteredDelegateError", "allOf": [ { "type": "object", "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Type of an error, `contract.manager.unregistered_delegate` - an operation of delegation was sent to an account,\nnot registered as a delegate (baker)\nhttps://tezos.gitlab.io/api/errors.html - full list of errors" }, "delegate": { "type": "string", "description": "Public key hash of the account to which in the operation tried to delegate to" } } } ] }