Asana · Schema

EnumOptionRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
name string
color string
enabled boolean
insert_before string An existing enum option within this custom field before which the new enum option should be inserted.
insert_after string An existing enum option within this custom field after which the new enum option should be inserted.
View JSON Schema on GitHub

JSON Schema

asana-enumoptionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnumOptionRequest",
  "title": "EnumOptionRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Low"
    },
    "color": {
      "type": "string",
      "example": "blue"
    },
    "enabled": {
      "type": "boolean",
      "example": true
    },
    "insert_before": {
      "type": "string",
      "description": "An existing enum option within this custom field before which the new enum option should be inserted."
    },
    "insert_after": {
      "type": "string",
      "description": "An existing enum option within this custom field after which the new enum option should be inserted."
    }
  }
}