Link

User

User is a person who has an account to access your front-end website, some of the data that can be mapped to a user are profile details, subscription details etc.

User is different from an Author

Format

{
  "name": "name of user",
  "external-id": "1",
  "bio": "user bio",
  "avatar-url": "users avatar url",
  "email": "user@website.com",
  "username": "username of user"
  "metadata": [
    {
      "other data key": "value"
    }
  ]
}

Schema

Key Type
name * String
external-id * String
bio String
avatar-url String
email * String
username * String
metadata Array of Objects

metadata

Key Type
other data key String
value Any

Notes

[1] All mandatory fields are marked with an *