Stellar · Schema

Profile

BlockchainCryptocurrencyDecentralized ExchangeLedgerPaymentsSmart ContractsWeb3

Properties

Name Type Description
first_name string
last_name string
email string
roles array
organization_name string
View JSON Schema on GitHub

JSON Schema

stellar-sdp-profile.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developers.stellar.org/schemas/sdp/Profile.json",
  "title": "Profile",
  "type": "object",
  "properties": {
    "first_name": {
      "type": "string",
      "example": "Jane"
    },
    "last_name": {
      "type": "string",
      "example": "Doe"
    },
    "email": {
      "type": "string",
      "example": "[email protected]"
    },
    "roles": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "organization_name": {
      "type": "string"
    }
  },
  "example": {
    "first_name": "Jane",
    "last_name": "Doe",
    "email": "[email protected]",
    "roles": [
      "developer"
    ],
    "organization_name": "Stellar Aid"
  }
}