messagebird · Schema

Group

Properties

Name Type Description
id string The unique identifier of the group.
href string The URL of the group resource.
name string The name of the group.
contacts object Links to the contacts in the group.
createdDatetime string The date and time when the group was created.
updatedDatetime string The date and time when the group was last updated.
View JSON Schema on GitHub

JSON Schema

messagebird-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the group."
    },
    "href": {
      "type": "string",
      "format": "uri",
      "description": "The URL of the group resource."
    },
    "name": {
      "type": "string",
      "description": "The name of the group."
    },
    "contacts": {
      "type": "object",
      "description": "Links to the contacts in the group.",
      "properties": {
        "href": {
          "type": "string",
          "format": "uri"
        },
        "totalCount": {
          "type": "integer"
        }
      }
    },
    "createdDatetime": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time when the group was created."
    },
    "updatedDatetime": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time when the group was last updated."
    }
  }
}