Shows status of checks for blocks signs structure validity #### CLI Example `Command syntax:` ```actionscript esbocs check_signs_structure show -net <net_name> [-chain <chain_name>] ``` `Options:` ```actionscript -net - name of the Cellframe Network. The list of networks can be found in the <Config_dir> \ etc \ network folder or received by The Cellframe-Node-CLI using command - net list -chain - the name of Chain. The list of chains can be found in the directory <Config_dir> \ etc \ network \ <network_name> or by the Cellframe-Node-CLI using command - net list chains (optional) ``` Example: `Command:` ```actionscript cellframe-node-cli esbocs check_signs_structure show -net riemann -chain main ``` `Response:` ```actionscript      Checking signs structure is: disabled ``` #### JSON-RPC Example `Command:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{"method":"esbocs", "params":["esbocs;check_signs_structure;show;-net;riemann;-chain;main"], "id":"1"}' ``` `Response:` ```json {   "type": 2,   "result": [     {       "Checking signs structure is": "disabled"     }   ],   "errors": null,   "id": 1 } ```