DEV Community · Schema

UserInviteParam

User invite parameters

Developer CommunityArticlesBloggingSocialContentOpen Source

Properties

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

JSON Schema

userinviteparam.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UserInviteParam",
  "description": "User invite parameters",
  "type": "object",
  "properties": {
    "email": {
      "type": "string"
    },
    "name": {
      "type": "string",
      "nullable": true
    }
  }
}