Asana · Schema

ProjectSectionInsertRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
section string The section to reorder.
before_section string Insert the given section immediately before the section specified by this parameter.
after_section string Insert the given section immediately after the section specified by this parameter.
View JSON Schema on GitHub

JSON Schema

asana-projectsectioninsertrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectSectionInsertRequest",
  "title": "ProjectSectionInsertRequest",
  "type": "object",
  "properties": {
    "section": {
      "description": "The section to reorder.",
      "type": "string",
      "example": "321654"
    },
    "before_section": {
      "description": "Insert the given section immediately before the section specified by this parameter.",
      "type": "string",
      "example": "86420"
    },
    "after_section": {
      "description": "Insert the given section immediately after the section specified by this parameter.",
      "type": "string",
      "example": "987654"
    }
  },
  "required": [
    "section"
  ]
}