Outline · Schema

Invite

Knowledge BaseWikiDocumentsCollaborationOpen SourceTeam

Properties

Name Type Description
name string The full name of the user being invited
email string The email address to invite
role object
View JSON Schema on GitHub

JSON Schema

invite.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Invite",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The full name of the user being invited"
    },
    "email": {
      "type": "string",
      "description": "The email address to invite"
    },
    "role": {
      "$ref": "#/components/schemas/UserRole"
    }
  }
}