Asana · Schema

CreateMembershipRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
member string
parent string
role string
is_active boolean
View JSON Schema on GitHub

JSON Schema

asana-createmembershiprequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateMembershipRequest",
  "title": "CreateMembershipRequest",
  "type": "object",
  "properties": {
    "member": {
      "type": "string",
      "example": "12345"
    },
    "parent": {
      "type": "string",
      "example": "12345"
    },
    "role": {
      "type": "string",
      "enum": [
        "editor",
        "commenter",
        "viewer"
      ]
    },
    "is_active": {
      "type": "boolean"
    }
  }
}