Euler Finance · Schema
Entity
DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Stable lowercase slug identifier. |
| name | string | |
| logo | string | |
| description | string | |
| url | string | |
| socialTwitter | string | |
| socialYoutube | string | |
| socialDiscord | string | |
| socialTelegram | string | |
| socialGithub | string | |
| createdAt | string | |
| updatedAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Entity",
"type": "object",
"required": [
"id",
"name",
"logo",
"description",
"url",
"socialTwitter",
"socialYoutube",
"socialDiscord",
"socialTelegram",
"socialGithub",
"createdAt",
"updatedAt"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
"description": "Stable lowercase slug identifier."
},
"name": {
"type": "string",
"pattern": "\\S"
},
"logo": {
"type": "string",
"format": "uri",
"pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
"nullable": true
},
"description": {
"type": "string",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
"nullable": true
},
"socialTwitter": {
"type": "string",
"format": "uri",
"pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
"nullable": true
},
"socialYoutube": {
"type": "string",
"format": "uri",
"pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
"nullable": true
},
"socialDiscord": {
"type": "string",
"format": "uri",
"pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
"nullable": true
},
"socialTelegram": {
"type": "string",
"format": "uri",
"pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
"nullable": true
},
"socialGithub": {
"type": "string",
"format": "uri",
"pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
"nullable": true
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"updatedAt": {
"type": "string",
"format": "date-time"
}
}
}