{
  "$id": "https://intentschema.org/profiles/com.microsoft.teams/communication.chat.channel.create.v1.json",
  "id": "org.intentschema.communication.chat.channel.create.v1@com.microsoft.teams.v1",
  "pins": "https://intentschema.org/intents/communication/chat/channel/create/v1.json",
  "title": "Teams channel create profile",
  "description": "Microsoft Teams profile for channel create.",
  "constraints": {
    "properties": {
      "target": {
        "properties": {
          "system": {
            "const": "ms_teams"
          }
        },
        "required": [
          "system"
        ]
      },
      "ms_teams": {
        "type": "object",
        "properties": {
          "membershipType": {
            "enum": [
              "standard",
              "private",
              "shared"
            ]
          }
        }
      }
    }
  },
  "api": {
    "method": "POST",
    "path": "/v1.0/teams/{teamId}/channels",
    "scopes": [
      "Channel.Create"
    ],
    "docs": "https://learn.microsoft.com/en-us/graph/api/channel-post",
    "params": {
      "object.name": "displayName",
      "object.private": "membershipType: private (vs standard)",
      "object.topic": "description",
      "ms_teams.membershipType": "membershipType"
    },
    "base_url": "https://graph.microsoft.com"
  }
}
