Asana · Schema

EnumOption

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
gid string
resource_type string
name string
enabled boolean
color string
View JSON Schema on GitHub

JSON Schema

asana-enumoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnumOption",
  "title": "EnumOption",
  "type": "object",
  "properties": {
    "gid": {
      "type": "string",
      "readOnly": true,
      "example": "12345"
    },
    "resource_type": {
      "type": "string",
      "readOnly": true,
      "example": "enum_option"
    },
    "name": {
      "type": "string",
      "example": "Low"
    },
    "enabled": {
      "type": "boolean",
      "example": true
    },
    "color": {
      "type": "string",
      "example": "blue"
    }
  }
}