{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/deribit/json-schema/PrivateGetUserLocksResponse.json",
"title": "Privategetuserlocksresponse",
"properties": {
"jsonrpc": {
"type": "string",
"enum": [
"2.0"
],
"description": "The JSON-RPC version (2.0)"
},
"id": {
"type": "integer",
"description": "The id that was sent in the request"
},
"result": {
"items": {
"type": "object",
"properties": {
"currency": {
"$ref": "#/components/schemas/currency"
},
"enabled": {
"type": "boolean",
"description": "Value is set to 'true' when user account is locked in currency"
},
"message": {
"type": "string",
"description": "Optional information for user why his account is locked"
}
},
"required": [
"currency",
"enabled"
]
},
"type": "array"
}
},
"required": [
"jsonrpc",
"result"
],
"type": "object"
}