Asana · Schema

SectionRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
name string The text to be displayed as the section name. This cannot be an empty string.
insert_before string An existing section within this project before which the added section should be inserted. Cannot be provided together with insert_after.
insert_after string An existing section within this project after which the added section should be inserted. Cannot be provided together with insert_before.
View JSON Schema on GitHub

JSON Schema

asana-sectionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SectionRequest",
  "title": "SectionRequest",
  "type": "object",
  "properties": {
    "name": {
      "description": "The text to be displayed as the section name. This cannot be an empty string.",
      "type": "string",
      "example": "Next Actions"
    },
    "insert_before": {
      "description": "An existing section within this project before which the added section should be inserted. Cannot be provided together with insert_after.",
      "type": "string",
      "example": "86420"
    },
    "insert_after": {
      "description": "An existing section within this project after which the added section should be inserted. Cannot be provided together with insert_before.",
      "type": "string",
      "example": "987654"
    }
  },
  "required": [
    "name"
  ]
}