Safe (Gnosis Safe) · Schema

SafeDelegateResponse

MultisigSmart ContractEthereumWeb3BlockchainDeFiSafeGnosisWallet

Properties

Name Type Description
safe string
delegate string
delegator string
label string
expiryDate string
View JSON Schema on GitHub

JSON Schema

SafeDelegateResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.safe.global/schemas/SafeDelegateResponse",
  "title": "SafeDelegateResponse",
  "type": "object",
  "properties": {
    "safe": {
      "type": "string"
    },
    "delegate": {
      "type": "string"
    },
    "delegator": {
      "type": "string"
    },
    "label": {
      "type": "string",
      "maxLength": 50
    },
    "expiryDate": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "delegate",
    "delegator",
    "expiryDate",
    "label",
    "safe"
  ]
}