Safe (Gnosis Safe) · Schema

PaginatedContractList

MultisigSmart ContractEthereumWeb3BlockchainDeFiSafeGnosisWallet

Properties

Name Type Description
count integer
next string
previous string
results array
View JSON Schema on GitHub

JSON Schema

PaginatedContractList.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.safe.global/schemas/PaginatedContractList",
  "title": "PaginatedContractList",
  "type": "object",
  "required": [
    "count",
    "results"
  ],
  "properties": {
    "count": {
      "type": "integer",
      "example": 123
    },
    "next": {
      "type": "string",
      "nullable": true,
      "format": "uri",
      "example": "http://api.example.org/accounts/?offset=400&limit=100"
    },
    "previous": {
      "type": "string",
      "nullable": true,
      "format": "uri",
      "example": "http://api.example.org/accounts/?offset=200&limit=100"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Contract"
      }
    }
  }
}