Slite · Schema

Group

DocumentationKnowledge BaseCollaborationNotesTeamAsynchronous WorkAISearch

Properties

Name Type Description
description string Description of the group
name string Group name
id string Group ID
View JSON Schema on GitHub

JSON Schema

Group.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/slite/main/json-schema/Group.json",
  "title": "Group",
  "properties": {
    "description": {
      "type": "string",
      "description": "Description of the group"
    },
    "name": {
      "type": "string",
      "description": "Group name"
    },
    "id": {
      "type": "string",
      "description": "Group ID"
    }
  },
  "required": [
    "description",
    "name",
    "id"
  ],
  "type": "object"
}