freshworks · Schema

TeamCreate

Properties

Name Type Description
name string Name of the team.
description string Description.
user_ids array IDs of users to include.
View JSON Schema on GitHub

JSON Schema

freshworks-teamcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TeamCreate",
  "title": "TeamCreate",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the team."
    },
    "description": {
      "type": "string",
      "description": "Description."
    },
    "user_ids": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "IDs of users to include."
    }
  }
}