freshworks · Schema

Team

Properties

Name Type Description
id integer Unique ID of the team.
name string Name of the team.
description string Description of the team.
user_ids array IDs of users in the team.
created_at string Timestamp when created.
updated_at string Timestamp when last updated.
View JSON Schema on GitHub

JSON Schema

freshworks-team-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Team",
  "title": "Team",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique ID of the team."
    },
    "name": {
      "type": "string",
      "description": "Name of the team."
    },
    "description": {
      "type": "string",
      "description": "Description of the team."
    },
    "user_ids": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "IDs of users in the team."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when last updated."
    }
  }
}