Euler Finance · Schema

EntityMemberCreateRequest

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
email string
name string
role string
View JSON Schema on GitHub

JSON Schema

entity-member-create-request.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EntityMemberCreateRequest",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "email"
  ],
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "pattern": "^[^@\\s]+@[^@\\s]+\\.[^@\\s]+$"
    },
    "name": {
      "type": "string",
      "pattern": "\\S",
      "nullable": true
    },
    "role": {
      "type": "string",
      "enum": [
        "admin",
        "editor"
      ],
      "default": "editor"
    }
  }
}