Euler Finance · Schema

PlatformAdminAccess

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
id string
googleEmail string
createdAt string
revokedAt string
View JSON Schema on GitHub

JSON Schema

platform-admin-access.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PlatformAdminAccess",
  "type": "object",
  "required": [
    "id",
    "googleEmail",
    "createdAt",
    "revokedAt"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "googleEmail": {
      "type": "string",
      "format": "email"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "revokedAt": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  }
}