Safe (Gnosis Safe) · Schema

DelegateSerializerV2

Mixin to validate delegate operations data

MultisigSmart ContractEthereumWeb3BlockchainDeFiSAFeGnosisWallets

Properties

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

JSON Schema

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