Flowdock Flow

A flow in CA Flowdock — a team workspace containing a chat room and a shared inbox. Historical schema; Flowdock was discontinued 2023-08-15.

Team ChatTeam InboxCollaborationReal-Time MessagingIntegrationsDiscontinued

Properties

Name Type Description
id string
name string
parameterized_name string
organization object
unread_mentions integer
open boolean
joined boolean
url string
web_url string
join_url string
access_mode string
View JSON Schema on GitHub

JSON Schema

flowdock-flow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flowdock/main/json-schema/flowdock-flow-schema.json",
  "title": "Flowdock Flow",
  "description": "A flow in CA Flowdock — a team workspace containing a chat room and a shared inbox. Historical schema; Flowdock was discontinued 2023-08-15.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string" },
    "parameterized_name": { "type": "string" },
    "organization": {
      "type": "object",
      "properties": {
        "id": { "type": "integer" },
        "name": { "type": "string" },
        "parameterized_name": { "type": "string" }
      }
    },
    "unread_mentions": { "type": "integer", "minimum": 0 },
    "open": { "type": "boolean" },
    "joined": { "type": "boolean" },
    "url": { "type": "string", "format": "uri" },
    "web_url": { "type": "string", "format": "uri" },
    "join_url": { "type": "string", "format": "uri" },
    "access_mode": {
      "type": "string",
      "enum": ["invitation", "link", "organization"]
    }
  },
  "required": ["id", "name", "parameterized_name", "organization"]
}