{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.safe.global/schemas/SafeInfoResponse", "title": "SafeInfoResponse", "type": "object", "properties": { "address": { "type": "string" }, "nonce": { "type": "string" }, "threshold": { "type": "integer" }, "owners": { "type": "array", "items": { "type": "string" } }, "masterCopy": { "type": "string" }, "modules": { "type": "array", "items": { "type": "string" } }, "fallbackHandler": { "type": "string" }, "guard": { "type": "string" }, "moduleGuard": { "type": "string" }, "version": { "type": [ "string", "null" ] } }, "required": [ "address", "fallbackHandler", "guard", "masterCopy", "moduleGuard", "modules", "nonce", "owners", "threshold", "version" ] }