Euler Finance · Schema

PlatformAuthSession

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
platformAdminId string
googleEmail string
googleSubject string
active boolean
expiresAt string
View JSON Schema on GitHub

JSON Schema

platform-auth-session.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PlatformAuthSession",
  "type": "object",
  "required": [
    "platformAdminId",
    "googleEmail",
    "googleSubject",
    "active",
    "expiresAt"
  ],
  "properties": {
    "platformAdminId": {
      "type": "string",
      "format": "uuid"
    },
    "googleEmail": {
      "type": "string",
      "format": "email"
    },
    "googleSubject": {
      "type": "string"
    },
    "active": {
      "type": "boolean",
      "const": true
    },
    "expiresAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}