{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "BigMapInterface", "type": "object", "additionalProperties": false, "properties": { "path": { "type": "string", "description": "Full path to the Big_map in the contract storage" }, "name": { "type": "string", "description": "Big_map name, if exists (field annotation)", "nullable": true }, "keySchema": { "description": "JSON Schema of the Big_map key in humanified format (as returned by API)", "nullable": true }, "valueSchema": { "description": "JSON Schema of the Big_map value in humanified format (as returned by API)", "nullable": true } } }