{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "State", "type": "object", "required": [ "count", "owner" ], "properties": { "count": { "type": "integer", "format": "int32" }, "owner": { "$ref": "#/definitions/CanonicalAddr" } }, "definitions": { "Binary": { "type": "string" }, "CanonicalAddr": { "$ref": "#/definitions/Binary" } } }