schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
yarnrc.json
npmPublishAccess
Valid values are `public` and `restricted`, but `restricted` usually requires to register for a paid plan (this is up to the registry you use). Can be overridden on a per-package basis using the `publishConfig.access` field.
{"_package": "@yarnpkg/plugin-npm-cli", "type": "string", "enum": ["public", "restricted"]}
yarnrc.json
npmPublishRegistry
If not explicitly set, the value of `npmRegistryServer` will be used. Overridden by `publishConfig.registry`.
{"_package": "@yarnpkg/plugin-npm", "type": "string", "format": "uri", "examples": ["https://npm.pkg.github.com"]}
yarnrc.json
npmRegistryServer
Should you want to define different registries for different scopes, see `npmScopes`. To define the authentication scheme for your servers, see `npmAuthToken`. The url must use HTTPS by default, but this can be changed by adding it to the `unsafeHttpWhitelist`.
{"_package": "@yarnpkg/plugin-npm", "type": "string", "format": "uri", "default": "https://registry.yarnpkg.com"}
yarnrc.json
packageExtensions
Some packages may have been specified incorrectly with regard to their dependencies - for example with one dependency being missing, causing Yarn to refuse it the access. The `packageExtensions` fields offer a way to extend the existing package definitions with additional information. If you use it, consider sending a PR upstream and contributing your extension to the [`plugin-compat` database](https://github.com/yarnpkg/berry/blob/master/packages/yarnpkg-extensions/sources/index.ts). Note: This field is made to add dependencies; if you need to rewrite existing ones, prefer the `resolutions` field instead.
{"_package": "@yarnpkg/core", "type": "object", "patternProperties": {"^(?:@([^/]+?)/)?([^/]+?)(?:@(.+))$": {"type": "object", "properties": {"dependencies": {"type": "object", "patternProperties": {"^(?:@([^/]+?)/)?([^/]+?)$": {"type": "string", "pattern": "^(.+)$", "examples": ["^4.15.0"]}}, "additionalProperties": false, "_exampleKeys": ["lodash"]}, "peerDependencies": {"type": "object", "patternProperties": {"^(?:@([^/]+?)/)?([^/]+?)$": {"type": "string", "pattern": "^(.+)$", "examples": ["*"]}}, "additionalProperties": false, "_exampleKeys": ["webpack-cli"]}, "peerDependenciesMeta": {"type": "object", "patternProperties": {"^(?:@([^/]+?)/)?([^/]+?)$": {"type": "object", "properties": {"optional": {"type": "boolean", "examples": [true]}}}}, "additionalProperties": false, "_exampleKeys": ["webpack-cli"]}}, "_margin": false}}, "additionalProperties": false, "_exampleKeys": ["webpack@*"]}
yarnrc.json
^(?:@([^/]+?)/)?([^/]+?)(?:@(.+))$
Each key is a descriptor covering a semver range. The extensions will be applied to any package whose version matches the specified range. This is true regardless of where the package comes from, so no distinction on whether they come from git or a registry, for example. Only the version matters.
{"type": "object", "properties": {"dependencies": {"type": "object", "patternProperties": {"^(?:@([^/]+?)/)?([^/]+?)$": {"type": "string", "pattern": "^(.+)$", "examples": ["^4.15.0"]}}, "additionalProperties": false, "_exampleKeys": ["lodash"]}, "peerDependencies": {"type": "object", "patternProperties": {"^(?:@([^/]+?)/)?([^/]+?)$": {"type": "string", "pattern": "^(.+)$", "examples": ["*"]}}, "additionalProperties": false, "_exampleKeys": ["webpack-cli"]}, "peerDependenciesMeta": {"type": "object", "patternProperties": {"^(?:@([^/]+?)/)?([^/]+?)$": {"type": "object", "properties": {"optional": {"type": "boolean", "examples": [true]}}}}, "additionalProperties": false, "_exampleKeys": ["webpack-cli"]}}, "_margin": false}
yarnrc.json
pnpEnableEsmLoader
If true, Yarn will generate an experimental ESM loader (`.pnp.loader.mjs`) on top of the CJS one.
{"_package": "@yarnpkg/plugin-pnp", "type": "boolean", "default": false}
yarnrc.json
pnpEnableInlining
If false, Yarn will generate an additional `.pnp.data.json` file.
{"_package": "@yarnpkg/plugin-pnp", "type": "boolean", "default": true}
yarnrc.json
pnpFallbackMode
Possible values are: - If `all`, all packages can access dependencies made available in the fallback. - If `dependencies-only` (the default), dependencies will have access to them but not your workspaces. - If `none`, no packages will have access to them.
{"_package": "@yarnpkg/plugin-pnp", "type": "string", "enum": ["none", "dependencies-only", "all"], "default": "dependencies-only"}
yarnrc.json
pnpIgnorePatterns
Files matching those locations will not be covered by PnP and will use the regular Node.js resolution algorithm. Typically only needed if you have subprojects that aren't yet part of your workspace tree.
{"_package": "@yarnpkg/plugin-pnp", "type": "array", "items": {"type": "string"}, "default": [], "_exampleItems": ["./subdir/*"]}
yarnrc.json
pnpMode
Possible values are: - If `strict` (the default), modules won't be allowed to require packages they don't explicitly list in their own dependencies. - If `loose`, packages will be allowed to access any other package that would have been hoisted to the top-level under 1.x installs. Note that, even in loose mode, hoisted require calls are unsafe and should be discouraged.
{"_package": "@yarnpkg/plugin-pnp", "enum": ["strict", "loose"], "type": "string", "default": "strict"}
yarnrc.json
pnpUnpluggedFolder
While Yarn attempts to reference and load packages directly from their zip archives, it may not always be possible. In those cases, Yarn will extract the files to the unplugged folder.
{"_package": "@yarnpkg/plugin-pnp", "type": "string", "format": "uri-reference", "default": "./.yarn/unplugged"}
yarnrc.json
preferDeferredVersions
If true, deferred versioning by default when running the `yarn version` family of commands.
{"_package": "@yarnpkg/plugin-version", "type": "boolean", "default": false}
yarnrc.json
preferInteractive
If true, Yarn will ask for your guidance when some actions would be improved by being disambiguated. Enabling this setting also unlocks some features (for example the `yarn add` command will suggest to reuse the same dependencies as other workspaces if pertinent).
{"_package": "@yarnpkg/core", "type": "boolean", "default": false}
yarnrc.json
preferReuse
If true, `yarn add` will attempt to reuse the most common dependency range in other workspaces.
{"_package": "@yarnpkg/plugin-essentials", "type": "boolean", "default": false}
yarnrc.json
preferTruncatedLines
If true, Yarn will truncate lines that would go beyond the size of the terminal. If progress bars are disabled, lines will never be truncated.
{"_package": "@yarnpkg/core", "type": "boolean", "default": false}
yarnrc.json
cpu
See https://nodejs.org/docs/latest/api/process.html#processarch for the architectures supported by Node.js
{"type": "array", "items": {"type": "string"}, "default": [], "_exampleItems": ["current", "x64", "ia32"]}
yarnrc.json
telemetryInterval
By default we only send one request per week, making it impossible for us to track your usage with a lower granularity.
{"_package": "@yarnpkg/core", "type": "number", "default": 7}
yarnrc.json
telemetryUserId
The default settings never assign unique IDs to anyone, so we have no way to know which data originates from which project. This setting can be used to force a user ID to be sent to our telemetry server. Frankly, it's only useful in some very specific use cases. For example, we use it on the Yarn repository in order to exclude our own usage from the public dashboards (since we run Yarn far more often here than anywhere else, the resulting data would be biased).
{"_package": "@yarnpkg/core", "type": "string", "examples": ["yarnpkg/berry"]}
yarnrc.json
tsEnableAutoTypes
If true, Yarn will automatically add `@types` dependencies when running `yarn add` with packages that don't provide their own typings (as reported by the Algolia npm database). This behavior is enabled by default if you have a tsconfig file at the root of your project.
{"_package": "@yarnpkg/plugin-typescript", "type": "boolean", "examples": [true]}
yarnrc.json
virtualFolder
Due to a particularity in how Yarn installs packages which list peer dependencies, some packages will be mapped to multiple virtual directories that don't actually exist on the filesystem. This settings tells Yarn where to put them. Note that the folder name *must* be `__virtual__`.
{"_package": "@yarnpkg/core", "type": "string", "format": "uri-reference", "pattern": "^.*__virtual__$", "default": "./.yarn/__virtual__"}
yarnrc.json
yarnPath
This binary will be executed instead of any other (including the global one) for any command run within the directory covered by the rc file. If the file extension ends with `.js` it will be required, and will be spawned in any other case. The `yarnPath` setting used to be the preferred way to install Yarn within a project, but we now recommend to use [Corepack](https://nodejs.org/api/corepack.html) in most cases.
{"_package": "@yarnpkg/core", "type": "string", "format": "uri-reference", "examples": ["./scripts/yarn-2.0.0-rc001.js"]}
pubspec.json
Dart Pubspec file
{"$schema": "http://json-schema.org/draft-07/schema#", "definitions": {"version": {"type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?$"}, "versionConstraint": {"oneOf": [{"type": "string", "enum": ["any", ""]}, {}, {"type": "string", "examples": [">1.0.0 <2.3.0-beta", ">=1.0.0-pre.1 <=3.0.0"], "pattern": "^(?:(?:>=|>|<=|<)\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?\\s*)+$"}, {"type": "string", "examples": ["^1.0.0"], "pattern": "^\\^\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?$"}]}, "dependency": {"oneOf": [{}, {"type": "null"}, {"type": "object", "properties": {"sdk": {"type": "string"}, "version": {}}, "required": ["sdk"], "additionalProperties": false}, {"type": "object", "properties": {"hosted": {"oneOf": [{"type": "string", "format": "uri"}, {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string", "format": "uri"}}, "required": ["url"]}]}, "version": {}}, "required": ["hosted"], "additionalProperties": false}, {"type": "object", "properties": {"git": {"oneOf": [{"type": "string"}, {"type": "object", "properties": {"url": {"type": "string"}, "path": {"type": "string"}, "ref": {"type": "string"}}}]}}, "required": ["git"], "additionalProperties": false}, {"type": "object", "properties": {"path": {"type": "string"}}, "additionalProperties": false}]}, "dependencies": {"type": "object", "additionalProperties": {}}}, "properties": {"name": {"type": "string"}, "version": {}, "authors": {"type": "array", "deprecated": true, "items": {"type": "string"}}, "homepage": {"type": "string", "format": "uri"}, "repository": {"type": "string", "format": "uri"}, "issue_tracker": {"type": "string", "format": "uri"}, "documentation": {"type": "string", "format": "uri"}, "executables": {"type": "object"}, "publish_to": {"type": "string"}, "environment": {"type": "object", "examples": [{"sdk": ">=1.19.0 <3.0.0", "flutter": "^0.1.2"}], "additionalProperties": {}}, "dependencies": {}, "dev_dependencies": {}, "dependency_overrides": {}}, "required": ["name"], "type": "object"}
pubspec.json
versionConstraint
Version range of the package or SDK to use
{"oneOf": [{"type": "string", "enum": ["any", ""]}, {}, {"type": "string", "examples": [">1.0.0 <2.3.0-beta", ">=1.0.0-pre.1 <=3.0.0"], "pattern": "^(?:(?:>=|>|<=|<)\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?\\s*)+$"}, {"type": "string", "examples": ["^1.0.0"], "pattern": "^\\^\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?$"}]}
pubspec.json
versionConstraint
Allows any version of the package. This is not recommended for performance reasons
{"type": "string", "enum": ["any", ""]}
pubspec.json
dependency
Default dependency, matches any version of the package
{"type": "null"}
pubspec.json
sdk
The SDK which contains this package
{"type": "string"}
pubspec.json
hosted
URL of the package server hosting this package
{"type": "string", "format": "uri"}
pubspec.json
url
The package server hosting this package
{"type": "string", "format": "uri"}
pubspec.json
dependency
Git dependency
{"type": "object", "properties": {"git": {"oneOf": [{"type": "string"}, {"type": "object", "properties": {"url": {"type": "string"}, "path": {"type": "string"}, "ref": {"type": "string"}}}]}}, "required": ["git"], "additionalProperties": false}
pubspec.json
git
URI of the repository hosting this package
{"type": "string"}
pubspec.json
url
URI of the repository hosting this package
{"type": "string"}
pubspec.json
path
Path of this package relative to the Git repo's root
{"type": "string"}
pubspec.json
ref
The branch, tag, or anything else Git allows to identify a commit.
{"type": "string"}
pubspec.json
dependency
Path dependency
{"type": "object", "properties": {"path": {"type": "string"}}, "additionalProperties": false}
pubspec.json
name
The name of this package. The name is how other packages refer to yours, should you publish it.
{"type": "string"}
samtrc.json
extends
The name of the configuration file to extend from, used to determine the default rules to apply
{"anyOf": [{"type": "string"}, {"enum": ["recommended", "strict"]}]}
samtrc.json
rules
Configuration for linter rules for the current project
{"type": "array", "items": {"oneOf": [{"type": "object", "required": ["type"], "properties": {"type": {"const": "split-model-and-providers"}, "level": {}}, "additionalProperties": false}, {"type": "object", "required": ["type"], "properties": {"type": {"const": "naming-conventions"}, "level": {}, "record": {}, "recordField": {}, "enum": {}, "enumValue": {}, "typeAlias": {}, "service": {}, "serviceOperation": {}, "serviceOperationParameter": {}, "provider": {}, "package": {}, "fileName": {}}, "additionalProperties": false}]}}
samtrc.json
items
Configure whether model types (e.g. record and service) must be in a separate file from their providers and consumers
{"type": "object", "required": ["type"], "properties": {"type": {"const": "split-model-and-providers"}, "level": {}}, "additionalProperties": false}
samtrc.json
items
Configure naming rules which apply to all types in the project
{"type": "object", "required": ["type"], "properties": {"type": {"const": "naming-conventions"}, "level": {}, "record": {}, "recordField": {}, "enum": {}, "enumValue": {}, "typeAlias": {}, "service": {}, "serviceOperation": {}, "serviceOperationParameter": {}, "provider": {}, "package": {}, "fileName": {}}, "additionalProperties": false}
swadl-schema-1.0.json
SWADL (Symphony Workflow Automation Definition Language) is a language to describe workflows on Symphony.
{"$schema": "http://json-schema.org/draft-04/schema#", "default": {}, "type": "object", "additionalProperties": false, "required": ["id", "activities"], "properties": {"id": {"type": "string", "pattern": "^[a-zA-Z]+[a-zA-Z0-9][^ ]*$", "default": "my-workflow", "maxLength": 100}, "properties": {"type": "object", "properties": {"publish": {"type": ["boolean", "string"], "default": true}}}, "variables": {"type": "object"}, "activities": {"type": "array", "minLength": 1, "items": {"type": "object", "additionalProperties": false, "properties": {"create-room": {"x-intellij-html-description": "<html><p>Creates a new chatroom.\n</p><a href=\"https://developers.symphony.com/restapi/reference#create-room-v3\">https://developers.symphony.com/restapi/reference#create-room-v3</a></html>", "allOf": [{}, {}]}, "update-room": {"x-intellij-html-description": "<html><p>Updates the attributes of an existing chat room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a></html>", "allOf": [{}, {}]}, "add-room-member": {"x-intellij-html-description": "<html><p>Adds a new members to an existing room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#add-member\">https://developers.symphony.com/restapi/reference#add-member</a></html>", "allOf": [{}, {}]}, "remove-room-member": {"x-intellij-html-description": "<html><p>Removes members from an existing room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#remove-member\">https://developers.symphony.com/restapi/reference#remove-member</a></html>", "allOf": [{}, {}]}, "promote-room-owner": {"x-intellij-html-description": "<html><p>Promotes user to owner of the chat room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#promote-owner\">https://developers.symphony.com/restapi/reference#promote-owner</a></html>", "allOf": [{}, {}]}, "demote-room-owner": {"x-intellij-html-description": "<html><p>Demotes room owner to a participant in the chat room.</p><a href=\"https://developers.symphony.com/restapi/reference#demote-owner\">https://developers.symphony.com/restapi/reference#demote-owner</a></html>", "allOf": [{}, {}]}, "send-message": {"x-intellij-html-description": "<html><p>Posts a message to a stream.</p><a href=\"https://developers.symphony.com/restapi/reference#create-message-v4\">https://developers.symphony.com/restapi/reference#create-message-v4</a></html>", "allOf": [{}, {}]}, "update-message": {"x-intellij-html-description": "<html><p>Updates an existing message into a stream.</p><a href=\"https://developers.symphony.com/restapi/reference#update-message-v4\">https://developers.symphony.com/restapi/reference#update-message-v4</a></html>", "allOf": [{}, {}]}, "pin-message": {"x-intellij-html-description": "<html><p>Pin an existing message into the stream it belongs to.<a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a><a href=\"https://developers.symphony.com/restapi/v20.13/reference#update-im\">(https://developers.symphony.com/restapi/v20.13/reference#update-im</a></html>", "allOf": [{}, {}]}, "unpin-message": {"x-intellij-html-description": "<html><p>Unpin any message (if present) from an existing stream.</p><a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a><a href=\"https://developers.symphony.com/restapi/v20.13/reference#update-im\">(https://developers.symphony.com/restapi/v20.13/reference#update-im</a></html>", "allOf": [{}, {}]}, "get-attachment": {"x-intellij-html-description": "<html><p>Gets one attachment and stores it locally.</p><a href=\"https://developers.symphony.com/restapi/reference#attachment\">https://developers.symphony.com/restapi/reference#attachment</a></html>", "allOf": [{}, {}]}, "debug": {"x-intellij-html-description": "<html><p>Standard debug activity.</p></html>", "type": "object", "properties": {"id": {"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}, "on": {}, "if": {"type": "string"}, "else": {"type": "object"}, "object": {"type": ["object", "string"]}}, "required": ["object"]}, "execute-script": {"x-intellij-html-description": "<html><p>Executes a Groovy script.</p></html>", "allOf": [{}, {}]}, "execute-request": {"allOf": [{}, {}]}, "create-user": {"x-intellij-html-description": "<html><p>Creates a new end user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-user-v2\">https://developers.symphony.com/restapi/reference#create-user-v2</a></html>", "allOf": [{}, {"required": ["email", "username", "firstname", "lastname", "display-name"]}]}, "update-user": {"x-intellij-html-description": "<html><p>Updates an existing end user.</p><a href=\"https://developers.symphony.com/restapi/reference#update-user-v2\">https://developers.symphony.com/restapi/reference#update-user-v2</a></html>", "allOf": [{}, {}, {"type": "object", "properties": {"user-id": {}}, "required": ["user-id"]}]}, "create-system-user": {"x-intellij-html-description": "<html><p>Creates a new service user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-user-v2\">https://developers.symphony.com/restapi/reference#create-user-v2</a></html>", "allOf": [{}, {"required": ["email", "username", "display-name"]}]}, "update-system-user": {"x-intellij-html-description": "<html><p>Updates an existing service user.</p><a href=\"https://developers.symphony.com/restapi/reference#update-user-v2\">https://developers.symphony.com/restapi/reference#update-user-v2</a></html>", "allOf": [{}, {}, {"type": "object", "properties": {"user-id": {}}, "required": ["user-id"]}]}, "add-user-role": {"x-intellij-html-description": "<html><p>Adds a role or optional entitleable action to a user\u2019s account.</p><a href=\"https://developers.symphony.com/restapi/reference#add-role\">https://developers.symphony.com/restapi/reference#add-role</a></html>", "allOf": [{}, {}]}, "remove-user-role": {"x-intellij-html-description": "<html><p>Removes a role or optional entitleable action from a user\u2019s account.</p><a href=\"https://developers.symphony.com/restapi/reference#remove-role\">https://developers.symphony.com/restapi/reference#remove-role</a></html>", "allOf": [{}, {}]}, "get-user": {"x-intellij-html-description": "<html><p>Returns details for a particular user.</p><a href=\"https://developers.symphony.com/restapi/reference#get-user-v2\">https://developers.symphony.com/restapi/reference#get-user-v2</a></html>", "type": "object", "allOf": [{}, {}]}, "get-users": {"x-intellij-html-description": "<html><p>Returns a list of users ID, including user metadata.</p><a href=\"https://developers.symphony.com/restapi/reference#users-lookup-v3\">https://developers.symphony.com/restapi/reference#users-lookup-v3</a></html>", "type": "object", "allOf": [{}, {}]}, "get-stream": {"type": "object", "x-intellij-html-description": "<htmL><p>Returns information about a particular stream.</p><a href=\"https://developers.symphony.com/restapi/reference#stream-info-v2\">https://developers.symphony.com/restapi/reference#stream-info-v2</a></html", "allOf": [{}, {}]}, "get-room": {"type": "object", "x-intellij-html-description": "<html><p>Returns information about a particular chat room.</p><a href=\"https://developers.symphony.com/restapi/reference#room-info-v3\">https://developers.symphony.com/restapi/reference#room-info-v3</a></html>", "allOf": [{}, {}]}, "get-message": {"type": "object", "x-intellij-html-description": "<html><p>Returns a message found by id.</p><a href=\"https://developers.symphony.com/restapi/reference#get-message-v1\">https://developers.symphony.com/restapi/reference#get-message-v1</html>", "allOf": [{}, {}]}, "get-stream-members": {"type": "object", "x-intellij-html-description": "<html><p>Returns a list of all the current members of a stream (IM, MIM, or chatroom).</p><a href=\"https://developers.symphony.com/restapi/reference#stream-members\">https://developers.symphony.com/restapi/reference#stream-members</a></html>", "allOf": [{}, {}]}, "get-room-members": {"type": "object", "x-intellij-html-description": "<html><p>Lists the current members of an existing room.</p><a href=\"https://developers.symphony.com/restapi/reference#room-members\">https://developers.symphony.com/restapi/reference#room-members</a></html>", "allOf": [{}, {}]}, "get-user-streams": {"type": "object", "x-intellij-html-description": "<html><p>Returns a list of all the streams of which the requesting user is a member, sorted by creation date (ascending - oldest to newest).</p><a href=\"https://developers.symphony.com/restapi/reference#list-user-streams\">https://developers.symphony.com/restapi/reference#list-user-streams</a></html>", "allOf": [{}, {}]}, "get-streams": {"type": "object", "x-intellij-html-description": "<html><p>Returns a list of all the streams (IMs, MIMs, and chatrooms) for the calling user's company, sorted by creation date (ascending \u2013 oldest to newest).</p><a href\"https://developers.symphony.com/restapi/reference#list-streams-for-enterprise-v2\">https://developers.symphony.com/restapi/reference#list-streams-for-enterprise-v2</a></html>", "allOf": [{}, {}]}, "get-connection": {"type": "object", "x-intellij-html-description": "<html><p>Get one connection status.</p><a href=\"https://developers.symphony.com/restapi/reference#get-connection\">https://developers.symphony.com/restapi/reference#get-connection</a></html>", "allOf": [{}, {}]}, "create-connection": {"type": "object", "x-intellij-html-description": "<html><p>Send a connection request to another user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-connection\">https://developers.symphony.com/restapi/reference#create-connection</a></html>", "allOf": [{}, {}]}, "accept-connection": {"type": "object", "x-intellij-html-description": "<html><p>Accept the connection request for a requesting user.</p><a href=\"https://developers.symphony.com/restapi/reference#accepted-connection\">https://developers.symphony.com/restapi/reference#accepted-connection</a></html>", "allOf": [{}, {}]}, "reject-connection": {"type": "object", "x-intellij-html-description": "<html><p>Reject the connection request from a requesting user.</p><a href=\"https://developers.symphony.com/restapi/reference#reject-connection\">https://developers.symphony.com/restapi/reference#reject-connection</a></html>", "allOf": [{}, {}]}, "remove-connection": {"type": "object", "x-intellij-html-description": "<html><p>Remove a connection with a user.</p><a href=\"https://developers.symphony.com/restapi/reference#remove-connection\">https://developers.symphony.com/restapi/reference#remove-connection</a></html>", "allOf": [{}, {}]}, "get-rooms": {"type": "object", "x-intellij-html-description": "<html><p>Search for rooms, querying name, description, and specified keywords.</p><a href=\"https://developers.symphony.com/restapi/reference#search-rooms-v3\">https://developers.symphony.com/restapi/reference#search-rooms-v3</a></html>", "allOf": [{}, {}]}, "get-messages": {"type": "object", "x-intellij-html-description": "<html><p>Get messages from an existing stream (IM, MIM, or chatroom).\nAdditionally returns any attachments associated with the message.</p><a href=\"https://developers.symphony.com/restapi/reference#messages-v4\">https://developers.symphony.com/restapi/reference#messages-v4</a></html>", "allOf": [{}, {}]}, "get-connections": {"type": "object", "x-intellij-html-description": "<html><p>Get one or multiple connections statuses</p><a href=\"https://developers.symphony.com/restapi/reference#list-connections\">https://developers.symphony.com/restapi/reference#list-connections</a></html>", "allOf": [{}, {}]}, "create-group": {"type": "object", "x-intellij-html-description": "<html><p>Create a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/insertgroup\">https://developers.symphony.com/restapi/reference/insertgroup</a></html>", "allOf": [{}, {}], "required": ["name", "owner", "members", "profile"]}, "update-group": {"type": "object", "x-intellij-html-description": "<html><p>Update a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/updategroup\">https://developers.symphony.com/restapi/reference/updategroup</a></html>", "allOf": [{}, {}, {"type": "object"}]}, "get-group": {"type": "object", "x-intellij-html-description": "<html><p>Retrieve a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/getgroup\">https://developers.symphony.com/restapi/reference/getgroup</a></html>", "allOf": [{}, {}]}, "get-groups": {"type": "object", "x-intellij-html-description": "<html><p>Retrieve groups of specified type (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/listgroups\">https://developers.symphony.com/restapi/reference/listgroups</a></html>", "allOf": [{}, {}]}, "add-group-member": {"type": "object", "x-intellij-html-description": "<html><p>Add members to a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/addmembertogroup\">https://developers.symphony.com/restapi/reference/addmembertogroup</a></html>", "allOf": [{}, {}]}}, "maxProperties": 1, "minProperties": 1, "patternProperties": {"^(?!create-room|update-room|add-room-member|remove-room-member|promote-room-owner|demote-room-owner|send-message|update-message|pin-message|unpin-message|debug|execute-script|execute-request|create-user|create-system-user|create-connection|update-user|update-system-user|add-user-role|remove-user-role|remove-connection|reject-connection|accept-connection|get-user|get-users|get-stream|get-room|get-message|get-connection|get-stream-members|get-room-members|get-user-streams|get-streams|get-rooms|get-messages|get-connections)([a-z0-9-]+)$": {}}}}}, "definitions": {"search-user-inner": {"type": "object", "properties": {"local": {"type": ["boolean", "string"], "default": false}, "active": {"type": ["boolean", "string"]}}}, "on": {"x-intellij-html-description": "<html><p>Events that can trigger the activity execution.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events\">List of real-time events: https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events</a></html>", "type": "object", "allOf": [{"type": "object", "properties": {"timeout": {"type": "string", "pattern": "^P(?!$)(\\d+(?:\\.\\d+)?Y)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?W)?(\\d+(?:\\.\\d+)?D)?(T(?=\\d)(\\d+(?:\\.\\d+)?H)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?S)?)?$"}}}, {"oneOf": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}]}]}, "form-replied-event": {"type": "object", "properties": {"form-replied": {"x-intellij-html-description": "<html><p>Generated when a user replies to a bot message that contains an interactive form with UX components such as text fields, radio buttons, checkboxes, person selectors and more. Please refer to <a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/symphony-elements\">Symphony Elements.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#symphony-elements-action\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#symphony-elements-action</a></html>"}}, "required": ["form-replied"]}, "request-received-event": {"properties": {"request-received": {}}, "required": ["request-received"]}, "message-received-event": {"type": "object", "properties": {"message-received": {"x-intellij-html-description": "<html><p>Generated when a message is sent in an IM, MIM, or chatroom of which the workflow bot is a member, including messages sent by the user him/herself.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#message-sent\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#message-sent</a></html>"}}, "required": ["message-received"]}, "message-suppressed-event": {"type": "object", "properties": {"message-suppressed": {"x-intellij-html-description": "<html><p>Generated when messages are suppressed.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#messages-suppressed\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#messages-suppressed</a></html>"}}, "required": ["message-suppressed"]}, "post-shared-event": {"type": "object", "properties": {"post-shared": {"x-intellij-html-description": "<html><p>Generated when either:<li>The workflow bot shares a wall post written by another user.</li><li>Another user shares a wall post written by the workflow bot.</li></p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#shared-wall-posts\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#shared-wall-posts</a></html>"}}, "required": ["post-shared"]}, "im-created-event": {"type": "object", "properties": {"im-created": {"x-intellij-html-description": "<html><p>Generated when an IM or MIM is created with the workflow bot as a member, initiated either by the workflow bot or another user.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#im-mim-created\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#im-mim-created</a></html>"}}, "required": ["im-created"]}, "room-created-event": {"type": "object", "properties": {"room-created": {"x-intellij-html-description": "<html><p>Generated when a room is created by the workflow bot.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-created\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-created</a></html>"}}, "required": ["room-created"]}, "room-updated-event": {"type": "object", "properties": {"room-updated": {"x-intellij-html-description": "<html><p>Generated when a room of which the workflow bot is a member is updated, including rooms updated by the user him/herself.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-updated-message\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-updated-message</a></html>"}}, "required": ["room-updated"]}, "room-deactivated-event": {"type": "object", "properties": {"room-deactivated": {"x-intellij-html-description": "<html><p>Generated when a room of which the workflow bot is a member is deactivated, including rooms deactivated by the user him/herself.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-deactivated-message\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-deactivated-message</a></html>"}}, "required": ["room-deactivated"]}, "room-reactivated-event": {"type": "object", "properties": {"room-reactivated": {"x-intellij-html-description": "<html><p>Generated when a room of which the workflow bot is a member is reactivated, including rooms reactivated by the user him/herself.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-reactivated-message\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-reactivated-message</a></html>"}}, "required": ["room-reactivated"]}, "room-member-promoted-to-owner-event": {"type": "object", "properties": {"room-member-promoted-to-owner": {"x-intellij-html-description": "<html><p>Generated when a user is promoted from a participant to an owner of a room of which the workflow bot is a member, including when the user himself is promoted to an owner or promotes another user.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-member-promoted-to-owner\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-member-promoted-to-owner</a></html>"}}, "required": ["room-member-promoted-to-owner"]}, "room-member-demoted-from-owner-event": {"type": "object", "properties": {"room-member-demoted-from-owner": {"x-intellij-html-description": "<html><p>Generated when a user is demoted from an owner to a participant of a room of which the workflow bot is a member, including when the user himself is demoted to a participant or demotes another user.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-member-demoted-from-owner\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#room-member-demoted-from-owner</a></html>"}}, "required": ["room-member-demoted-from-owner"]}, "user-joined-room-event": {"type": "object", "properties": {"user-joined-room": {"x-intellij-html-description": "<html><p>Generated when a new user joins or is added to a room of which the workflow bot is a member, including when the user himself joins or is added to a room.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-joined-room\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-joined-room</a></html>"}}, "required": ["user-joined-room"]}, "user-left-room-event": {"type": "object", "properties": {"user-left-room": {"x-intellij-html-description": "<html><p>Generated when a user leaves or is removed from a room of which the workflow bot is a member, including when the user himself leaves or is removed from a room.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-left-room\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-left-room</a></html>"}}, "required": ["user-left-room"]}, "user-requested-join-room-event": {"type": "object", "properties": {"user-requested-join-room": {"x-intellij-html-description": "<html><p>Generated when a user requests to join a room. Only the user who requested to join the room and the owners of that room will receive this event on their datafeeds.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-requested-to-join-room\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#user-requested-to-join-room</a></html>"}}, "required": ["user-requested-join-room"]}, "connection-requested-event": {"type": "object", "properties": {"connection-requested": {"x-intellij-html-description": "<html><p>Generated when a connection request is sent, either:<li>Sent by the workflow bot to another user.</li><li>Sent to the workflow bot by another user.</li></p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#connection-requested\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#connection-requested</a></html>"}}, "required": ["connection-requested"]}, "connection-accepted-event": {"type": "object", "properties": {"connection-accepted": {"x-intellij-html-description": "<html><p>Generated when a connection request is accepted, either:<li>Sent by the workflow bot and accepted by another user.</li><li>Sent by another user and accepted by the workflow bot.</li></p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#connection-accepted\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#connection-accepted</a></html>"}}, "required": ["connection-accepted"]}, "activity-expired-event": {"type": "object", "properties": {"activity-expired": {}}, "required": ["activity-expired"]}, "activity-failed-event": {"type": "object", "properties": {"activity-failed": {}}, "required": ["activity-failed"]}, "activity-completed-event": {"type": "object", "properties": {"activity-completed": {"x-intellij-html-description": "<html><p>Generated when the given activity is completed. Note this is not a Datafeed real-time event.</p></html>"}, "if": {"type": "string", "pattern": "^\\$\\{.*\\}$"}}, "required": ["activity-completed"]}, "all-of-event": {"type": "object", "properties": {"all-of": {"x-intellij-html-description": "Used to receive all listed events.", "type": "array", "items": {"anyOf": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}]}}}, "additionalProperties": true, "required": ["all-of"]}, "one-of-event": {"type": "object", "properties": {"one-of": {"x-intellij-html-description": "Used to receive at least one of the listed events.", "type": "array", "items": {"oneOf": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}]}}}, "additionalProperties": true, "required": ["one-of"]}, "timer-fired-event": {"type": "object", "properties": {"timer-fired": {"x-intellij-html-description": "<html><p>Timer based event. It is either triggered at: <li>a given point in time using the keyword <i>\"at\"</i>.</li><li>repeated using the keyword <i>\"repeat\"</i>.</li> Note this is not a Datafeed real-time event.</p></html>"}}, "additionalProperties": false, "required": ["timer-fired"]}, "repeat": {"properties": {"repeat": {"type": "string", "default": "R/PT0.1S"}}, "required": ["repeat"]}, "at": {"properties": {"at": {"type": "string", "default": "2021-08-31T-15:50:00"}}, "required": ["at"]}, "timer-fired-event-inner": {"type": "object", "oneOf": [{}, {}]}, "form-replied-event-inner": {"type": "object", "properties": {"form-id": {"type": "string"}, "exclusive": {"default": false, "type": "boolean"}}, "required": ["form-id"]}, "message-received-event-inner": {"type": "object", "additionalProperties": false, "properties": {"content": {"type": "string"}, "requires-bot-mention": {"type": "boolean", "default": false}, "id": {"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}}}, "request-received-event-inner": {"type": "object", "additionalProperties": false, "properties": {"token": {"type": "string", "minLength": 1}, "id": {"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}}, "required": ["token"]}, "message-suppressed-event-inner": {"type": "object", "properties": {}}, "post-shared-event-inner": {"type": "object", "properties": {}}, "im-created-event-inner": {"type": "object", "properties": {}}, "room-created-event-inner": {"type": "object", "properties": {}}, "room-updated-event-inner": {"type": "object", "properties": {}}, "room-deactivated-event-inner": {"type": "object", "properties": {}}, "room-reactivated-event-inner": {"type": "object", "properties": {}}, "room-member-promoted-to-owner-event-inner": {"type": "object", "properties": {"id": {"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}}}, "room-member-demoted-from-owner-event-inner": {"type": "object", "properties": {}}, "user-joined-room-event-inner": {"type": "object", "properties": {"id": {"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}}}, "user-left-room-event-inner": {"type": "object", "properties": {"id": {"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}}}, "user-requested-join-room-event-inner": {"type": "object", "properties": {}}, "connection-requested-event-inner": {"type": "object", "properties": {}}, "connection-accepted-event-inner": {"type": "object", "properties": {}}, "activity-expired-event-inner": {"type": "object", "properties": {"activity-id": {}}, "required": ["activity-id"]}, "activity-failed-event-inner": {"type": "object", "properties": {"activity-id": {}}, "required": ["activity-id"]}, "activity-completed-event-inner": {"type": "object", "properties": {"activity-id": {}, "id": {"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}}, "required": ["activity-id"]}, "basic-activity-inner": {"type": "object", "properties": {"id": {"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}, "on": {}, "if": {"type": "string"}, "else": {"type": "object"}}, "required": ["id"]}, "room-name": {"anyOf": [{"enum": ["${ACTIVITY_ID.outputs.room.roomAttributes.name}", "${ACTIVITY_ID.outputs.stream.roomAttributes.name}", "${variables.VARIABLE_NAME}"]}, {"type": "string", "maxLength": 50}]}, "room-description": {"anyOf": [{"enum": ["${ACTIVITY_ID.outputs.room.roomAttributes.description}", "${variables.VARIABLE_NAME}"]}, {"type": "string"}]}, "keywords": {"oneOf": [{"type": "object"}, {"type": "string", "minLength": 1}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "members-can-invite": {"type": ["boolean", "string"], "default": false}, "discoverable": {"type": ["boolean", "string"], "default": false}, "public": {"x-intellij-html-description": "<html><p>If true, this is a public chatroom. If false, a private chatroom.<br/><i>Note: Once this value is set for a room, it is read-only and can\u2019t be updated.</i></p></html>", "type": ["boolean", "string"], "default": false}, "read-only": {"type": ["boolean", "string"], "x-intellij-html-description": "<html><p>If true, only stream owners can send messages.<br/><i>Note: Once this value is set for a room, it is read-only and can\u2019t be updated.</i></p></html>", "default": false}, "copy-protected": {"type": ["boolean", "string"], "x-intellij-html-description": "<html><p>If true, users cannot copy content from this room.<br/><i>Note: Once this value is set to true for a room, it is read-only and can\u2019t be updated.</i></p></html>", "default": false}, "cross-pod": {"type": ["boolean", "string"], "default": false}, "view-history": {"type": ["boolean", "string"], "default": false}, "multilateral-room": {"type": ["boolean", "string"], "default": false}, "active": {"type": ["boolean", "string"], "default": false}, "sub-type": {"type": "string", "enum": ["EMAIL"]}, "create-room-inner": {"type": "object", "properties": {"room-name": {}, "room-description": {}, "public": {}, "user-ids": {}, "keywords": {}, "members-can-invite": {}, "discoverable": {}, "read-only": {}, "copy-protected": {}, "cross-pod": {}, "view-history": {}, "multilateral-room": {}, "sub-type": {}, "obo": {}}, "anyOf": [{"required": ["room-name", "room-description"]}, {"required": ["user-ids"]}]}, "update-room-inner": {"type": "object", "required": ["stream-id"], "properties": {"stream-id": {}, "room-name": {}, "room-description": {}, "keywords": {}, "members-can-invite": {}, "discoverable": {}, "public": {}, "read-only": {}, "copy-protected": {}, "cross-pod": {}, "view-history": {}, "multilateral-room": {}, "active": {}, "obo": {}}}, "add-room-member-inner": {"type": "object", "properties": {"stream-id": {}, "user-ids": {}, "obo": {}}, "required": ["stream-id", "user-ids"]}, "remove-room-member-inner": {"type": "object", "properties": {"stream-id": {}, "user-ids": {}, "obo": {}}, "required": ["stream-id", "user-ids"]}, "promote-room-owner-inner": {"type": "object", "properties": {"stream-id": {}, "user-ids": {}, "obo": {}}, "required": ["stream-id", "user-ids"]}, "demote-room-owner-inner": {"type": "object", "properties": {"stream-id": {}, "user-ids": {}, "obo": {}}, "required": ["stream-id", "user-ids"]}, "send-message-inner": {"type": "object", "properties": {"to": {}, "content": {}, "data": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "obo": {}}, "required": ["content"]}, "update-message-inner": {"type": "object", "properties": {"content": {}, "message-id": {}, "silent": {"type": ["boolean", "string"], "default": true}}, "required": ["content", "message-id"]}, "pin-message-inner": {"type": "object", "properties": {"message-id": {}, "obo": {}}, "required": ["message-id"]}, "unpin-message-inner": {"type": "object", "properties": {"stream-id": {}, "obo": {}}, "required": ["stream-id"]}, "get-attachment-inner": {"type": "object", "properties": {"message-id": {}, "attachment-id": {}}, "required": ["message-id", "attachment-id"]}, "execute-script-inner": {"type": "object", "required": ["script"], "properties": {"script": {"type": "string", "x-intellij-language-injection": "Groovy"}}}, "execute-request-inner": {"type": "object", "properties": {"url": {"type": "string", "minLength": 1}, "encode-query-params": {"type": ["boolean", "string"], "default": true}, "method": {"type": "string", "default": "GET", "enum": ["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]}, "body": {"oneOf": [{"type": "string"}, {"type": "object"}]}, "headers": {"type": "object"}}, "required": ["url"]}, "email": {"anyOf": [{"enum": ["${variables.VARIABLE_NAME}", "${ACTIVITY_ID.outputs.user.userAttributes.emailAddress}"]}, {"type": "string", "pattern": "([$][{].+})|(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])*\")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9])|[a-z0-9-]*[a-z0-9]:(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21-\\x5a\\x53-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])+)\\])"}]}, "name": {"anyOf": [{"enum": ["${variables.VARIABLE_NAME}", "${ACTIVITY_ID.outputs.user.userAttributes.firstName}", "${ACTIVITY_ID.outputs.user.userAttributes.lastName}", "${ACTIVITY_ID.outputs.user.userAttributes.userName}", "${ACTIVITY_ID.outputs.user.userAttributes.displayName}"]}, {"type": "string", "minLength": 1}]}, "phoneNumber": {"anyOf": [{"enum": ["${variables.VARIABLE_NAME}", "${ACTIVITY_ID.outputs.user.userAttributes.workPhoneNumber}", "${ACTIVITY_ID.outputs.user.userAttributes.mobilePhoneNumber}", "${ACTIVITY_ID.outputs.user.userAttributes.twoFactorAuthPhone}"]}, {"type": "string", "pattern": "^[0-9]*$|^\\+[0-9]*$"}]}, "business": {"type": "object", "additionalProperties": false, "properties": {"company-name": {"type": "string"}, "department": {"type": "string"}, "division": {"type": "string"}, "location": {"type": "string"}, "job-function": {"type": "string", "enum": ["Analyst", "Other", "Business Development Executive", "Corporate Access", "Developer", "Director", "Economist", "Portfolio Manager", "Project Manager", "Research Analyst", "Sales", "Strategist", "Trader"]}, "asset-classes": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Equities", "Cash Equities", "Securities Lending", "Fixed Income", "Government Bonds", "Prime Brokerage", "Commodities", "Municipal Bonds", "Currencies", "Corporate Bonds"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "industries": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Healthcare", "Consumer Non-Cyclicals", "Transportation", "Technology", "Real Estate", "Basic Materials", "Financials", "Energy & Utilities", "Conglomerates", "Consumer Cyclicals", "Services"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "functions": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Collateral", "Confirmation", "Trade Processing", "Pre-Matching", "Margin", "Matching", "Claims Processing", "Middle Office", "Liquidity Management", "Allocation", "Trade Management", "Regulatory Outreach", "Settlements", "Post Trade Management"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "market-coverages": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["EMEA", "NA", "APAC", "LATAM"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "responsibilities": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["BAU", "Escalation"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "instruments": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Securities", "Fixed Income", "Equities"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}}}, "create-user-inner": {"type": "object", "properties": {"email": {}, "firstname": {}, "lastname": {}, "username": {}, "display-name": {}, "recommended-language": {"type": "string", "default": "en-US"}, "contact": {"type": "object", "additionalProperties": false, "properties": {"work-phone-number": {}, "mobile-phone-number": {}, "two-factor-auth-number": {}, "sms-number": {}}}, "business": {}, "password": {"type": "object", "additionalProperties": false, "required": ["hashed-password", "hashed-salt"], "properties": {"hashed-password": {"type": "string", "minLength": 1}, "hashed-salt": {"type": "string", "minLength": 1}, "hashed-km-password": {"type": "string", "minLength": 1}, "hashed-km-salt": {"type": "string", "minLength": 1}}}, "roles": {"x-intellij-html-description": "<html><p>The roles object consists of the following possibilities:<li>For end-user accounts: INDIVIDUAL, ADMINISTRATOR, SUPER_ADMINISTRATOR, L1_SUPPORT, L2_SUPPORT, COMPLIANCE_OFFICER, SUPER_COMPLIANCE_OFFICER</li><li>For service accounts: INDIVIDUAL, USER_PROVISIONING, SCOPE_MANAGEMENT, CONTENT_MANAGEMENT, MALWARE_SCAN_MANAGER, MALWARE_SCAN_STATE_USER, AUDIT_TRAIL_MANAGEMENT</li><br/><a href=\"https://developers.symphony.com/restapi/reference#roles-object\">https://developers.symphony.com/restapi/reference#roles-object</a></p></html>"}, "entitlements": {}, "status": {"type": "string", "enum": ["ENABLED", "DISABLED"]}}}, "create-system-user-inner": {"type": "object", "properties": {"email": {}, "username": {}, "display-name": {}, "business": {}, "keys": {"type": "object", "properties": {"current": {}, "previous": {}}}, "roles": {"x-intellij-html-description": "<html><p>The roles object consists of the following possibilities:<li>For end-user accounts: INDIVIDUAL, ADMINISTRATOR, SUPER_ADMINISTRATOR, L1_SUPPORT, L2_SUPPORT, COMPLIANCE_OFFICER, SUPER_COMPLIANCE_OFFICER</li><li>For service accounts: INDIVIDUAL, USER_PROVISIONING, SCOPE_MANAGEMENT, CONTENT_MANAGEMENT, MALWARE_SCAN_MANAGER, MALWARE_SCAN_STATE_USER, AUDIT_TRAIL_MANAGEMENT</li><br/><a href=\"https://developers.symphony.com/restapi/reference#roles-object\">https://developers.symphony.com/restapi/reference#roles-object</a></p></html>"}, "entitlements": {}, "status": {"type": "string", "enum": ["ENABLED", "DISABLED"]}}}, "key-inner": {"type": "object", "additionalProperties": false, "properties": {"action": {"type": "string", "enum": ["SAVE", "EXTEND", "REVOKE"]}, "key": {"type": "string", "minLength": 1}, "expiration": {"type": "string", "minLength": 1}}}, "entitlements-inner": {"oneOf": [{"type": "object", "properties": {"postReadEnabled": {"type": ["boolean", "string"]}, "postWriteEnabled": {"type": ["boolean", "string"]}, "delegatesEnabled": {"type": ["boolean", "string"]}, "isExternalIMEnabled": {"type": ["boolean", "string"]}, "canShareFilesExternally": {"type": ["boolean", "string"]}, "canCreatePublicRoom": {"type": ["boolean", "string"]}, "canUpdateAvatar": {"type": ["boolean", "string"]}, "isExternalRoomEnabled": {"type": ["boolean", "string"]}, "canCreatePushedSignals": {"type": ["boolean", "string"]}, "canUseCompactMode": {"type": ["boolean", "string"]}, "mustBeRecorded": {"type": ["boolean", "string"]}, "sendFilesEnabled": {"type": ["boolean", "string"]}, "canUseInternalAudio": {"type": ["boolean", "string"]}, "canUseInternalVideo": {"type": ["boolean", "string"]}, "canProjectInternalScreenShare": {"type": ["boolean", "string"]}, "canViewInternalScreenShare": {"type": ["boolean", "string"]}, "canCreateMultiLateralRoom": {"type": ["boolean", "string"]}, "canJoinMultiLateralRoom": {"type": ["boolean", "string"]}, "canUseFirehose": {"type": ["boolean", "string"]}, "canUseInternalAudioMobile": {"type": ["boolean", "string"]}, "canUseInternalVideoMobile": {"type": ["boolean", "string"]}, "canProjectInternalScreenShareMobile": {"type": ["boolean", "string"]}, "canViewInternalScreenShareMobile": {"type": ["boolean", "string"]}, "canManageSignalSubscription": {"type": ["boolean", "string"]}, "canCreateDatahose": {"type": ["boolean", "string"]}, "canIntegrateEmail": {"type": ["boolean", "string"]}, "canReadDatahose": {"type": ["boolean", "string"]}, "canSuppressMessage": {"type": ["boolean", "string"]}, "canSwitchToClient20": {"type": ["boolean", "string"]}, "canUpdateRoomHistoryProperty": {"type": ["boolean", "string"]}, "canUseEncryptAPI": {"type": ["boolean", "string"]}, "enableSwiftSearch": {"type": ["boolean", "string"]}, "sdaDevtoolsEnabled": {"type": ["boolean", "string"]}, "sdaPermissionsFullScreen": {"type": ["boolean", "string"]}, "sdaPermissionsGeoLocation": {"type": ["boolean", "string"]}, "sdaPermissionsMedia": {"type": ["boolean", "string"]}, "sdaPermissionsMidiSysex": {"type": ["boolean", "string"]}, "sdaPermissionsNotifications": {"type": ["boolean", "string"]}, "sdaPermissionsOpenExternalApp": {"type": ["boolean", "string"]}, "sdaPermissionsPointerLock": {"type": ["boolean", "string"]}}}, {"type": "string", "minLength": 1}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "roles-inner": {"x-intellij-html-description": "<html><p>The roles object consists of the following possibilities:<li>For end-user accounts: INDIVIDUAL, ADMINISTRATOR, SUPER_ADMINISTRATOR, L1_SUPPORT, L2_SUPPORT, COMPLIANCE_OFFICER, SUPER_COMPLIANCE_OFFICER</li><li>For service accounts: INDIVIDUAL, USER_PROVISIONING, SCOPE_MANAGEMENT, CONTENT_MANAGEMENT, MALWARE_SCAN_MANAGER, MALWARE_SCAN_STATE_USER, AUDIT_TRAIL_MANAGEMENT</li><br/><a href=\"https://developers.symphony.com/restapi/reference#roles-object\">https://developers.symphony.com/restapi/reference#roles-object</a></p></html>", "oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["INDIVIDUAL", "ADMINISTRATOR", "SUPER_ADMINISTRATOR", "L1_SUPPORT", "L2_SUPPORT", "COMPLIANCE_OFFICER", "SUPER_COMPLIANCE_OFFICER", "USER_PROVISIONING", "SCOPE_MANAGEMENT", "CONTENT_MANAGEMENT", "MALWARE_SCAN_MANAGER", "MALWARE_SCAN_STATE_USER", "AUDIT_TRAIL_MANAGEMENT", "AGENT", "CONTENT_EXPORT_SERVICE", "SYMPHONY_ADMIN", "KEY_MANAGER", "EF_POLICY_MANAGEMENT", "CEP_VISIBILITY_GROUP_MANAGEMENT"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "user-role-inner": {"type": "object", "properties": {"user-ids": {"oneOf": [{"type": "array", "uniqueItems": true, "minItems": 1, "items": {"type": ["string", "integer"], "minLength": 1}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "roles": {}}, "required": ["user-ids", "roles"]}, "get-user-inner": {"type": "object", "properties": {"user-id": {}}, "required": ["user-id"]}, "get-users-inner": {"type": "object", "properties": {"user-ids": {}, "emails": {"oneOf": [{"type": "array", "items": {}, "minLength": 1}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "usernames": {"oneOf": [{"type": "array", "items": {}, "minLength": 1}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "local": {"type": ["boolean", "string"], "default": false}, "active": {"type": ["boolean", "string"]}, "obo": {}}, "oneOf": [{"required": ["user-ids"]}, {"required": ["emails"]}, {"required": ["usernames"]}]}, "get-stream-inner": {"properties": {"stream-id": {}, "obo": {}}, "required": ["stream-id"]}, "get-room-inner": {"properties": {"stream-id": {}, "obo": {}}, "required": ["stream-id"]}, "connection-inner": {"type": "object", "properties": {"user-id": {}, "obo": {}}, "required": ["user-id"]}, "get-stream-members-inner": {"properties": {"stream-id": {}, "limit": {}, "skip": {}}, "required": ["stream-id"]}, "get-room-members-inner": {"properties": {"stream-id": {}}, "required": ["stream-id"]}, "get-user-streams-inner": {"properties": {"types": {"oneOf": [{"type": "array", "items": {"type": "string", "enum": ["IM", "MIM", "ROOM", "POST"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "include-inactive-streams": {"type": ["boolean", "string"]}, "limit": {}, "skip": {}, "obo": {}}, "dependencies": {"skip": ["limit"], "limit": ["skip"]}}, "get-message-inner": {"properties": {"message-id": {}}, "required": ["message-id"]}, "get-streams-inner": {"properties": {"types": {"oneOf": [{"type": "array", "items": {"type": "string", "enum": ["IM", "MIM", "ROOM"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "scope": {"type": "string", "enum": ["INTERNAL", "EXTERNAL"]}, "origin": {"type": "string", "enum": ["INTERNAL", "EXTERNAL"]}, "privacy": {"type": "string", "enum": ["PRIVATE", "PUBLIC"]}, "status": {"type": "string", "enum": ["ACTIVE", "INACTIVE"]}, "start-date": {"type": "string"}, "end-date": {"type": "string"}, "limit": {}, "skip": {}}}, "get-rooms-inner": {"properties": {"query": {"type": "string", "minLength": 1}, "labels": {"oneOf": [{"type": "array", "items": {"type": "string"}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "active": {"type": ["boolean", "string"]}, "private": {"type": ["boolean", "string"]}, "creator-id": {"type": ["string", "number"], "minLength": 1}, "owner-id": {"type": ["string", "number"], "minLength": 1}, "member-id": {"type": ["string", "number"], "minLength": 1}, "sort-order": {"type": "string", "enum": ["BASIC", "RELEVANCE"]}, "limit": {}, "skip": {}, "obo": {}}, "required": ["query"]}, "get-messages-inner": {"type": "object", "properties": {"stream-id": {}, "since": {"anyOf": [{"enum": ["${variables.VARIABLE_NAME}"]}, {"type": "string", "minLength": 1}], "default": "2021-08-31T15:50:00Z"}, "skip": {}, "limit": {}}, "required": ["stream-id", "since"]}, "get-connections-inner": {"type": "object", "properties": {"user-ids": {}, "status": {"type": "string", "enum": ["PENDING_INCOMING", "PENDING_OUTGOING", "ACCEPTED", "REJECTED", "ALL"]}, "obo": {}}}, "create-group-inner": {"type": "object", "properties": {"type": {"type": "string", "minLength": 1}, "owner": {"type": "object"}, "name": {"type": "string", "minLength": 1}, "sub-type": {"type": "string", "enum": ["COMMUNITY", "CHANNEL"]}, "referrer": {"type": "string", "minLength": 1}, "members": {"type": "array", "oneOf": [{"type": "array", "uniqueItems": true, "items": {}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "profile": {}}}, "group-owner": {"type": "object", "required": ["id", "type"], "properties": {"id": {"anyOf": [{"type": ["string", "integer"], "minLength": 1}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "type": {"type": "string", "default": "TENANT", "enum": ["TENANT", "PLATFORM", "USER"]}}}, "group-member": {"type": "object", "required": ["user-id", "tenant-id"], "properties": {"user-id": {"type": ["string", "integer"], "minLength": 1, "minimum": 0}, "tenant-id": {"type": ["string", "integer"], "minLength": 1, "minimum": 0}}}, "group-profile": {"type": "object", "required": ["display-name"], "properties": {"display-name": {"type": "string"}, "company-name": {"type": "string"}, "email": {"type": "string"}, "mobile": {"type": "string"}, "job": {"type": "object", "properties": {"role": {"type": "string"}, "department": {"type": "string"}, "division": {"type": "string"}, "phone": {"type": "string"}, "city": {"type": "string"}}}, "asset-classes": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Equities", "Cash Equities", "Securities Lending", "Fixed Income", "Government Bonds", "Prime Brokerage", "Commodities", "Municipal Bonds", "Currencies", "Corporate Bonds"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "industries": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Healthcare", "Consumer Non-Cyclicals", "Transportation", "Technology", "Real Estate", "Basic Materials", "Financials", "Energy & Utilities", "Conglomerates", "Consumer Cyclicals", "Services"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "functions": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Collateral", "Confirmation", "Trade Processing", "Pre-Matching", "Margin", "Matching", "Claims Processing", "Middle Office", "Liquidity Management", "Allocation", "Trade Management", "Regulatory Outreach", "Settlements", "Post Trade Management"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "market-coverages": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["EMEA", "NA", "APAC", "LATAM"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "responsibilities": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["BAU", "Escalation"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "instruments": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Securities", "Fixed Income", "Equities"]}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "visibility-restriction": {"type": "object"}, "implicit-connection": {"type": "object"}, "interaction-transfer": {"type": "object"}}}, "tenants-users-list": {"type": "object", "properties": {"user-ids": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": ["string", "integer"], "minLength": 1, "minimum": 0}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "tenant-ids": {"oneOf": [{"type": "array", "uniqueItems": true, "items": {"type": ["string", "integer"], "minLength": 1, "minimum": 0}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}}}, "update-group-inner": {"type": "object", "required": ["group-id"], "properties": {"group-id": {}, "status": {"type": "string", "enum": ["ACTIVE", "DELETED"]}, "e-tag": {"type": "string"}, "image-path": {"anyOf": [{"enum": ["${variables.VARIABLE_NAME}"]}, {"type": "string", "minLength": 1}]}}}, "get-group-inner": {"type": "object", "required": ["group-id"], "properties": {"group-id": {}}}, "get-groups-inner": {"type": "object", "required": ["type"], "properties": {"type": {"type": "string", "minLength": 1, "default": "SDL"}, "status": {"type": "string", "enum": ["ACTIVE", "DELETED"]}, "before": {"type": "string", "minLength": 1}, "after": {"type": "string", "minLength": 1}, "limit": {"type": ["string", "integer"], "minLength": 1, "minimum": 0, "default": 100}, "sort-order": {"type": "string", "enum": ["ASC", "DESC"]}}}, "add-group-member-inner": {"type": "object", "required": ["group-id"], "properties": {"group-id": {}, "members": {"type": "array", "oneOf": [{"type": "array", "uniqueItems": true, "items": {}}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}}}, "group-id": {"anyOf": [{"type": ["string", "integer"], "minLength": 1}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "obo-inner": {"type": "object", "properties": {"user-id": {}, "username": {}}, "anyOf": [{"required": ["user-id"]}, {"required": ["username"]}]}, "to": {"type": "object", "oneOf": [{}, {}, {}]}, "content-inner": {"oneOf": [{"enum": ["${variables.VARIABLE_NAME}", "${text(ACTIVITY_ID.outputs.message.message)}", "${event.args.NAME}", "<mention uid='${ACTIVITY_ID.outputs.user.userSystemInfo.id}'/>", "<mention uid='${event.initiator.user.userId}'/>"]}, {"type": "object", "properties": {"template": {"type": "string", "minLength": 1}, "template-path": {"type": "string", "minLength": 1}}, "oneOf": [{"required": ["template"]}, {"required": ["template-path"]}]}, {"type": "string", "minLength": 0}]}, "skip": {"anyOf": [{"enum": ["${variables.VARIABLE_NAME}"]}, {"type": ["integer", "string"], "minimum": 0}]}, "limit": {"anyOf": [{"enum": ["${variables.VARIABLE_NAME}"]}, {"type": ["integer", "string"], "maximum": 1000, "minimum": 1}]}, "id": {"type": "string", "minLength": 1}, "message-id-inner": {"anyOf": [{"enum": ["${variables.VARIABLE_NAME}", "${ACTIVITY_ID.outputs.msgId}", "${ACTIVITY_ID.outputs.message.messageId}", "${ACTIVITY_ID.outputs.message.initialMessageId}"]}, {}]}, "stream-id-inner": {"anyOf": [{"enum": ["${event.source.message.stream.streamId}", "${variables.VARIABLE_NAME}", "${ACTIVITY_ID.outputs.roomId}", "${ACTIVITY_ID.outputs.stream.id}"]}, {}]}, "stream-id": {"type": "object", "properties": {"stream-id": {}}, "required": ["stream-id"]}, "stream-ids": {"type": "object", "properties": {"stream-ids": {"oneOf": [{"type": "array", "minLength": 1, "items": {"type": "string"}, "uniqueItems": true}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}}, "required": ["stream-ids"]}, "user-ids-inner": {"oneOf": [{"type": "array", "items": {}, "minLength": 1, "uniqueItems": true}, {"type": "string", "minLength": 1, "pattern": "^\\$\\{.*\\}$"}, {"enum": ["${variables.VARIABLE_NAME}"]}]}, "user-ids": {"type": "object", "properties": {"user-ids": {}}, "required": ["user-ids"]}, "user-id": {"anyOf": [{"type": ["string", "integer"], "minLength": 1}, {"enum": ["${ACTIVITY_ID.outputs.user.userSystemInfo.id}", "${event.initiator.user.userId}", "${event.source.fromUser.userId}", "${event.source.toUser.userId}"]}]}, "attachment": {"type": "object", "oneOf": [{}, {}]}, "single-attachment": {"type": "string", "minLength": 1}, "attachment-message": {"type": "object", "properties": {"message-id": {}, "attachment-id": {"anyOf": [{"enum": ["${variables.VARIABLE_NAME}"]}, {"type": "string", "minLength": 1}]}}, "required": ["message-id"]}, "attachment-file": {"type": "object", "required": ["content-path"], "properties": {"content-path": {"anyOf": [{"enum": ["${variables.VARIABLE_NAME}"]}, {"type": "string", "minLength": 1}]}}}}}
swadl-schema-1.0.json
id
Workflow's id should start with a letter. It is optional. If no id is provided, the workflow filename is used. Otherwise, it will be generated. The id will appear in logs and audit trails.
{"type": "string", "pattern": "^[a-zA-Z]+[a-zA-Z0-9][^ ]*$", "default": "my-workflow", "maxLength": 100}
swadl-schema-1.0.json
properties
Some metadata about the workflow
{"type": "object", "properties": {"publish": {"type": ["boolean", "string"], "default": true}}}
swadl-schema-1.0.json
publish
Should the workflow be published or not, true publish, false otherwise
{"type": ["boolean", "string"], "default": true}
swadl-schema-1.0.json
variables
Variables are accessible and editable within the entire workflow. A map of key: value entries is expected.
{"type": "object"}
swadl-schema-1.0.json
activities
A list of activities to be executed by the workflow. By default the execution is sequential but complex logic can be orchestrated with if/else conditions as well as on/activity-completed events.
{"type": "array", "minLength": 1, "items": {"type": "object", "additionalProperties": false, "properties": {"create-room": {"x-intellij-html-description": "<html><p>Creates a new chatroom.\n</p><a href=\"https://developers.symphony.com/restapi/reference#create-room-v3\">https://developers.symphony.com/restapi/reference#create-room-v3</a></html>", "allOf": [{}, {}]}, "update-room": {"x-intellij-html-description": "<html><p>Updates the attributes of an existing chat room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a></html>", "allOf": [{}, {}]}, "add-room-member": {"x-intellij-html-description": "<html><p>Adds a new members to an existing room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#add-member\">https://developers.symphony.com/restapi/reference#add-member</a></html>", "allOf": [{}, {}]}, "remove-room-member": {"x-intellij-html-description": "<html><p>Removes members from an existing room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#remove-member\">https://developers.symphony.com/restapi/reference#remove-member</a></html>", "allOf": [{}, {}]}, "promote-room-owner": {"x-intellij-html-description": "<html><p>Promotes user to owner of the chat room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#promote-owner\">https://developers.symphony.com/restapi/reference#promote-owner</a></html>", "allOf": [{}, {}]}, "demote-room-owner": {"x-intellij-html-description": "<html><p>Demotes room owner to a participant in the chat room.</p><a href=\"https://developers.symphony.com/restapi/reference#demote-owner\">https://developers.symphony.com/restapi/reference#demote-owner</a></html>", "allOf": [{}, {}]}, "send-message": {"x-intellij-html-description": "<html><p>Posts a message to a stream.</p><a href=\"https://developers.symphony.com/restapi/reference#create-message-v4\">https://developers.symphony.com/restapi/reference#create-message-v4</a></html>", "allOf": [{}, {}]}, "update-message": {"x-intellij-html-description": "<html><p>Updates an existing message into a stream.</p><a href=\"https://developers.symphony.com/restapi/reference#update-message-v4\">https://developers.symphony.com/restapi/reference#update-message-v4</a></html>", "allOf": [{}, {}]}, "pin-message": {"x-intellij-html-description": "<html><p>Pin an existing message into the stream it belongs to.<a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a><a href=\"https://developers.symphony.com/restapi/v20.13/reference#update-im\">(https://developers.symphony.com/restapi/v20.13/reference#update-im</a></html>", "allOf": [{}, {}]}, "unpin-message": {"x-intellij-html-description": "<html><p>Unpin any message (if present) from an existing stream.</p><a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a><a href=\"https://developers.symphony.com/restapi/v20.13/reference#update-im\">(https://developers.symphony.com/restapi/v20.13/reference#update-im</a></html>", "allOf": [{}, {}]}, "get-attachment": {"x-intellij-html-description": "<html><p>Gets one attachment and stores it locally.</p><a href=\"https://developers.symphony.com/restapi/reference#attachment\">https://developers.symphony.com/restapi/reference#attachment</a></html>", "allOf": [{}, {}]}, "debug": {"x-intellij-html-description": "<html><p>Standard debug activity.</p></html>", "type": "object", "properties": {"id": {"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}, "on": {}, "if": {"type": "string"}, "else": {"type": "object"}, "object": {"type": ["object", "string"]}}, "required": ["object"]}, "execute-script": {"x-intellij-html-description": "<html><p>Executes a Groovy script.</p></html>", "allOf": [{}, {}]}, "execute-request": {"allOf": [{}, {}]}, "create-user": {"x-intellij-html-description": "<html><p>Creates a new end user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-user-v2\">https://developers.symphony.com/restapi/reference#create-user-v2</a></html>", "allOf": [{}, {"required": ["email", "username", "firstname", "lastname", "display-name"]}]}, "update-user": {"x-intellij-html-description": "<html><p>Updates an existing end user.</p><a href=\"https://developers.symphony.com/restapi/reference#update-user-v2\">https://developers.symphony.com/restapi/reference#update-user-v2</a></html>", "allOf": [{}, {}, {"type": "object", "properties": {"user-id": {}}, "required": ["user-id"]}]}, "create-system-user": {"x-intellij-html-description": "<html><p>Creates a new service user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-user-v2\">https://developers.symphony.com/restapi/reference#create-user-v2</a></html>", "allOf": [{}, {"required": ["email", "username", "display-name"]}]}, "update-system-user": {"x-intellij-html-description": "<html><p>Updates an existing service user.</p><a href=\"https://developers.symphony.com/restapi/reference#update-user-v2\">https://developers.symphony.com/restapi/reference#update-user-v2</a></html>", "allOf": [{}, {}, {"type": "object", "properties": {"user-id": {}}, "required": ["user-id"]}]}, "add-user-role": {"x-intellij-html-description": "<html><p>Adds a role or optional entitleable action to a user\u2019s account.</p><a href=\"https://developers.symphony.com/restapi/reference#add-role\">https://developers.symphony.com/restapi/reference#add-role</a></html>", "allOf": [{}, {}]}, "remove-user-role": {"x-intellij-html-description": "<html><p>Removes a role or optional entitleable action from a user\u2019s account.</p><a href=\"https://developers.symphony.com/restapi/reference#remove-role\">https://developers.symphony.com/restapi/reference#remove-role</a></html>", "allOf": [{}, {}]}, "get-user": {"x-intellij-html-description": "<html><p>Returns details for a particular user.</p><a href=\"https://developers.symphony.com/restapi/reference#get-user-v2\">https://developers.symphony.com/restapi/reference#get-user-v2</a></html>", "type": "object", "allOf": [{}, {}]}, "get-users": {"x-intellij-html-description": "<html><p>Returns a list of users ID, including user metadata.</p><a href=\"https://developers.symphony.com/restapi/reference#users-lookup-v3\">https://developers.symphony.com/restapi/reference#users-lookup-v3</a></html>", "type": "object", "allOf": [{}, {}]}, "get-stream": {"type": "object", "x-intellij-html-description": "<htmL><p>Returns information about a particular stream.</p><a href=\"https://developers.symphony.com/restapi/reference#stream-info-v2\">https://developers.symphony.com/restapi/reference#stream-info-v2</a></html", "allOf": [{}, {}]}, "get-room": {"type": "object", "x-intellij-html-description": "<html><p>Returns information about a particular chat room.</p><a href=\"https://developers.symphony.com/restapi/reference#room-info-v3\">https://developers.symphony.com/restapi/reference#room-info-v3</a></html>", "allOf": [{}, {}]}, "get-message": {"type": "object", "x-intellij-html-description": "<html><p>Returns a message found by id.</p><a href=\"https://developers.symphony.com/restapi/reference#get-message-v1\">https://developers.symphony.com/restapi/reference#get-message-v1</html>", "allOf": [{}, {}]}, "get-stream-members": {"type": "object", "x-intellij-html-description": "<html><p>Returns a list of all the current members of a stream (IM, MIM, or chatroom).</p><a href=\"https://developers.symphony.com/restapi/reference#stream-members\">https://developers.symphony.com/restapi/reference#stream-members</a></html>", "allOf": [{}, {}]}, "get-room-members": {"type": "object", "x-intellij-html-description": "<html><p>Lists the current members of an existing room.</p><a href=\"https://developers.symphony.com/restapi/reference#room-members\">https://developers.symphony.com/restapi/reference#room-members</a></html>", "allOf": [{}, {}]}, "get-user-streams": {"type": "object", "x-intellij-html-description": "<html><p>Returns a list of all the streams of which the requesting user is a member, sorted by creation date (ascending - oldest to newest).</p><a href=\"https://developers.symphony.com/restapi/reference#list-user-streams\">https://developers.symphony.com/restapi/reference#list-user-streams</a></html>", "allOf": [{}, {}]}, "get-streams": {"type": "object", "x-intellij-html-description": "<html><p>Returns a list of all the streams (IMs, MIMs, and chatrooms) for the calling user's company, sorted by creation date (ascending \u2013 oldest to newest).</p><a href\"https://developers.symphony.com/restapi/reference#list-streams-for-enterprise-v2\">https://developers.symphony.com/restapi/reference#list-streams-for-enterprise-v2</a></html>", "allOf": [{}, {}]}, "get-connection": {"type": "object", "x-intellij-html-description": "<html><p>Get one connection status.</p><a href=\"https://developers.symphony.com/restapi/reference#get-connection\">https://developers.symphony.com/restapi/reference#get-connection</a></html>", "allOf": [{}, {}]}, "create-connection": {"type": "object", "x-intellij-html-description": "<html><p>Send a connection request to another user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-connection\">https://developers.symphony.com/restapi/reference#create-connection</a></html>", "allOf": [{}, {}]}, "accept-connection": {"type": "object", "x-intellij-html-description": "<html><p>Accept the connection request for a requesting user.</p><a href=\"https://developers.symphony.com/restapi/reference#accepted-connection\">https://developers.symphony.com/restapi/reference#accepted-connection</a></html>", "allOf": [{}, {}]}, "reject-connection": {"type": "object", "x-intellij-html-description": "<html><p>Reject the connection request from a requesting user.</p><a href=\"https://developers.symphony.com/restapi/reference#reject-connection\">https://developers.symphony.com/restapi/reference#reject-connection</a></html>", "allOf": [{}, {}]}, "remove-connection": {"type": "object", "x-intellij-html-description": "<html><p>Remove a connection with a user.</p><a href=\"https://developers.symphony.com/restapi/reference#remove-connection\">https://developers.symphony.com/restapi/reference#remove-connection</a></html>", "allOf": [{}, {}]}, "get-rooms": {"type": "object", "x-intellij-html-description": "<html><p>Search for rooms, querying name, description, and specified keywords.</p><a href=\"https://developers.symphony.com/restapi/reference#search-rooms-v3\">https://developers.symphony.com/restapi/reference#search-rooms-v3</a></html>", "allOf": [{}, {}]}, "get-messages": {"type": "object", "x-intellij-html-description": "<html><p>Get messages from an existing stream (IM, MIM, or chatroom).\nAdditionally returns any attachments associated with the message.</p><a href=\"https://developers.symphony.com/restapi/reference#messages-v4\">https://developers.symphony.com/restapi/reference#messages-v4</a></html>", "allOf": [{}, {}]}, "get-connections": {"type": "object", "x-intellij-html-description": "<html><p>Get one or multiple connections statuses</p><a href=\"https://developers.symphony.com/restapi/reference#list-connections\">https://developers.symphony.com/restapi/reference#list-connections</a></html>", "allOf": [{}, {}]}, "create-group": {"type": "object", "x-intellij-html-description": "<html><p>Create a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/insertgroup\">https://developers.symphony.com/restapi/reference/insertgroup</a></html>", "allOf": [{}, {}], "required": ["name", "owner", "members", "profile"]}, "update-group": {"type": "object", "x-intellij-html-description": "<html><p>Update a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/updategroup\">https://developers.symphony.com/restapi/reference/updategroup</a></html>", "allOf": [{}, {}, {"type": "object"}]}, "get-group": {"type": "object", "x-intellij-html-description": "<html><p>Retrieve a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/getgroup\">https://developers.symphony.com/restapi/reference/getgroup</a></html>", "allOf": [{}, {}]}, "get-groups": {"type": "object", "x-intellij-html-description": "<html><p>Retrieve groups of specified type (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/listgroups\">https://developers.symphony.com/restapi/reference/listgroups</a></html>", "allOf": [{}, {}]}, "add-group-member": {"type": "object", "x-intellij-html-description": "<html><p>Add members to a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/addmembertogroup\">https://developers.symphony.com/restapi/reference/addmembertogroup</a></html>", "allOf": [{}, {}]}}, "maxProperties": 1, "minProperties": 1, "patternProperties": {"^(?!create-room|update-room|add-room-member|remove-room-member|promote-room-owner|demote-room-owner|send-message|update-message|pin-message|unpin-message|debug|execute-script|execute-request|create-user|create-system-user|create-connection|update-user|update-system-user|add-user-role|remove-user-role|remove-connection|reject-connection|accept-connection|get-user|get-users|get-stream|get-room|get-message|get-connection|get-stream-members|get-room-members|get-user-streams|get-streams|get-rooms|get-messages|get-connections)([a-z0-9-]+)$": {}}}}
swadl-schema-1.0.json
create-room
Creates a new chatroom.
{"x-intellij-html-description": "<html><p>Creates a new chatroom.\n</p><a href=\"https://developers.symphony.com/restapi/reference#create-room-v3\">https://developers.symphony.com/restapi/reference#create-room-v3</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
update-room
Updates the attributes of an existing chat room.
{"x-intellij-html-description": "<html><p>Updates the attributes of an existing chat room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
add-room-member
Adds new members to an existing room.
{"x-intellij-html-description": "<html><p>Adds a new members to an existing room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#add-member\">https://developers.symphony.com/restapi/reference#add-member</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
remove-room-member
Removes members from an existing room.
{"x-intellij-html-description": "<html><p>Removes members from an existing room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#remove-member\">https://developers.symphony.com/restapi/reference#remove-member</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
promote-room-owner
Promotes user to owner of the chat room.
{"x-intellij-html-description": "<html><p>Promotes user to owner of the chat room.\n</p><a href=\"https://developers.symphony.com/restapi/reference#promote-owner\">https://developers.symphony.com/restapi/reference#promote-owner</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
demote-room-owner
Demotes room owner to a participant in the chat room.
{"x-intellij-html-description": "<html><p>Demotes room owner to a participant in the chat room.</p><a href=\"https://developers.symphony.com/restapi/reference#demote-owner\">https://developers.symphony.com/restapi/reference#demote-owner</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
send-message
Posts a message to a stream.
{"x-intellij-html-description": "<html><p>Posts a message to a stream.</p><a href=\"https://developers.symphony.com/restapi/reference#create-message-v4\">https://developers.symphony.com/restapi/reference#create-message-v4</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
update-message
Updates an existing message into a stream.
{"x-intellij-html-description": "<html><p>Updates an existing message into a stream.</p><a href=\"https://developers.symphony.com/restapi/reference#update-message-v4\">https://developers.symphony.com/restapi/reference#update-message-v4</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
pin-message
Pin an existing message into the stream it belongs to.
{"x-intellij-html-description": "<html><p>Pin an existing message into the stream it belongs to.<a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a><a href=\"https://developers.symphony.com/restapi/v20.13/reference#update-im\">(https://developers.symphony.com/restapi/v20.13/reference#update-im</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
unpin-message
Unpin any message (if present) from an existing stream.
{"x-intellij-html-description": "<html><p>Unpin any message (if present) from an existing stream.</p><a href=\"https://developers.symphony.com/restapi/reference#update-room-v3\">https://developers.symphony.com/restapi/reference#update-room-v3</a><a href=\"https://developers.symphony.com/restapi/v20.13/reference#update-im\">(https://developers.symphony.com/restapi/v20.13/reference#update-im</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-attachment
Gets one attachment and stores it locally.
{"x-intellij-html-description": "<html><p>Gets one attachment and stores it locally.</p><a href=\"https://developers.symphony.com/restapi/reference#attachment\">https://developers.symphony.com/restapi/reference#attachment</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
debug
Standard debug activity.
{"x-intellij-html-description": "<html><p>Standard debug activity.</p></html>", "type": "object", "properties": {"id": {"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}, "on": {}, "if": {"type": "string"}, "else": {"type": "object"}, "object": {"type": ["object", "string"]}}, "required": ["object"]}
swadl-schema-1.0.json
id
Activity's identifier, should be unique across workflow. As it can be used as a variable identifier only alphanumerical characters are allowed.
{"type": "string", "pattern": "^(?!variables$)([a-zA-Z][a-zA-Z0-9_]+)$"}
swadl-schema-1.0.json
if
Conditional execution of the activity based on a boolean expression.
{"type": "string"}
swadl-schema-1.0.json
else
Default execution of the activity when if conditions are used for previous activities.
{"type": "object"}
swadl-schema-1.0.json
execute-script
Executes a Groovy script.
{"x-intellij-html-description": "<html><p>Executes a Groovy script.</p></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
execute-request
Executes an HTTP request.
{"allOf": [{}, {}]}
swadl-schema-1.0.json
create-user
Creates a new end user.
{"x-intellij-html-description": "<html><p>Creates a new end user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-user-v2\">https://developers.symphony.com/restapi/reference#create-user-v2</a></html>", "allOf": [{}, {"required": ["email", "username", "firstname", "lastname", "display-name"]}]}
swadl-schema-1.0.json
update-user
Updates an existing end user.
{"x-intellij-html-description": "<html><p>Updates an existing end user.</p><a href=\"https://developers.symphony.com/restapi/reference#update-user-v2\">https://developers.symphony.com/restapi/reference#update-user-v2</a></html>", "allOf": [{}, {}, {"type": "object", "properties": {"user-id": {}}, "required": ["user-id"]}]}
swadl-schema-1.0.json
create-system-user
Creates a new service user.
{"x-intellij-html-description": "<html><p>Creates a new service user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-user-v2\">https://developers.symphony.com/restapi/reference#create-user-v2</a></html>", "allOf": [{}, {"required": ["email", "username", "display-name"]}]}
swadl-schema-1.0.json
update-system-user
Updates an existing service user.
{"x-intellij-html-description": "<html><p>Updates an existing service user.</p><a href=\"https://developers.symphony.com/restapi/reference#update-user-v2\">https://developers.symphony.com/restapi/reference#update-user-v2</a></html>", "allOf": [{}, {}, {"type": "object", "properties": {"user-id": {}}, "required": ["user-id"]}]}
swadl-schema-1.0.json
add-user-role
Adds roles to user accounts.
{"x-intellij-html-description": "<html><p>Adds a role or optional entitleable action to a user\u2019s account.</p><a href=\"https://developers.symphony.com/restapi/reference#add-role\">https://developers.symphony.com/restapi/reference#add-role</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
remove-user-role
Removes roles from user accounts.
{"x-intellij-html-description": "<html><p>Removes a role or optional entitleable action from a user\u2019s account.</p><a href=\"https://developers.symphony.com/restapi/reference#remove-role\">https://developers.symphony.com/restapi/reference#remove-role</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-user
Returns details for a particular user.
{"x-intellij-html-description": "<html><p>Returns details for a particular user.</p><a href=\"https://developers.symphony.com/restapi/reference#get-user-v2\">https://developers.symphony.com/restapi/reference#get-user-v2</a></html>", "type": "object", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-users
Returns a list of users ID, including user metadata.
{"x-intellij-html-description": "<html><p>Returns a list of users ID, including user metadata.</p><a href=\"https://developers.symphony.com/restapi/reference#users-lookup-v3\">https://developers.symphony.com/restapi/reference#users-lookup-v3</a></html>", "type": "object", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-stream
Returns information about a particular stream.
{"type": "object", "x-intellij-html-description": "<htmL><p>Returns information about a particular stream.</p><a href=\"https://developers.symphony.com/restapi/reference#stream-info-v2\">https://developers.symphony.com/restapi/reference#stream-info-v2</a></html", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-room
Returns information about a particular chat room.
{"type": "object", "x-intellij-html-description": "<html><p>Returns information about a particular chat room.</p><a href=\"https://developers.symphony.com/restapi/reference#room-info-v3\">https://developers.symphony.com/restapi/reference#room-info-v3</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-message
Returns a message found by id.
{"type": "object", "x-intellij-html-description": "<html><p>Returns a message found by id.</p><a href=\"https://developers.symphony.com/restapi/reference#get-message-v1\">https://developers.symphony.com/restapi/reference#get-message-v1</html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-stream-members
Returns a list of all the current members of a stream (IM, MIM, or chatroom).
{"type": "object", "x-intellij-html-description": "<html><p>Returns a list of all the current members of a stream (IM, MIM, or chatroom).</p><a href=\"https://developers.symphony.com/restapi/reference#stream-members\">https://developers.symphony.com/restapi/reference#stream-members</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-room-members
Lists the current members of an existing room.
{"type": "object", "x-intellij-html-description": "<html><p>Lists the current members of an existing room.</p><a href=\"https://developers.symphony.com/restapi/reference#room-members\">https://developers.symphony.com/restapi/reference#room-members</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-user-streams
Returns a list of all the streams of which the requesting user is a member, sorted by creation date (ascending - oldest to newest).
{"type": "object", "x-intellij-html-description": "<html><p>Returns a list of all the streams of which the requesting user is a member, sorted by creation date (ascending - oldest to newest).</p><a href=\"https://developers.symphony.com/restapi/reference#list-user-streams\">https://developers.symphony.com/restapi/reference#list-user-streams</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-streams
Returns a list of all the streams (IMs, MIMs, and chatrooms) for the calling user's company, sorted by creation date (ascending – oldest to newest).
{"type": "object", "x-intellij-html-description": "<html><p>Returns a list of all the streams (IMs, MIMs, and chatrooms) for the calling user's company, sorted by creation date (ascending \u2013 oldest to newest).</p><a href\"https://developers.symphony.com/restapi/reference#list-streams-for-enterprise-v2\">https://developers.symphony.com/restapi/reference#list-streams-for-enterprise-v2</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-connection
Get one connection status.
{"type": "object", "x-intellij-html-description": "<html><p>Get one connection status.</p><a href=\"https://developers.symphony.com/restapi/reference#get-connection\">https://developers.symphony.com/restapi/reference#get-connection</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
create-connection
Send a connection request to another user.
{"type": "object", "x-intellij-html-description": "<html><p>Send a connection request to another user.</p><a href=\"https://developers.symphony.com/restapi/reference#create-connection\">https://developers.symphony.com/restapi/reference#create-connection</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
accept-connection
Accept the connection request for a requesting user.
{"type": "object", "x-intellij-html-description": "<html><p>Accept the connection request for a requesting user.</p><a href=\"https://developers.symphony.com/restapi/reference#accepted-connection\">https://developers.symphony.com/restapi/reference#accepted-connection</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
reject-connection
Reject the connection request from a requesting user.
{"type": "object", "x-intellij-html-description": "<html><p>Reject the connection request from a requesting user.</p><a href=\"https://developers.symphony.com/restapi/reference#reject-connection\">https://developers.symphony.com/restapi/reference#reject-connection</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
remove-connection
Remove a connection with a user.
{"type": "object", "x-intellij-html-description": "<html><p>Remove a connection with a user.</p><a href=\"https://developers.symphony.com/restapi/reference#remove-connection\">https://developers.symphony.com/restapi/reference#remove-connection</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-rooms
Search for rooms, querying name, description, and specified keywords.
{"type": "object", "x-intellij-html-description": "<html><p>Search for rooms, querying name, description, and specified keywords.</p><a href=\"https://developers.symphony.com/restapi/reference#search-rooms-v3\">https://developers.symphony.com/restapi/reference#search-rooms-v3</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-messages
Get messages from an existing stream (IM, MIM, or chatroom). Additionally returns any attachments associated with the message.
{"type": "object", "x-intellij-html-description": "<html><p>Get messages from an existing stream (IM, MIM, or chatroom).\nAdditionally returns any attachments associated with the message.</p><a href=\"https://developers.symphony.com/restapi/reference#messages-v4\">https://developers.symphony.com/restapi/reference#messages-v4</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-connections
Get one or multiple connections statuses
{"type": "object", "x-intellij-html-description": "<html><p>Get one or multiple connections statuses</p><a href=\"https://developers.symphony.com/restapi/reference#list-connections\">https://developers.symphony.com/restapi/reference#list-connections</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
create-group
Create a group (distribution list)
{"type": "object", "x-intellij-html-description": "<html><p>Create a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/insertgroup\">https://developers.symphony.com/restapi/reference/insertgroup</a></html>", "allOf": [{}, {}], "required": ["name", "owner", "members", "profile"]}
swadl-schema-1.0.json
update-group
Update a group (distribution list)
{"type": "object", "x-intellij-html-description": "<html><p>Update a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/updategroup\">https://developers.symphony.com/restapi/reference/updategroup</a></html>", "allOf": [{}, {}, {"type": "object"}]}
swadl-schema-1.0.json
get-group
Retrieve a group (distribution list)
{"type": "object", "x-intellij-html-description": "<html><p>Retrieve a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/getgroup\">https://developers.symphony.com/restapi/reference/getgroup</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
get-groups
Retrieve groups of specified type (distribution list)
{"type": "object", "x-intellij-html-description": "<html><p>Retrieve groups of specified type (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/listgroups\">https://developers.symphony.com/restapi/reference/listgroups</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
add-group-member
Add members to a group (distribution list)
{"type": "object", "x-intellij-html-description": "<html><p>Add members to a group (distribution list)</p><a href=\"https://developers.symphony.com/restapi/reference/addmembertogroup\">https://developers.symphony.com/restapi/reference/addmembertogroup</a></html>", "allOf": [{}, {}]}
swadl-schema-1.0.json
local
If true then a local DB search will be performed and only local pod users will be returned. If absent or false then a directory search will be performed and users from other pods who are visible to the calling user will also be returned.
{"type": ["boolean", "string"], "default": false}
swadl-schema-1.0.json
active
If true, it searches for active users only. If false, it searches for inactive users only. If not set, it searches for all users regardless of their status.
{"type": ["boolean", "string"]}
swadl-schema-1.0.json
on
Events that can trigger the activity execution.
{"x-intellij-html-description": "<html><p>Events that can trigger the activity execution.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events\">List of real-time events: https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events</a></html>", "type": "object", "allOf": [{"type": "object", "properties": {"timeout": {"type": "string", "pattern": "^P(?!$)(\\d+(?:\\.\\d+)?Y)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?W)?(\\d+(?:\\.\\d+)?D)?(T(?=\\d)(\\d+(?:\\.\\d+)?H)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?S)?)?$"}}}, {"oneOf": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}]}]}
swadl-schema-1.0.json
timeout
Timeout while waiting for form-replied events, expressed as an ISO 8601 duration. Default value is 24 hours.
{"type": "string", "pattern": "^P(?!$)(\\d+(?:\\.\\d+)?Y)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?W)?(\\d+(?:\\.\\d+)?D)?(T(?=\\d)(\\d+(?:\\.\\d+)?H)?(\\d+(?:\\.\\d+)?M)?(\\d+(?:\\.\\d+)?S)?)?$"}
swadl-schema-1.0.json
form-replied
Generated when a user replies to a bot message that contains an interactive form with UX components such as text fields, radio buttons, checkboxes, person selectors and more.
{"x-intellij-html-description": "<html><p>Generated when a user replies to a bot message that contains an interactive form with UX components such as text fields, radio buttons, checkboxes, person selectors and more. Please refer to <a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/symphony-elements\">Symphony Elements.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#symphony-elements-action\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#symphony-elements-action</a></html>"}
swadl-schema-1.0.json
request-received
Generated when an HTTP request is received in order to trigger a workflow.
{}
swadl-schema-1.0.json
message-received
Generated when a message is sent in an IM, MIM, or chatroom of which the workflow bot is a member, including messages sent by the user him/herself.
{"x-intellij-html-description": "<html><p>Generated when a message is sent in an IM, MIM, or chatroom of which the workflow bot is a member, including messages sent by the user him/herself.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#message-sent\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#message-sent</a></html>"}
swadl-schema-1.0.json
message-suppressed
Generated when messages are suppressed.
{"x-intellij-html-description": "<html><p>Generated when messages are suppressed.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#messages-suppressed\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#messages-suppressed</a></html>"}
swadl-schema-1.0.json
post-shared
Generated when either the workflow bot shares a wall post written by another user or another user shares a wall post written by the workflow bot.
{"x-intellij-html-description": "<html><p>Generated when either:<li>The workflow bot shares a wall post written by another user.</li><li>Another user shares a wall post written by the workflow bot.</li></p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#shared-wall-posts\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#shared-wall-posts</a></html>"}
swadl-schema-1.0.json
im-created
Generated when an IM or MIM is created with the workflow bot as a member, initiated either by the workflow bot or another user.
{"x-intellij-html-description": "<html><p>Generated when an IM or MIM is created with the workflow bot as a member, initiated either by the workflow bot or another user.</p><a href=\"https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#im-mim-created\">https://docs.developers.symphony.com/building-bots-on-symphony/datafeed/real-time-events#im-mim-created</a></html>"}