Flowdock Invitation

Team ChatTeam InboxCollaborationReal-Time MessagingIntegrationsDiscontinued

Properties

Name Type Description
id integer
state string
email string
flow string
url string
View JSON Schema on GitHub

JSON Schema

flowdock-invitation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flowdock/main/json-schema/flowdock-invitation-schema.json",
  "title": "Flowdock Invitation",
  "type": "object",
  "properties": {
    "id": { "type": "integer" },
    "state": { "type": "string", "enum": ["pending", "accepted"] },
    "email": { "type": "string", "format": "email" },
    "flow": { "type": "string" },
    "url": { "type": "string", "format": "uri" }
  },
  "required": ["id", "state", "email", "flow"]
}