diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 162037b697..8062389ced 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -38987,6 +38987,19 @@ "description": "Either `true` to enable the wiki for this repository or `false` to disable it.", "default": true }, + "has_pull_requests": { + "type": "boolean", + "description": "Either `true` to allow pull requests for this repository or `false` to prevent pull requests.", + "default": true + }, + "pull_request_creation_policy": { + "type": "string", + "description": "The policy that controls who can create pull requests for this repository: `all` or `collaborators_only`.", + "enum": [ + "all", + "collaborators_only" + ] + }, "is_template": { "type": "boolean", "description": "Either `true` to make this repo available as a template repository or `false` to prevent it.", @@ -61455,9 +61468,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -62481,9 +62500,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -63436,9 +63461,16 @@ { "type": "number", "description": "The value to set for number fields" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "description": "The value to set for multi_select fields (array of option names)" } ], - "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For date fields: provide an ISO 8601 date string", + "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For multi_select fields: provide an array of option names (must match existing options)\n- For date fields: provide an ISO 8601 date string", "examples": [ "Critical" ] @@ -119722,6 +119754,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -119793,6 +119826,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -128460,6 +128532,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -128472,7 +128545,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -128576,6 +128649,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -128588,7 +128662,7 @@ ] }, "options": { - "description": "Options for single select fields. Required when data_type is 'single_select'.", + "description": "Options for select fields. Required when data_type is 'single_select' or 'multi_select'.", "type": [ "array", "null" @@ -128662,7 +128736,7 @@ ] }, "options": { - "description": "Options for single select fields. Only applicable when updating single_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", + "description": "Options for select fields. Only applicable when updating single_select or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", "type": "array", "items": { "type": "object", @@ -198527,6 +198601,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -198589,6 +198664,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -198655,6 +198761,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the previously selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The previously selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -198724,6 +198861,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -198786,6 +198924,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -314402,6 +314571,32 @@ ], "created_at": "2024-12-11T14:39:09Z", "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 3, + "node_id": "IFMS_kwDNAd3NAZt", + "name": "Categories", + "description": "Issue categories", + "data_type": "multi_select", + "options": [ + { + "id": 4, + "name": "Frontend", + "color": "blue" + }, + { + "id": 5, + "name": "Backend", + "color": "green" + }, + { + "id": 6, + "name": "Infrastructure", + "color": "purple" + } + ], + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" } ] }, @@ -328894,6 +329089,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] }, diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 93d04928d6..859672e093 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -28748,6 +28748,18 @@ paths: description: Either `true` to enable the wiki for this repository or `false` to disable it. default: true + has_pull_requests: + type: boolean + description: Either `true` to allow pull requests for this repository + or `false` to prevent pull requests. + default: true + pull_request_creation_policy: + type: string + description: 'The policy that controls who can create pull requests + for this repository: `all` or `collaborators_only`.' + enum: + - all + - collaborators_only is_template: type: boolean description: Either `true` to make this repo available as a template @@ -45278,7 +45290,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -46001,7 +46017,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -46674,11 +46694,17 @@ paths: date fields - type: number description: The value to set for number fields + - type: array + items: + type: string + description: The value to set for multi_select fields (array + of option names) description: |- The value to set for the field. The type depends on the field's data type: - For text fields: provide a string value - For single_select fields: provide the option name as a string (must match an existing option) - For number fields: provide a numeric value + - For multi_select fields: provide an array of option names (must match existing options) - For date fields: provide an ISO 8601 date string examples: - Critical @@ -87121,6 +87147,7 @@ components: enum: - text - single_select + - multi_select - number - date examples: @@ -87169,6 +87196,34 @@ components: - id - name - color + multi_select_options: + description: Details about the selected options + type: + - array + - 'null' + items: + type: object + properties: + id: + description: Unique identifier for the option. + type: integer + format: int64 + examples: + - 1 + name: + description: The name of the option + type: string + examples: + - High + color: + description: The color of the option + type: string + examples: + - red + required: + - id + - name + - color required: - issue_field_id - node_id @@ -93616,6 +93671,7 @@ components: - text - date - single_select + - multi_select - number visibility: type: string @@ -93626,7 +93682,7 @@ components: - organization_members_only - all options: - description: Available options for single select fields. + description: Available options for single select and multi select fields. type: - array - 'null' @@ -93706,6 +93762,7 @@ components: - text - date - single_select + - multi_select - number visibility: description: The visibility of the issue field. Can be `organization_members_only` @@ -93717,8 +93774,8 @@ components: - organization_members_only - all options: - description: Options for single select fields. Required when data_type is - 'single_select'. + description: Options for select fields. Required when data_type is 'single_select' + or 'multi_select'. type: - array - 'null' @@ -93776,8 +93833,8 @@ components: - organization_members_only - all options: - description: Options for single select fields. Only applicable when updating - single_select fields. When provided, this array **replaces** the entire + description: Options for select fields. Only applicable when updating single_select + or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may @@ -144720,6 +144777,7 @@ components: - text - date - single_select + - multi_select - number required: - id @@ -144764,6 +144822,29 @@ components: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present for multi_select + field types. + options: + type: array + description: The selected option details. Present for multi_select field + types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id changes: @@ -144813,6 +144894,29 @@ components: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the previously selected options. + Present for multi_select field types. + options: + type: array + description: The previously selected option details. Present + for multi_select field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id required: @@ -144860,6 +144964,7 @@ components: - text - date - single_select + - multi_select - number required: - id @@ -144903,6 +145008,29 @@ components: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present for multi_select + field types. + options: + type: array + description: The selected option details. Present for multi_select field + types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id organization: @@ -232433,6 +232561,23 @@ components: color: green created_at: '2024-12-11T14:39:09Z' updated_at: '2024-12-11T14:39:09Z' + - id: 3 + node_id: IFMS_kwDNAd3NAZt + name: Categories + description: Issue categories + data_type: multi_select + options: + - id: 4 + name: Frontend + color: blue + - id: 5 + name: Backend + color: green + - id: 6 + name: Infrastructure + color: purple + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' issue-field: value: id: 512 @@ -244801,6 +244946,17 @@ components: node_id: IFD_DUEDATE data_type: date value: '2025-12-25' + - issue_field_id: 5 + node_id: IFMS_LABELS + data_type: multi_select + value: Frontend,Backend + multi_select_options: + - id: 1 + name: Frontend + color: blue + - id: 2 + name: Backend + color: green label-items: value: - id: 208045946 diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index e0cfe82d14..a339324c55 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -38938,6 +38938,19 @@ "description": "Either `true` to enable the wiki for this repository or `false` to disable it.", "default": true }, + "has_pull_requests": { + "type": "boolean", + "description": "Either `true` to allow pull requests for this repository or `false` to prevent pull requests.", + "default": true + }, + "pull_request_creation_policy": { + "type": "string", + "description": "The policy that controls who can create pull requests for this repository: `all` or `collaborators_only`.", + "enum": [ + "all", + "collaborators_only" + ] + }, "is_template": { "type": "boolean", "description": "Either `true` to make this repo available as a template repository or `false` to prevent it.", @@ -61373,9 +61386,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -62392,9 +62411,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -63347,9 +63372,16 @@ { "type": "number", "description": "The value to set for number fields" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "description": "The value to set for multi_select fields (array of option names)" } ], - "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For date fields: provide an ISO 8601 date string", + "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For multi_select fields: provide an array of option names (must match existing options)\n- For date fields: provide an ISO 8601 date string", "examples": [ "Critical" ] @@ -119514,6 +119546,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -119585,6 +119618,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -127896,6 +127968,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -127908,7 +127981,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -128012,6 +128085,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -128024,7 +128098,7 @@ ] }, "options": { - "description": "Options for single select fields. Required when data_type is 'single_select'.", + "description": "Options for select fields. Required when data_type is 'single_select' or 'multi_select'.", "type": [ "array", "null" @@ -128098,7 +128172,7 @@ ] }, "options": { - "description": "Options for single select fields. Only applicable when updating single_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", + "description": "Options for select fields. Only applicable when updating single_select or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", "type": "array", "items": { "type": "object", @@ -198054,6 +198128,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -198116,6 +198191,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -198182,6 +198288,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the previously selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The previously selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -198251,6 +198388,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -198313,6 +198451,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -313561,6 +313730,32 @@ ], "created_at": "2024-12-11T14:39:09Z", "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 3, + "node_id": "IFMS_kwDNAd3NAZt", + "name": "Categories", + "description": "Issue categories", + "data_type": "multi_select", + "options": [ + { + "id": 4, + "name": "Frontend", + "color": "blue" + }, + { + "id": 5, + "name": "Backend", + "color": "green" + }, + { + "id": 6, + "name": "Infrastructure", + "color": "purple" + } + ], + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" } ] }, @@ -328004,6 +328199,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] }, diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index a949297f3b..79481b2c1e 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -28710,6 +28710,18 @@ paths: description: Either `true` to enable the wiki for this repository or `false` to disable it. default: true + has_pull_requests: + type: boolean + description: Either `true` to allow pull requests for this repository + or `false` to prevent pull requests. + default: true + pull_request_creation_policy: + type: string + description: 'The policy that controls who can create pull requests + for this repository: `all` or `collaborators_only`.' + enum: + - all + - collaborators_only is_template: type: boolean description: Either `true` to make this repo available as a template @@ -45209,7 +45221,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -45926,7 +45942,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -46599,11 +46619,17 @@ paths: date fields - type: number description: The value to set for number fields + - type: array + items: + type: string + description: The value to set for multi_select fields (array + of option names) description: |- The value to set for the field. The type depends on the field's data type: - For text fields: provide a string value - For single_select fields: provide the option name as a string (must match an existing option) - For number fields: provide a numeric value + - For multi_select fields: provide an array of option names (must match existing options) - For date fields: provide an ISO 8601 date string examples: - Critical @@ -86950,6 +86976,7 @@ components: enum: - text - single_select + - multi_select - number - date examples: @@ -86998,6 +87025,34 @@ components: - id - name - color + multi_select_options: + description: Details about the selected options + type: + - array + - 'null' + items: + type: object + properties: + id: + description: Unique identifier for the option. + type: integer + format: int64 + examples: + - 1 + name: + description: The name of the option + type: string + examples: + - High + color: + description: The color of the option + type: string + examples: + - red + required: + - id + - name + - color required: - issue_field_id - node_id @@ -93197,6 +93252,7 @@ components: - text - date - single_select + - multi_select - number visibility: type: string @@ -93207,7 +93263,7 @@ components: - organization_members_only - all options: - description: Available options for single select fields. + description: Available options for single select and multi select fields. type: - array - 'null' @@ -93287,6 +93343,7 @@ components: - text - date - single_select + - multi_select - number visibility: description: The visibility of the issue field. Can be `organization_members_only` @@ -93298,8 +93355,8 @@ components: - organization_members_only - all options: - description: Options for single select fields. Required when data_type is - 'single_select'. + description: Options for select fields. Required when data_type is 'single_select' + or 'multi_select'. type: - array - 'null' @@ -93357,8 +93414,8 @@ components: - organization_members_only - all options: - description: Options for single select fields. Only applicable when updating - single_select fields. When provided, this array **replaces** the entire + description: Options for select fields. Only applicable when updating single_select + or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may @@ -144376,6 +144433,7 @@ components: - text - date - single_select + - multi_select - number required: - id @@ -144420,6 +144478,29 @@ components: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present for multi_select + field types. + options: + type: array + description: The selected option details. Present for multi_select field + types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id changes: @@ -144469,6 +144550,29 @@ components: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the previously selected options. + Present for multi_select field types. + options: + type: array + description: The previously selected option details. Present + for multi_select field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id required: @@ -144516,6 +144620,7 @@ components: - text - date - single_select + - multi_select - number required: - id @@ -144559,6 +144664,29 @@ components: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present for multi_select + field types. + options: + type: array + description: The selected option details. Present for multi_select field + types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id organization: @@ -231738,6 +231866,23 @@ components: color: green created_at: '2024-12-11T14:39:09Z' updated_at: '2024-12-11T14:39:09Z' + - id: 3 + node_id: IFMS_kwDNAd3NAZt + name: Categories + description: Issue categories + data_type: multi_select + options: + - id: 4 + name: Frontend + color: blue + - id: 5 + name: Backend + color: green + - id: 6 + name: Infrastructure + color: purple + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' issue-field: value: id: 512 @@ -244060,6 +244205,17 @@ components: node_id: IFD_DUEDATE data_type: date value: '2025-12-25' + - issue_field_id: 5 + node_id: IFMS_LABELS + data_type: multi_select + value: Frontend,Backend + multi_select_options: + - id: 1 + name: Frontend + color: blue + - id: 2 + name: Backend + color: green label-items: value: - id: 208045946 diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index d96cb48b25..9ade3675ae 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -39199,6 +39199,19 @@ "description": "Either `true` to enable the wiki for this repository or `false` to disable it.", "default": true }, + "has_pull_requests": { + "type": "boolean", + "description": "Either `true` to allow pull requests for this repository or `false` to prevent pull requests.", + "default": true + }, + "pull_request_creation_policy": { + "type": "string", + "description": "The policy that controls who can create pull requests for this repository: `all` or `collaborators_only`.", + "enum": [ + "all", + "collaborators_only" + ] + }, "is_template": { "type": "boolean", "description": "Either `true` to make this repo available as a template repository or `false` to prevent it.", @@ -61724,9 +61737,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -62769,9 +62788,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -63743,9 +63768,16 @@ { "type": "number", "description": "The value to set for number fields" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "description": "The value to set for multi_select fields (array of option names)" } ], - "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For date fields: provide an ISO 8601 date string", + "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For multi_select fields: provide an array of option names (must match existing options)\n- For date fields: provide an ISO 8601 date string", "examples": [ "Critical" ] @@ -120333,6 +120365,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -120404,6 +120437,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -129212,6 +129284,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -129224,7 +129297,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -129328,6 +129401,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -129340,7 +129414,7 @@ ] }, "options": { - "description": "Options for single select fields. Required when data_type is 'single_select'.", + "description": "Options for select fields. Required when data_type is 'single_select' or 'multi_select'.", "type": [ "array", "null" @@ -129414,7 +129488,7 @@ ] }, "options": { - "description": "Options for single select fields. Only applicable when updating single_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", + "description": "Options for select fields. Only applicable when updating single_select or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", "type": "array", "items": { "type": "object", @@ -199799,6 +199873,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -199861,6 +199936,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -199927,6 +200033,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the previously selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The previously selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -199996,6 +200133,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -200058,6 +200196,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -316338,6 +316507,32 @@ ], "created_at": "2024-12-11T14:39:09Z", "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 3, + "node_id": "IFMS_kwDNAd3NAZt", + "name": "Categories", + "description": "Issue categories", + "data_type": "multi_select", + "options": [ + { + "id": 4, + "name": "Frontend", + "color": "blue" + }, + { + "id": 5, + "name": "Backend", + "color": "green" + }, + { + "id": 6, + "name": "Infrastructure", + "color": "purple" + } + ], + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" } ] }, @@ -330902,6 +331097,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] }, diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index b87530c366..f1404ab6b2 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -28861,6 +28861,18 @@ paths: description: Either `true` to enable the wiki for this repository or `false` to disable it. default: true + has_pull_requests: + type: boolean + description: Either `true` to allow pull requests for this repository + or `false` to prevent pull requests. + default: true + pull_request_creation_policy: + type: string + description: 'The policy that controls who can create pull requests + for this repository: `all` or `collaborators_only`.' + enum: + - all + - collaborators_only is_template: type: boolean description: Either `true` to make this repo available as a template @@ -45446,7 +45458,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -46179,7 +46195,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -46862,11 +46882,17 @@ paths: date fields - type: number description: The value to set for number fields + - type: array + items: + type: string + description: The value to set for multi_select fields (array + of option names) description: |- The value to set for the field. The type depends on the field's data type: - For text fields: provide a string value - For single_select fields: provide the option name as a string (must match an existing option) - For number fields: provide a numeric value + - For multi_select fields: provide an array of option names (must match existing options) - For date fields: provide an ISO 8601 date string examples: - Critical @@ -87519,6 +87545,7 @@ components: enum: - text - single_select + - multi_select - number - date examples: @@ -87567,6 +87594,34 @@ components: - id - name - color + multi_select_options: + description: Details about the selected options + type: + - array + - 'null' + items: + type: object + properties: + id: + description: Unique identifier for the option. + type: integer + format: int64 + examples: + - 1 + name: + description: The name of the option + type: string + examples: + - High + color: + description: The color of the option + type: string + examples: + - red + required: + - id + - name + - color required: - issue_field_id - node_id @@ -94106,6 +94161,7 @@ components: - text - date - single_select + - multi_select - number visibility: type: string @@ -94116,7 +94172,7 @@ components: - organization_members_only - all options: - description: Available options for single select fields. + description: Available options for single select and multi select fields. type: - array - 'null' @@ -94196,6 +94252,7 @@ components: - text - date - single_select + - multi_select - number visibility: description: The visibility of the issue field. Can be `organization_members_only` @@ -94207,8 +94264,8 @@ components: - organization_members_only - all options: - description: Options for single select fields. Required when data_type is - 'single_select'. + description: Options for select fields. Required when data_type is 'single_select' + or 'multi_select'. type: - array - 'null' @@ -94266,8 +94323,8 @@ components: - organization_members_only - all options: - description: Options for single select fields. Only applicable when updating - single_select fields. When provided, this array **replaces** the entire + description: Options for select fields. Only applicable when updating single_select + or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may @@ -145637,6 +145694,7 @@ components: - text - date - single_select + - multi_select - number required: - id @@ -145681,6 +145739,29 @@ components: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present for multi_select + field types. + options: + type: array + description: The selected option details. Present for multi_select field + types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id changes: @@ -145730,6 +145811,29 @@ components: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the previously selected options. + Present for multi_select field types. + options: + type: array + description: The previously selected option details. Present + for multi_select field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id required: @@ -145777,6 +145881,7 @@ components: - text - date - single_select + - multi_select - number required: - id @@ -145820,6 +145925,29 @@ components: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present for multi_select + field types. + options: + type: array + description: The selected option details. Present for multi_select field + types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id organization: @@ -233683,6 +233811,23 @@ components: color: green created_at: '2024-12-11T14:39:09Z' updated_at: '2024-12-11T14:39:09Z' + - id: 3 + node_id: IFMS_kwDNAd3NAZt + name: Categories + description: Issue categories + data_type: multi_select + options: + - id: 4 + name: Frontend + color: blue + - id: 5 + name: Backend + color: green + - id: 6 + name: Infrastructure + color: purple + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' issue-field: value: id: 512 @@ -246087,6 +246232,17 @@ components: node_id: IFD_DUEDATE data_type: date value: '2025-12-25' + - issue_field_id: 5 + node_id: IFMS_LABELS + data_type: multi_select + value: Frontend,Backend + multi_select_options: + - id: 1 + name: Frontend + color: blue + - id: 2 + name: Backend + color: green label-items: value: - id: 208045946 diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 14bc20def0..ecb323ad5c 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -39621,6 +39621,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -39692,6 +39693,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -43975,6 +44015,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -44046,6 +44087,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -66447,6 +66527,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -66518,6 +66599,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -74873,6 +74993,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -74944,6 +75065,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -79227,6 +79387,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -79298,6 +79459,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -156994,6 +157194,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -157065,6 +157266,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -161348,6 +161588,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -161419,6 +161660,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -173887,6 +174167,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -173899,7 +174180,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -174020,6 +174301,32 @@ ], "created_at": "2024-12-11T14:39:09Z", "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 3, + "node_id": "IFMS_kwDNAd3NAZt", + "name": "Categories", + "description": "Issue categories", + "data_type": "multi_select", + "options": [ + { + "id": 4, + "name": "Frontend", + "color": "blue" + }, + { + "id": 5, + "name": "Backend", + "color": "green" + }, + { + "id": 6, + "name": "Infrastructure", + "color": "purple" + } + ], + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" } ] } @@ -174108,6 +174415,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -174120,7 +174428,7 @@ ] }, "options": { - "description": "Options for single select fields. Required when data_type is 'single_select'.", + "description": "Options for select fields. Required when data_type is 'single_select' or 'multi_select'.", "type": [ "array", "null" @@ -174239,6 +174547,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -174251,7 +174560,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -174503,7 +174812,7 @@ ] }, "options": { - "description": "Options for single select fields. Only applicable when updating single_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", + "description": "Options for select fields. Only applicable when updating single_select or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", "type": "array", "items": { "type": "object", @@ -174638,6 +174947,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -174650,7 +174960,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -179568,6 +179878,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -179639,6 +179950,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -211742,6 +212092,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -211813,6 +212164,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -223309,6 +223699,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -223380,6 +223771,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -276270,6 +276700,19 @@ "description": "Either `true` to enable the wiki for this repository or `false` to disable it.", "default": true }, + "has_pull_requests": { + "type": "boolean", + "description": "Either `true` to allow pull requests for this repository or `false` to prevent pull requests.", + "default": true + }, + "pull_request_creation_policy": { + "type": "string", + "description": "The policy that controls who can create pull requests for this repository: `all` or `collaborators_only`.", + "enum": [ + "all", + "collaborators_only" + ] + }, "is_template": { "type": "boolean", "description": "Either `true` to make this repo available as a template repository or `false` to prevent it.", @@ -420458,6 +420901,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -420529,6 +420973,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -424812,6 +425295,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -424883,6 +425367,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -452990,6 +453513,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -453061,6 +453585,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -453541,9 +454104,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -457347,6 +457916,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -457418,6 +457988,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -467845,6 +468454,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -467916,6 +468526,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -473775,6 +474424,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -473846,6 +474496,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -479501,6 +480190,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -479572,6 +480262,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -480257,9 +480986,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -484061,6 +484796,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -484132,6 +484868,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -488372,6 +489147,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -488443,6 +489219,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -492480,6 +493295,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -492551,6 +493367,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -498978,6 +499833,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -499049,6 +499905,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -503173,6 +504068,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -503244,6 +504140,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -507452,6 +508387,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -507523,6 +508459,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -511753,6 +512728,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -511824,6 +512800,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -523771,6 +524786,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -523842,6 +524858,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -523883,6 +524938,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -524053,9 +525126,16 @@ { "type": "number", "description": "The value to set for number fields" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "description": "The value to set for multi_select fields (array of option names)" } ], - "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For date fields: provide an ISO 8601 date string", + "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For multi_select fields: provide an array of option names (must match existing options)\n- For date fields: provide an ISO 8601 date string", "examples": [ "Critical" ] @@ -524139,6 +525219,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -524210,6 +525291,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -524251,6 +525371,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -524638,6 +525776,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -524709,6 +525848,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -524750,6 +525928,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -530703,6 +531899,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -530774,6 +531971,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -536051,6 +537287,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -536122,6 +537359,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -540256,6 +541532,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -540327,6 +541604,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -544429,6 +545745,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -544500,6 +545817,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -548707,6 +550063,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -548778,6 +550135,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -563683,6 +565079,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -563754,6 +565151,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -682705,6 +684141,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -682776,6 +684213,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -732116,6 +733592,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -732187,6 +733664,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -765425,6 +766941,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -765496,6 +767013,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -785529,6 +787085,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -785600,6 +787157,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -789883,6 +791479,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -789954,6 +791551,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -798547,6 +800183,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -798618,6 +800255,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -802901,6 +804577,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -802972,6 +804649,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -811575,6 +813291,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -811646,6 +813363,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -815929,6 +817685,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -816000,6 +817757,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -836066,6 +837862,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -836137,6 +837934,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -852435,6 +854271,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -852506,6 +854343,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -856789,6 +858665,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -856860,6 +858737,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -865449,6 +867365,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -865520,6 +867437,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -869803,6 +871759,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -869874,6 +871831,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1103360,6 +1105356,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1103431,6 +1105428,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1107225,6 +1109261,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1107296,6 +1109333,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1113963,6 +1116039,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1114034,6 +1116111,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1117828,6 +1119944,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1117899,6 +1120016,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1124566,6 +1126722,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1124637,6 +1126794,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1129399,6 +1131595,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1129470,6 +1131667,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1135169,6 +1137405,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1135240,6 +1137477,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1140002,6 +1142278,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1140073,6 +1142350,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1144309,6 +1146625,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1144380,6 +1146697,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1148695,6 +1151051,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1148766,6 +1151123,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1153289,6 +1155685,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1153360,6 +1155757,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1157687,6 +1160123,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1157758,6 +1160195,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1162266,6 +1164742,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1162337,6 +1164814,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1166691,6 +1169207,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1166762,6 +1169279,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1167015,6 +1169571,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -1167077,6 +1169634,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1167143,6 +1169731,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the previously selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The previously selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1171233,6 +1173852,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1171304,6 +1173924,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1171557,6 +1174216,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -1171619,6 +1174279,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1175699,6 +1178390,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1175770,6 +1178462,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1180149,6 +1182880,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1180220,6 +1182952,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1184523,6 +1187294,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1184594,6 +1187366,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1188031,6 +1190842,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1188102,6 +1190914,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1191157,6 +1194008,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1191228,6 +1194080,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1196459,6 +1199350,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1196530,6 +1199422,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1200860,6 +1203791,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1200931,6 +1203863,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1205100,6 +1208071,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1205171,6 +1208143,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1208242,6 +1211253,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1208313,6 +1211325,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1212623,6 +1215674,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1212694,6 +1215746,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1217173,6 +1220264,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1217244,6 +1220336,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1221554,6 +1224685,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1221625,6 +1224757,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1226002,6 +1229173,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1226073,6 +1229245,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1230353,6 +1233564,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1230424,6 +1233636,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1234733,6 +1237984,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1234804,6 +1238056,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1662750,6 +1666041,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1662821,6 +1666113,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1667583,6 +1670914,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1667654,6 +1670986,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1673354,6 +1676725,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1673425,6 +1676797,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1678187,6 +1681598,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1678258,6 +1681670,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1683958,6 +1687409,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1684029,6 +1687481,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1688791,6 +1692282,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1688862,6 +1692354,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1694562,6 +1698093,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1694633,6 +1698165,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1699395,6 +1702966,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1699466,6 +1703038,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index f81ab9852a..ad2bbc2e00 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -15461,6 +15461,7 @@ paths: enum: - text - single_select + - multi_select - number - date examples: @@ -15509,6 +15510,35 @@ paths: - id - name - color + multi_select_options: + description: Details about the selected options + type: + - array + - 'null' + items: + type: object + properties: + id: + description: Unique identifier for the + option. + type: integer + format: int64 + examples: + - 1 + name: + description: The name of the option + type: string + examples: + - High + color: + description: The color of the option + type: string + examples: + - red + required: + - id + - name + - color required: - issue_field_id - node_id @@ -41173,6 +41203,7 @@ paths: - text - date - single_select + - multi_select - number visibility: type: string @@ -41183,7 +41214,8 @@ paths: - organization_members_only - all options: - description: Available options for single select fields. + description: Available options for single select and multi select + fields. type: - array - 'null' @@ -41272,6 +41304,23 @@ paths: color: green created_at: '2024-12-11T14:39:09Z' updated_at: '2024-12-11T14:39:09Z' + - id: 3 + node_id: IFMS_kwDNAd3NAZt + name: Categories + description: Issue categories + data_type: multi_select + options: + - id: 4 + name: Frontend + color: blue + - id: 5 + name: Backend + color: green + - id: 6 + name: Infrastructure + color: purple + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' '404': *6 x-github: githubCloudOnly: false @@ -41317,6 +41366,7 @@ paths: - text - date - single_select + - multi_select - number visibility: description: The visibility of the issue field. Can be `organization_members_only` @@ -41328,8 +41378,8 @@ paths: - organization_members_only - all options: - description: Options for single select fields. Required when data_type - is 'single_select'. + description: Options for select fields. Required when data_type + is 'single_select' or 'multi_select'. type: - array - 'null' @@ -41477,13 +41527,13 @@ paths: - organization_members_only - all options: - description: Options for single select fields. Only applicable when - updating single_select fields. When provided, this array **replaces** - the entire existing set of options rather than adding to or updating - individual options. To retain or update an existing option, include - it in the array with its `id`. Options sent without an `id` are - treated as new options and may cause existing options to be deleted - and recreated. + description: Options for select fields. Only applicable when updating + single_select or multi_select fields. When provided, this array + **replaces** the entire existing set of options rather than adding + to or updating individual options. To retain or update an existing + option, include it in the array with its `id`. Options sent without + an `id` are treated as new options and may cause existing options + to be deleted and recreated. type: array items: type: object @@ -58825,6 +58875,18 @@ paths: description: Either `true` to enable the wiki for this repository or `false` to disable it. default: true + has_pull_requests: + type: boolean + description: Either `true` to allow pull requests for this repository + or `false` to prevent pull requests. + default: true + pull_request_creation_policy: + type: string + description: 'The policy that controls who can create pull requests + for this repository: `all` or `collaborators_only`.' + enum: + - all + - collaborators_only is_template: type: boolean description: Either `true` to make this repo available as a template @@ -88584,7 +88646,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -90214,7 +90280,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -91563,6 +91633,17 @@ paths: node_id: IFD_DUEDATE data_type: date value: '2025-12-25' + - issue_field_id: 5 + node_id: IFMS_LABELS + data_type: multi_select + value: Frontend,Backend + multi_select_options: + - id: 1 + name: Frontend + color: blue + - id: 2 + name: Backend + color: green headers: Link: *66 '301': *344 @@ -91625,11 +91706,17 @@ paths: date fields - type: number description: The value to set for number fields + - type: array + items: + type: string + description: The value to set for multi_select fields (array + of option names) description: |- The value to set for the field. The type depends on the field's data type: - For text fields: provide a string value - For single_select fields: provide the option name as a string (must match an existing option) - For number fields: provide a numeric value + - For multi_select fields: provide an array of option names (must match existing options) - For date fields: provide an ISO 8601 date string examples: - Critical @@ -151859,6 +151946,7 @@ webhooks: - text - date - single_select + - multi_select - number required: - id @@ -151904,6 +151992,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present + for multi_select field types. + options: + type: array + description: The selected option details. Present for multi_select + field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id changes: @@ -151955,6 +152066,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the previously selected + options. Present for multi_select field types. + options: + type: array + description: The previously selected option details. + Present for multi_select field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id required: @@ -152060,6 +152194,7 @@ webhooks: - text - date - single_select + - multi_select - number required: - id @@ -152103,6 +152238,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present + for multi_select field types. + options: + type: array + description: The selected option details. Present for multi_select + field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id organization: *728 diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index a21c5fc423..e8057511e6 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -39309,6 +39309,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -39380,6 +39381,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -43473,6 +43513,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -43544,6 +43585,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -62599,6 +62679,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -62670,6 +62751,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -70835,6 +70955,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -70906,6 +71027,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -74999,6 +75159,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -75070,6 +75231,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -152443,6 +152643,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -152514,6 +152715,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -156607,6 +156847,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -156678,6 +156919,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -169145,6 +169425,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -169157,7 +169438,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -169278,6 +169559,32 @@ ], "created_at": "2024-12-11T14:39:09Z", "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 3, + "node_id": "IFMS_kwDNAd3NAZt", + "name": "Categories", + "description": "Issue categories", + "data_type": "multi_select", + "options": [ + { + "id": 4, + "name": "Frontend", + "color": "blue" + }, + { + "id": 5, + "name": "Backend", + "color": "green" + }, + { + "id": 6, + "name": "Infrastructure", + "color": "purple" + } + ], + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" } ] } @@ -169366,6 +169673,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -169378,7 +169686,7 @@ ] }, "options": { - "description": "Options for single select fields. Required when data_type is 'single_select'.", + "description": "Options for select fields. Required when data_type is 'single_select' or 'multi_select'.", "type": [ "array", "null" @@ -169497,6 +169805,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -169509,7 +169818,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -169761,7 +170070,7 @@ ] }, "options": { - "description": "Options for single select fields. Only applicable when updating single_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", + "description": "Options for select fields. Only applicable when updating single_select or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", "type": "array", "items": { "type": "object", @@ -169896,6 +170205,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -169908,7 +170218,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -174637,6 +174947,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -174708,6 +175019,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -204995,6 +205345,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -205066,6 +205417,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -216148,6 +216538,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -216219,6 +216610,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -268730,6 +269160,19 @@ "description": "Either `true` to enable the wiki for this repository or `false` to disable it.", "default": true }, + "has_pull_requests": { + "type": "boolean", + "description": "Either `true` to allow pull requests for this repository or `false` to prevent pull requests.", + "default": true + }, + "pull_request_creation_policy": { + "type": "string", + "description": "The policy that controls who can create pull requests for this repository: `all` or `collaborators_only`.", + "enum": [ + "all", + "collaborators_only" + ] + }, "is_template": { "type": "boolean", "description": "Either `true` to make this repo available as a template repository or `false` to prevent it.", @@ -412231,6 +412674,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -412302,6 +412746,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -416395,6 +416878,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -416466,6 +416950,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -444304,6 +444827,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -444375,6 +444899,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -444847,9 +445410,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -448464,6 +449033,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -448535,6 +449105,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -458752,6 +459361,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -458823,6 +459433,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -464492,6 +465141,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -464563,6 +465213,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -470028,6 +470717,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -470099,6 +470789,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -470736,9 +471465,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -474351,6 +475086,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -474422,6 +475158,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -478452,6 +479227,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -478523,6 +479299,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -482350,6 +483165,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -482421,6 +483237,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -488638,6 +489493,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -488709,6 +489565,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -492643,6 +493538,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -492714,6 +493610,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -496712,6 +497647,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -496783,6 +497719,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -500803,6 +501778,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -500874,6 +501850,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -512820,6 +513835,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -512891,6 +513907,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -512932,6 +513987,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -513102,9 +514175,16 @@ { "type": "number", "description": "The value to set for number fields" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "description": "The value to set for multi_select fields (array of option names)" } ], - "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For date fields: provide an ISO 8601 date string", + "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For multi_select fields: provide an array of option names (must match existing options)\n- For date fields: provide an ISO 8601 date string", "examples": [ "Critical" ] @@ -513188,6 +514268,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -513259,6 +514340,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -513300,6 +514420,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -513687,6 +514825,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -513758,6 +514897,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -513799,6 +514977,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -519563,6 +520759,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -519634,6 +520831,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -524701,6 +525937,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -524772,6 +526009,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -528696,6 +529972,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -528767,6 +530044,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -532679,6 +533995,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -532750,6 +534067,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -536747,6 +538103,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -536818,6 +538175,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -551513,6 +552909,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -551584,6 +552981,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -668777,6 +670213,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -668848,6 +670285,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -717675,6 +719151,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -717746,6 +719223,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -749047,6 +750563,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -749118,6 +750635,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -768696,6 +770252,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -768767,6 +770324,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -772860,6 +774456,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -772931,6 +774528,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -781334,6 +782970,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -781405,6 +783042,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -785498,6 +787174,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -785569,6 +787246,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -793982,6 +795698,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -794053,6 +795770,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -798146,6 +799902,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -798217,6 +799974,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -817903,6 +819699,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -817974,6 +819771,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -833858,6 +835694,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -833929,6 +835766,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -838022,6 +839898,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -838093,6 +839970,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -846492,6 +848408,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -846563,6 +848480,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -850656,6 +852612,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -850727,6 +852684,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1082643,6 +1084639,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1082714,6 +1084711,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1086318,6 +1088354,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1086389,6 +1088426,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1092835,6 +1094911,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1092906,6 +1094983,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1096510,6 +1098626,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1096581,6 +1098698,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1103027,6 +1105183,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1103098,6 +1105255,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1107651,6 +1109847,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1107722,6 +1109919,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1113219,6 +1115455,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1113290,6 +1115527,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1117843,6 +1120119,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1117914,6 +1120191,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1122137,6 +1124453,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1122208,6 +1124525,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1126511,6 +1128867,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1126582,6 +1128939,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1131093,6 +1133489,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1131164,6 +1133561,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1135479,6 +1137915,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1135550,6 +1137987,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1140046,6 +1142522,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1140117,6 +1142594,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1144459,6 +1146975,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1144530,6 +1147047,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1144783,6 +1147339,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -1144845,6 +1147402,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1144911,6 +1147499,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the previously selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The previously selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1148989,6 +1151608,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1149060,6 +1151680,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1149313,6 +1151972,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -1149375,6 +1152035,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1153443,6 +1156134,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1153514,6 +1156206,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1157881,6 +1160612,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1157952,6 +1160684,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1162243,6 +1165014,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1162314,6 +1165086,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1165739,6 +1168550,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1165810,6 +1168622,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1168865,6 +1171716,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1168936,6 +1171788,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1174155,6 +1177046,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1174226,6 +1177118,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1178544,6 +1181475,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1178615,6 +1181547,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1182772,6 +1185743,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1182843,6 +1185815,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1185914,6 +1188925,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1185985,6 +1188997,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1190283,6 +1193334,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1190354,6 +1193406,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1194821,6 +1197912,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1194892,6 +1197984,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1199190,6 +1202321,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1199261,6 +1202393,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1203626,6 +1206797,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1203697,6 +1206869,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1207965,6 +1211176,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1208036,6 +1211248,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1212333,6 +1215584,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1212404,6 +1215656,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1636728,6 +1640019,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1636799,6 +1640091,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1641352,6 +1644683,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1641423,6 +1644755,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1646921,6 +1650292,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1646992,6 +1650364,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1651545,6 +1654956,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1651616,6 +1655028,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1657114,6 +1660565,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1657185,6 +1660637,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1661738,6 +1665229,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1661809,6 +1665301,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1667307,6 +1670838,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1667378,6 +1670910,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1671931,6 +1675502,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1672002,6 +1675574,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index ab851d93af..3257dc78d4 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -15387,6 +15387,7 @@ paths: enum: - text - single_select + - multi_select - number - date examples: @@ -15435,6 +15436,35 @@ paths: - id - name - color + multi_select_options: + description: Details about the selected options + type: + - array + - 'null' + items: + type: object + properties: + id: + description: Unique identifier for the + option. + type: integer + format: int64 + examples: + - 1 + name: + description: The name of the option + type: string + examples: + - High + color: + description: The color of the option + type: string + examples: + - red + required: + - id + - name + - color required: - issue_field_id - node_id @@ -40815,6 +40845,7 @@ paths: - text - date - single_select + - multi_select - number visibility: type: string @@ -40825,7 +40856,8 @@ paths: - organization_members_only - all options: - description: Available options for single select fields. + description: Available options for single select and multi select + fields. type: - array - 'null' @@ -40914,6 +40946,23 @@ paths: color: green created_at: '2024-12-11T14:39:09Z' updated_at: '2024-12-11T14:39:09Z' + - id: 3 + node_id: IFMS_kwDNAd3NAZt + name: Categories + description: Issue categories + data_type: multi_select + options: + - id: 4 + name: Frontend + color: blue + - id: 5 + name: Backend + color: green + - id: 6 + name: Infrastructure + color: purple + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' '404': *6 x-github: githubCloudOnly: false @@ -40959,6 +41008,7 @@ paths: - text - date - single_select + - multi_select - number visibility: description: The visibility of the issue field. Can be `organization_members_only` @@ -40970,8 +41020,8 @@ paths: - organization_members_only - all options: - description: Options for single select fields. Required when data_type - is 'single_select'. + description: Options for select fields. Required when data_type + is 'single_select' or 'multi_select'. type: - array - 'null' @@ -41119,13 +41169,13 @@ paths: - organization_members_only - all options: - description: Options for single select fields. Only applicable when - updating single_select fields. When provided, this array **replaces** - the entire existing set of options rather than adding to or updating - individual options. To retain or update an existing option, include - it in the array with its `id`. Options sent without an `id` are - treated as new options and may cause existing options to be deleted - and recreated. + description: Options for select fields. Only applicable when updating + single_select or multi_select fields. When provided, this array + **replaces** the entire existing set of options rather than adding + to or updating individual options. To retain or update an existing + option, include it in the array with its `id`. Options sent without + an `id` are treated as new options and may cause existing options + to be deleted and recreated. type: array items: type: object @@ -58401,6 +58451,18 @@ paths: description: Either `true` to enable the wiki for this repository or `false` to disable it. default: true + has_pull_requests: + type: boolean + description: Either `true` to allow pull requests for this repository + or `false` to prevent pull requests. + default: true + pull_request_creation_policy: + type: string + description: 'The policy that controls who can create pull requests + for this repository: `all` or `collaborators_only`.' + enum: + - all + - collaborators_only is_template: type: boolean description: Either `true` to make this repo available as a template @@ -88127,7 +88189,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -89713,7 +89779,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -91062,6 +91132,17 @@ paths: node_id: IFD_DUEDATE data_type: date value: '2025-12-25' + - issue_field_id: 5 + node_id: IFMS_LABELS + data_type: multi_select + value: Frontend,Backend + multi_select_options: + - id: 1 + name: Frontend + color: blue + - id: 2 + name: Backend + color: green headers: Link: *66 '301': *344 @@ -91124,11 +91205,17 @@ paths: date fields - type: number description: The value to set for number fields + - type: array + items: + type: string + description: The value to set for multi_select fields (array + of option names) description: |- The value to set for the field. The type depends on the field's data type: - For text fields: provide a string value - For single_select fields: provide the option name as a string (must match an existing option) - For number fields: provide a numeric value + - For multi_select fields: provide an array of option names (must match existing options) - For date fields: provide an ISO 8601 date string examples: - Critical @@ -151427,6 +151514,7 @@ webhooks: - text - date - single_select + - multi_select - number required: - id @@ -151472,6 +151560,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present + for multi_select field types. + options: + type: array + description: The selected option details. Present for multi_select + field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id changes: @@ -151523,6 +151634,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the previously selected + options. Present for multi_select field types. + options: + type: array + description: The previously selected option details. + Present for multi_select field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id required: @@ -151628,6 +151762,7 @@ webhooks: - text - date - single_select + - multi_select - number required: - id @@ -151671,6 +151806,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present + for multi_select field types. + options: + type: array + description: The selected option details. Present for multi_select + field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id organization: *728 diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 1330a73d3d..3c22ac01a2 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -39990,6 +39990,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -40061,6 +40062,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -44507,6 +44547,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -44578,6 +44619,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -67504,6 +67584,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -67575,6 +67656,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -76093,6 +76213,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -76164,6 +76285,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -80610,6 +80770,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -80681,6 +80842,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -159332,6 +159532,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -159403,6 +159604,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -163849,6 +164089,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -163920,6 +164161,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -176448,6 +176728,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -176460,7 +176741,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -176581,6 +176862,32 @@ ], "created_at": "2024-12-11T14:39:09Z", "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 3, + "node_id": "IFMS_kwDNAd3NAZt", + "name": "Categories", + "description": "Issue categories", + "data_type": "multi_select", + "options": [ + { + "id": 4, + "name": "Frontend", + "color": "blue" + }, + { + "id": 5, + "name": "Backend", + "color": "green" + }, + { + "id": 6, + "name": "Infrastructure", + "color": "purple" + } + ], + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" } ] } @@ -176669,6 +176976,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -176681,7 +176989,7 @@ ] }, "options": { - "description": "Options for single select fields. Required when data_type is 'single_select'.", + "description": "Options for select fields. Required when data_type is 'single_select' or 'multi_select'.", "type": [ "array", "null" @@ -176800,6 +177108,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -176812,7 +177121,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -177064,7 +177373,7 @@ ] }, "options": { - "description": "Options for single select fields. Only applicable when updating single_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", + "description": "Options for select fields. Only applicable when updating single_select or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", "type": "array", "items": { "type": "object", @@ -177199,6 +177508,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -177211,7 +177521,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -182232,6 +182542,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -182303,6 +182614,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -217410,6 +217760,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -217481,6 +217832,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -229429,6 +229819,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -229500,6 +229891,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -283720,6 +284150,19 @@ "description": "Either `true` to enable the wiki for this repository or `false` to disable it.", "default": true }, + "has_pull_requests": { + "type": "boolean", + "description": "Either `true` to allow pull requests for this repository or `false` to prevent pull requests.", + "default": true + }, + "pull_request_creation_policy": { + "type": "string", + "description": "The policy that controls who can create pull requests for this repository: `all` or `collaborators_only`.", + "enum": [ + "all", + "collaborators_only" + ] + }, "is_template": { "type": "boolean", "description": "Either `true` to make this repo available as a template repository or `false` to prevent it.", @@ -429202,6 +429645,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -429273,6 +429717,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -433719,6 +434202,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -433790,6 +434274,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -462434,6 +462957,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -462505,6 +463029,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -463045,9 +463608,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -466954,6 +467523,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -467025,6 +467595,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -477646,6 +478255,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -477717,6 +478327,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -483739,6 +484388,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -483810,6 +484460,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -489628,6 +490317,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -489699,6 +490389,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -490468,9 +491197,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -494375,6 +495110,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -494446,6 +495182,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -498880,6 +499655,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -498951,6 +499727,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -503163,6 +503978,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -503234,6 +504050,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -509836,6 +510691,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -509907,6 +510763,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -514194,6 +515089,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -514265,6 +515161,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -518648,6 +519583,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -518719,6 +519655,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -523124,6 +524099,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -523195,6 +524171,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -535202,6 +536217,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -535273,6 +536289,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -535314,6 +536369,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -535484,9 +536557,16 @@ { "type": "number", "description": "The value to set for number fields" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "description": "The value to set for multi_select fields (array of option names)" } ], - "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For date fields: provide an ISO 8601 date string", + "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For multi_select fields: provide an array of option names (must match existing options)\n- For date fields: provide an ISO 8601 date string", "examples": [ "Critical" ] @@ -535570,6 +536650,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -535641,6 +536722,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -535682,6 +536802,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -536069,6 +537207,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -536140,6 +537279,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -536181,6 +537359,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -542237,6 +543433,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -542308,6 +543505,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -547760,6 +548996,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -547831,6 +549068,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -552140,6 +553416,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -552211,6 +553488,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -556476,6 +557792,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -556547,6 +557864,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -560929,6 +562285,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -561000,6 +562357,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -576080,6 +577476,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -576151,6 +577548,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -698071,6 +699507,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -698142,6 +699579,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -748373,6 +749849,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -748444,6 +749921,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -785314,6 +786830,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -785385,6 +786902,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -805937,6 +807493,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -806008,6 +807565,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -810454,6 +812050,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -810525,6 +812122,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -819281,6 +820917,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -819352,6 +820989,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -823798,6 +825474,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -823869,6 +825546,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -832635,6 +834351,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -832706,6 +834423,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -837152,6 +838908,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -837223,6 +838980,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -857516,6 +859312,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -857587,6 +859384,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -874337,6 +876173,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -874408,6 +876245,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -878854,6 +880730,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -878925,6 +880802,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -887677,6 +889593,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -887748,6 +889665,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -892194,6 +894150,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -892265,6 +894222,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1128522,6 +1130518,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1128593,6 +1130590,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1132550,6 +1134586,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1132621,6 +1134658,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1139579,6 +1141655,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1139650,6 +1141727,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1143607,6 +1145723,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1143678,6 +1145795,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1150636,6 +1152792,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1150707,6 +1152864,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1155735,6 +1157931,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1155806,6 +1158003,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1161693,6 +1163929,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1161764,6 +1164001,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1166792,6 +1169068,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1166863,6 +1169140,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1171184,6 +1173500,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1171255,6 +1173572,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1175595,6 +1177951,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1175666,6 +1178023,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1180214,6 +1182610,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1180285,6 +1182682,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1184637,6 +1187073,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1184708,6 +1187145,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1189241,6 +1191717,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1189312,6 +1191789,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1193691,6 +1196207,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1193762,6 +1196279,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1194015,6 +1196571,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -1194077,6 +1196634,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1194143,6 +1196731,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the previously selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The previously selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1198258,6 +1200877,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1198329,6 +1200949,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1198582,6 +1201241,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -1198644,6 +1201304,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1202749,6 +1205440,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1202820,6 +1205512,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1207224,6 +1209955,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1207295,6 +1210027,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1211623,6 +1214394,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1211694,6 +1214466,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1215156,6 +1217967,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1215227,6 +1218039,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1218282,6 +1221133,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1218353,6 +1221205,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1223609,6 +1226500,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1223680,6 +1226572,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1228035,6 +1230966,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1228106,6 +1231038,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1232300,6 +1235271,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1232371,6 +1235343,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1235442,6 +1238453,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1235513,6 +1238525,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1239848,6 +1242899,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1239919,6 +1242971,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1244423,6 +1247514,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1244494,6 +1247586,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1248829,6 +1251960,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1248900,6 +1252032,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1253302,6 +1256473,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1253373,6 +1256545,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1257678,6 +1260889,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1257749,6 +1260961,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1262083,6 +1265334,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1262154,6 +1265406,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1696451,6 +1699742,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1696522,6 +1699814,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1701550,6 +1704881,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1701621,6 +1704953,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1707509,6 +1710880,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1707580,6 +1710952,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1712608,6 +1716019,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1712679,6 +1716091,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1718567,6 +1722018,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1718638,6 +1722090,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1723666,6 +1727157,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1723737,6 +1727229,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1729625,6 +1733156,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1729696,6 +1733228,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1734724,6 +1738295,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1734795,6 +1738367,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 4b0b7b27fa..7838b5bcda 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -15634,6 +15634,7 @@ paths: enum: - text - single_select + - multi_select - number - date examples: @@ -15682,6 +15683,35 @@ paths: - id - name - color + multi_select_options: + description: Details about the selected options + type: + - array + - 'null' + items: + type: object + properties: + id: + description: Unique identifier for the + option. + type: integer + format: int64 + examples: + - 1 + name: + description: The name of the option + type: string + examples: + - High + color: + description: The color of the option + type: string + examples: + - red + required: + - id + - name + - color required: - issue_field_id - node_id @@ -41503,6 +41533,7 @@ paths: - text - date - single_select + - multi_select - number visibility: type: string @@ -41513,7 +41544,8 @@ paths: - organization_members_only - all options: - description: Available options for single select fields. + description: Available options for single select and multi select + fields. type: - array - 'null' @@ -41602,6 +41634,23 @@ paths: color: green created_at: '2024-12-11T14:39:09Z' updated_at: '2024-12-11T14:39:09Z' + - id: 3 + node_id: IFMS_kwDNAd3NAZt + name: Categories + description: Issue categories + data_type: multi_select + options: + - id: 4 + name: Frontend + color: blue + - id: 5 + name: Backend + color: green + - id: 6 + name: Infrastructure + color: purple + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' '404': *6 x-github: githubCloudOnly: false @@ -41647,6 +41696,7 @@ paths: - text - date - single_select + - multi_select - number visibility: description: The visibility of the issue field. Can be `organization_members_only` @@ -41658,8 +41708,8 @@ paths: - organization_members_only - all options: - description: Options for single select fields. Required when data_type - is 'single_select'. + description: Options for select fields. Required when data_type + is 'single_select' or 'multi_select'. type: - array - 'null' @@ -41807,13 +41857,13 @@ paths: - organization_members_only - all options: - description: Options for single select fields. Only applicable when - updating single_select fields. When provided, this array **replaces** - the entire existing set of options rather than adding to or updating - individual options. To retain or update an existing option, include - it in the array with its `id`. Options sent without an `id` are - treated as new options and may cause existing options to be deleted - and recreated. + description: Options for select fields. Only applicable when updating + single_select or multi_select fields. When provided, this array + **replaces** the entire existing set of options rather than adding + to or updating individual options. To retain or update an existing + option, include it in the array with its `id`. Options sent without + an `id` are treated as new options and may cause existing options + to be deleted and recreated. type: array items: type: object @@ -59439,6 +59489,18 @@ paths: description: Either `true` to enable the wiki for this repository or `false` to disable it. default: true + has_pull_requests: + type: boolean + description: Either `true` to allow pull requests for this repository + or `false` to prevent pull requests. + default: true + pull_request_creation_policy: + type: string + description: 'The policy that controls who can create pull requests + for this repository: `all` or `collaborators_only`.' + enum: + - all + - collaborators_only is_template: type: boolean description: Either `true` to make this repo available as a template @@ -89270,7 +89332,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -90922,7 +90988,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -92281,6 +92351,17 @@ paths: node_id: IFD_DUEDATE data_type: date value: '2025-12-25' + - issue_field_id: 5 + node_id: IFMS_LABELS + data_type: multi_select + value: Frontend,Backend + multi_select_options: + - id: 1 + name: Frontend + color: blue + - id: 2 + name: Backend + color: green headers: Link: *66 '301': *344 @@ -92343,11 +92424,17 @@ paths: date fields - type: number description: The value to set for number fields + - type: array + items: + type: string + description: The value to set for multi_select fields (array + of option names) description: |- The value to set for the field. The type depends on the field's data type: - For text fields: provide a string value - For single_select fields: provide the option name as a string (must match an existing option) - For number fields: provide a numeric value + - For multi_select fields: provide an array of option names (must match existing options) - For date fields: provide an ISO 8601 date string examples: - Critical @@ -152824,6 +152911,7 @@ webhooks: - text - date - single_select + - multi_select - number required: - id @@ -152869,6 +152957,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present + for multi_select field types. + options: + type: array + description: The selected option details. Present for multi_select + field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id changes: @@ -152920,6 +153031,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the previously selected + options. Present for multi_select field types. + options: + type: array + description: The previously selected option details. + Present for multi_select field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id required: @@ -153025,6 +153159,7 @@ webhooks: - text - date - single_select + - multi_select - number required: - id @@ -153068,6 +153203,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present + for multi_select field types. + options: + type: array + description: The selected option details. Present for multi_select + field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id organization: *728 diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 9a7992aa97..65cfb95065 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -92629,6 +92629,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -92700,6 +92701,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -96983,6 +97023,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -97054,6 +97095,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -119455,6 +119535,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -119526,6 +119607,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -127881,6 +128001,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -127952,6 +128073,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -132235,6 +132395,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -132306,6 +132467,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -213605,6 +213805,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -213676,6 +213877,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -217959,6 +218199,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -218030,6 +218271,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -231000,6 +231280,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -231012,7 +231293,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -231133,6 +231414,32 @@ ], "created_at": "2024-12-11T14:39:09Z", "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 3, + "node_id": "IFMS_kwDNAd3NAZt", + "name": "Categories", + "description": "Issue categories", + "data_type": "multi_select", + "options": [ + { + "id": 4, + "name": "Frontend", + "color": "blue" + }, + { + "id": 5, + "name": "Backend", + "color": "green" + }, + { + "id": 6, + "name": "Infrastructure", + "color": "purple" + } + ], + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" } ] } @@ -231221,6 +231528,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -231233,7 +231541,7 @@ ] }, "options": { - "description": "Options for single select fields. Required when data_type is 'single_select'.", + "description": "Options for select fields. Required when data_type is 'single_select' or 'multi_select'.", "type": [ "array", "null" @@ -231352,6 +231660,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -231364,7 +231673,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -231616,7 +231925,7 @@ ] }, "options": { - "description": "Options for single select fields. Only applicable when updating single_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", + "description": "Options for select fields. Only applicable when updating single_select or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", "type": "array", "items": { "type": "object", @@ -231751,6 +232060,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -231763,7 +232073,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -236681,6 +236991,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -236752,6 +237063,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -270162,6 +270512,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -270233,6 +270584,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -281729,6 +282119,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -281800,6 +282191,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -335957,6 +336387,19 @@ "description": "Either `true` to enable the wiki for this repository or `false` to disable it.", "default": true }, + "has_pull_requests": { + "type": "boolean", + "description": "Either `true` to allow pull requests for this repository or `false` to prevent pull requests.", + "default": true + }, + "pull_request_creation_policy": { + "type": "string", + "description": "The policy that controls who can create pull requests for this repository: `all` or `collaborators_only`.", + "enum": [ + "all", + "collaborators_only" + ] + }, "is_template": { "type": "boolean", "description": "Either `true` to make this repo available as a template repository or `false` to prevent it.", @@ -486003,6 +486446,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -486074,6 +486518,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -490357,6 +490840,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -490428,6 +490912,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -518607,6 +519130,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -518678,6 +519202,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -519158,9 +519721,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -522964,6 +523533,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -523035,6 +523605,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -533462,6 +534071,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -533533,6 +534143,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -539392,6 +540041,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -539463,6 +540113,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -545118,6 +545807,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -545189,6 +545879,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -545874,9 +546603,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -549678,6 +550413,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -549749,6 +550485,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -553989,6 +554764,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -554060,6 +554836,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -558097,6 +558912,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -558168,6 +558984,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -564595,6 +565450,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -564666,6 +565522,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -568790,6 +569685,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -568861,6 +569757,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -573069,6 +574004,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -573140,6 +574076,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -577370,6 +578345,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -577441,6 +578417,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -589388,6 +590403,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -589459,6 +590475,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -589500,6 +590555,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -589670,9 +590743,16 @@ { "type": "number", "description": "The value to set for number fields" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "description": "The value to set for multi_select fields (array of option names)" } ], - "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For date fields: provide an ISO 8601 date string", + "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For multi_select fields: provide an array of option names (must match existing options)\n- For date fields: provide an ISO 8601 date string", "examples": [ "Critical" ] @@ -589756,6 +590836,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -589827,6 +590908,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -589868,6 +590988,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -590255,6 +591393,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -590326,6 +591465,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -590367,6 +591545,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -596320,6 +597516,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -596391,6 +597588,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -601668,6 +602904,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -601739,6 +602976,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -605873,6 +607149,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -605944,6 +607221,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -610046,6 +611362,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -610117,6 +611434,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -614324,6 +615680,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -614395,6 +615752,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -629300,6 +630696,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -629371,6 +630768,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -759994,6 +761430,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -760065,6 +761502,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -810050,6 +811526,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -810121,6 +811598,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -843431,6 +844947,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -843502,6 +845019,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -863547,6 +865103,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -863618,6 +865175,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -867901,6 +869497,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -867972,6 +869569,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -876565,6 +878201,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -876636,6 +878273,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -880919,6 +882595,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -880990,6 +882667,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -889593,6 +891309,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -889664,6 +891381,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -893947,6 +895703,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -894018,6 +895775,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -914132,6 +915928,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -914203,6 +916000,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -930501,6 +932337,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -930572,6 +932409,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -934855,6 +936731,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -934926,6 +936803,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -943515,6 +945431,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -943586,6 +945503,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -947869,6 +949825,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -947940,6 +949897,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1229543,6 +1231539,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1229614,6 +1231611,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1233408,6 +1235444,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1233479,6 +1235516,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1240146,6 +1242222,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1240217,6 +1242294,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1244011,6 +1246127,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1244082,6 +1246199,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1250749,6 +1252905,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1250820,6 +1252977,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1255582,6 +1257778,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1255653,6 +1257850,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1261352,6 +1263588,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1261423,6 +1263660,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1266185,6 +1268461,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1266256,6 +1268533,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1270492,6 +1272808,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1270563,6 +1272880,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1274878,6 +1277234,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1274949,6 +1277306,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1279472,6 +1281868,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1279543,6 +1281940,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1283870,6 +1286306,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1283941,6 +1286378,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1288449,6 +1290925,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1288520,6 +1290997,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1292874,6 +1295390,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1292945,6 +1295462,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1293198,6 +1295754,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -1293260,6 +1295817,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1293326,6 +1295914,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the previously selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The previously selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1297416,6 +1300035,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1297487,6 +1300107,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1297740,6 +1300399,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -1297802,6 +1300462,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1301882,6 +1304573,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1301953,6 +1304645,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1306332,6 +1309063,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1306403,6 +1309135,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1310706,6 +1313477,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1310777,6 +1313549,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1314214,6 +1317025,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1314285,6 +1317097,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1317340,6 +1320191,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1317411,6 +1320263,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1322642,6 +1325533,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1322713,6 +1325605,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1327043,6 +1329974,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1327114,6 +1330046,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1331283,6 +1334254,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1331354,6 +1334326,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1334425,6 +1337436,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1334496,6 +1337508,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1338806,6 +1341857,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1338877,6 +1341929,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1343356,6 +1346447,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1343427,6 +1346519,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1347737,6 +1350868,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1347808,6 +1350940,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1352185,6 +1355356,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1352256,6 +1355428,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1356536,6 +1359747,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1356607,6 +1359819,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1360916,6 +1364167,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1360987,6 +1364239,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1790899,6 +1794190,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1790970,6 +1794262,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1795732,6 +1799063,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1795803,6 +1799135,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1801503,6 +1804874,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1801574,6 +1804946,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1806336,6 +1809747,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1806407,6 +1809819,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1812107,6 +1815558,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1812178,6 +1815630,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1816940,6 +1820431,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1817011,6 +1820503,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1822711,6 +1826242,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1822782,6 +1826314,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1827544,6 +1831115,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1827615,6 +1831187,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 60f923ce4a..34af797bfa 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -31750,6 +31750,7 @@ paths: enum: - text - single_select + - multi_select - number - date examples: @@ -31798,6 +31799,35 @@ paths: - id - name - color + multi_select_options: + description: Details about the selected options + type: + - array + - 'null' + items: + type: object + properties: + id: + description: Unique identifier for the + option. + type: integer + format: int64 + examples: + - 1 + name: + description: The name of the option + type: string + examples: + - High + color: + description: The color of the option + type: string + examples: + - red + required: + - id + - name + - color required: - issue_field_id - node_id @@ -55811,6 +55841,7 @@ paths: - text - date - single_select + - multi_select - number visibility: type: string @@ -55821,7 +55852,8 @@ paths: - organization_members_only - all options: - description: Available options for single select fields. + description: Available options for single select and multi select + fields. type: - array - 'null' @@ -55910,6 +55942,23 @@ paths: color: green created_at: '2024-12-11T14:39:09Z' updated_at: '2024-12-11T14:39:09Z' + - id: 3 + node_id: IFMS_kwDNAd3NAZt + name: Categories + description: Issue categories + data_type: multi_select + options: + - id: 4 + name: Frontend + color: blue + - id: 5 + name: Backend + color: green + - id: 6 + name: Infrastructure + color: purple + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' '404': *6 x-github: githubCloudOnly: false @@ -55955,6 +56004,7 @@ paths: - text - date - single_select + - multi_select - number visibility: description: The visibility of the issue field. Can be `organization_members_only` @@ -55966,8 +56016,8 @@ paths: - organization_members_only - all options: - description: Options for single select fields. Required when data_type - is 'single_select'. + description: Options for select fields. Required when data_type + is 'single_select' or 'multi_select'. type: - array - 'null' @@ -56115,13 +56165,13 @@ paths: - organization_members_only - all options: - description: Options for single select fields. Only applicable when - updating single_select fields. When provided, this array **replaces** - the entire existing set of options rather than adding to or updating - individual options. To retain or update an existing option, include - it in the array with its `id`. Options sent without an `id` are - treated as new options and may cause existing options to be deleted - and recreated. + description: Options for select fields. Only applicable when updating + single_select or multi_select fields. When provided, this array + **replaces** the entire existing set of options rather than adding + to or updating individual options. To retain or update an existing + option, include it in the array with its `id`. Options sent without + an `id` are treated as new options and may cause existing options + to be deleted and recreated. type: array items: type: object @@ -71787,6 +71837,18 @@ paths: description: Either `true` to enable the wiki for this repository or `false` to disable it. default: true + has_pull_requests: + type: boolean + description: Either `true` to allow pull requests for this repository + or `false` to prevent pull requests. + default: true + pull_request_creation_policy: + type: string + description: 'The policy that controls who can create pull requests + for this repository: `all` or `collaborators_only`.' + enum: + - all + - collaborators_only is_template: type: boolean description: Either `true` to make this repo available as a template @@ -102314,7 +102376,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -103944,7 +104010,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -105293,6 +105363,17 @@ paths: node_id: IFD_DUEDATE data_type: date value: '2025-12-25' + - issue_field_id: 5 + node_id: IFMS_LABELS + data_type: multi_select + value: Frontend,Backend + multi_select_options: + - id: 1 + name: Frontend + color: blue + - id: 2 + name: Backend + color: green headers: Link: *45 '301': *481 @@ -105355,11 +105436,17 @@ paths: date fields - type: number description: The value to set for number fields + - type: array + items: + type: string + description: The value to set for multi_select fields (array + of option names) description: |- The value to set for the field. The type depends on the field's data type: - For text fields: provide a string value - For single_select fields: provide the option name as a string (must match an existing option) - For number fields: provide a numeric value + - For multi_select fields: provide an array of option names (must match existing options) - For date fields: provide an ISO 8601 date string examples: - Critical @@ -169129,6 +169216,7 @@ webhooks: - text - date - single_select + - multi_select - number required: - id @@ -169174,6 +169262,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present + for multi_select field types. + options: + type: array + description: The selected option details. Present for multi_select + field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id changes: @@ -169225,6 +169336,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the previously selected + options. Present for multi_select field types. + options: + type: array + description: The previously selected option details. + Present for multi_select field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id required: @@ -169330,6 +169464,7 @@ webhooks: - text - date - single_select + - multi_select - number required: - id @@ -169373,6 +169508,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + type: integer + description: The identifiers of the selected options. Present + for multi_select field types. + options: + type: array + description: The selected option details. Present for multi_select + field types. + items: + type: object + properties: + id: + type: integer + name: + type: string + color: + type: string + description: + type: + - string + - 'null' required: - id organization: *862 diff --git a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json index 7abc7ff60d..7db8ae7190 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -92279,6 +92279,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -92350,6 +92351,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -96443,6 +96483,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -96514,6 +96555,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -115569,6 +115649,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -115640,6 +115721,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -123805,6 +123925,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -123876,6 +123997,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -127969,6 +128129,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -128040,6 +128201,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -208767,6 +208967,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -208838,6 +209039,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -212931,6 +213171,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -213002,6 +213243,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -225971,6 +226251,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -225983,7 +226264,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -226104,6 +226385,32 @@ ], "created_at": "2024-12-11T14:39:09Z", "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 3, + "node_id": "IFMS_kwDNAd3NAZt", + "name": "Categories", + "description": "Issue categories", + "data_type": "multi_select", + "options": [ + { + "id": 4, + "name": "Frontend", + "color": "blue" + }, + { + "id": 5, + "name": "Backend", + "color": "green" + }, + { + "id": 6, + "name": "Infrastructure", + "color": "purple" + } + ], + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" } ] } @@ -226192,6 +226499,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -226204,7 +226512,7 @@ ] }, "options": { - "description": "Options for single select fields. Required when data_type is 'single_select'.", + "description": "Options for select fields. Required when data_type is 'single_select' or 'multi_select'.", "type": [ "array", "null" @@ -226323,6 +226631,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -226335,7 +226644,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -226587,7 +226896,7 @@ ] }, "options": { - "description": "Options for single select fields. Only applicable when updating single_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", + "description": "Options for select fields. Only applicable when updating single_select or multi_select fields. When provided, this array **replaces** the entire existing set of options rather than adding to or updating individual options. To retain or update an existing option, include it in the array with its `id`. Options sent without an `id` are treated as new options and may cause existing options to be deleted and recreated.", "type": "array", "items": { "type": "object", @@ -226722,6 +227031,7 @@ "text", "date", "single_select", + "multi_select", "number" ] }, @@ -226734,7 +227044,7 @@ ] }, "options": { - "description": "Available options for single select fields.", + "description": "Available options for single select and multi select fields.", "type": [ "array", "null" @@ -231463,6 +231773,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -231534,6 +231845,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -263116,6 +263466,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -263187,6 +263538,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -274269,6 +274659,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -274340,6 +274731,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -328118,6 +328548,19 @@ "description": "Either `true` to enable the wiki for this repository or `false` to disable it.", "default": true }, + "has_pull_requests": { + "type": "boolean", + "description": "Either `true` to allow pull requests for this repository or `false` to prevent pull requests.", + "default": true + }, + "pull_request_creation_policy": { + "type": "string", + "description": "The policy that controls who can create pull requests for this repository: `all` or `collaborators_only`.", + "enum": [ + "all", + "collaborators_only" + ] + }, "is_template": { "type": "boolean", "description": "Either `true` to make this repo available as a template repository or `false` to prevent it.", @@ -477477,6 +477920,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -477548,6 +477992,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -481641,6 +482124,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -481712,6 +482196,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -509622,6 +510145,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -509693,6 +510217,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -510165,9 +510728,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -513782,6 +514351,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -513853,6 +514423,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -524070,6 +524679,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -524141,6 +524751,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -529810,6 +530459,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -529881,6 +530531,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -535346,6 +536035,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -535417,6 +536107,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -536054,9 +536783,15 @@ }, { "type": "number" + }, + { + "type": "array", + "items": { + "type": "string" + } } ], - "description": "The value to set for the field" + "description": "The value to set for the field. For multi-select fields, provide an array of option names." } }, "required": [ @@ -539669,6 +540404,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -539740,6 +540476,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -543770,6 +544545,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -543841,6 +544617,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -547668,6 +548483,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -547739,6 +548555,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -553956,6 +554811,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -554027,6 +554883,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -557961,6 +558856,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -558032,6 +558928,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -562030,6 +562965,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -562101,6 +563037,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -566121,6 +567096,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -566192,6 +567168,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -578138,6 +579153,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -578209,6 +579225,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -578250,6 +579305,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -578420,9 +579493,16 @@ { "type": "number", "description": "The value to set for number fields" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "description": "The value to set for multi_select fields (array of option names)" } ], - "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For date fields: provide an ISO 8601 date string", + "description": "The value to set for the field. The type depends on the field's data type:\n- For text fields: provide a string value\n- For single_select fields: provide the option name as a string (must match an existing option)\n- For number fields: provide a numeric value\n- For multi_select fields: provide an array of option names (must match existing options)\n- For date fields: provide an ISO 8601 date string", "examples": [ "Critical" ] @@ -578506,6 +579586,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -578577,6 +579658,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -578618,6 +579738,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -579005,6 +580143,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -579076,6 +580215,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -579117,6 +580295,24 @@ "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" + }, + { + "issue_field_id": 5, + "node_id": "IFMS_LABELS", + "data_type": "multi_select", + "value": "Frontend,Backend", + "multi_select_options": [ + { + "id": 1, + "name": "Frontend", + "color": "blue" + }, + { + "id": 2, + "name": "Backend", + "color": "green" + } + ] } ] } @@ -584881,6 +586077,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -584952,6 +586149,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -590019,6 +591255,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -590090,6 +591327,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -594014,6 +595290,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -594085,6 +595362,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -597997,6 +599313,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -598068,6 +599385,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -602065,6 +603421,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -602136,6 +603493,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -616831,6 +618227,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -616902,6 +618299,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -745767,6 +747203,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -745838,6 +747275,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -795310,6 +796786,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -795381,6 +796858,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -826742,6 +828258,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -826813,6 +828330,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -846403,6 +847959,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -846474,6 +848031,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -850567,6 +852163,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -850638,6 +852235,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -859041,6 +860677,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -859112,6 +860749,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -863205,6 +864881,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -863276,6 +864953,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -871689,6 +873405,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -871760,6 +873477,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -875853,6 +877609,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -875924,6 +877681,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -895658,6 +897454,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -895729,6 +897526,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -911613,6 +913449,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -911684,6 +913521,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -915777,6 +917653,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -915848,6 +917725,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -924247,6 +926163,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -924318,6 +926235,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -928411,6 +930367,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -928482,6 +930439,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1208275,6 +1210271,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1208346,6 +1210343,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1211950,6 +1213986,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1212021,6 +1214058,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1218467,6 +1220543,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1218538,6 +1220615,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1222142,6 +1224258,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1222213,6 +1224330,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1228659,6 +1230815,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1228730,6 +1230887,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1233283,6 +1235479,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1233354,6 +1235551,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1238851,6 +1241087,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1238922,6 +1241159,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1243475,6 +1245751,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1243546,6 +1245823,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1247769,6 +1250085,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1247840,6 +1250157,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1252143,6 +1254499,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1252214,6 +1254571,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1256725,6 +1259121,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1256796,6 +1259193,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1261111,6 +1263547,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1261182,6 +1263619,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1265678,6 +1268154,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1265749,6 +1268226,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1270091,6 +1272607,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1270162,6 +1272679,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1270415,6 +1272971,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -1270477,6 +1273034,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1270543,6 +1273131,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the previously selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The previously selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1274621,6 +1277240,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1274692,6 +1277312,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1274945,6 +1277604,7 @@ "text", "date", "single_select", + "multi_select", "number" ] } @@ -1275007,6 +1277667,37 @@ ] } } + }, + "value_ids": { + "type": "array", + "items": { + "type": "integer" + }, + "description": "The identifiers of the selected options. Present for multi_select field types." + }, + "options": { + "type": "array", + "description": "The selected option details. Present for multi_select field types.", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "color": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + } + } + } } }, "required": [ @@ -1279075,6 +1281766,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1279146,6 +1281838,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1283513,6 +1286244,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1283584,6 +1286316,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1287875,6 +1290646,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1287946,6 +1290718,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1291371,6 +1294182,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1291442,6 +1294254,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1294497,6 +1297348,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1294568,6 +1297420,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1299787,6 +1302678,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1299858,6 +1302750,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1304176,6 +1307107,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1304247,6 +1307179,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1308404,6 +1311375,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1308475,6 +1311447,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1311546,6 +1314557,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1311617,6 +1314629,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1315915,6 +1318966,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1315986,6 +1319038,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1320453,6 +1323544,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1320524,6 +1323616,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1324822,6 +1327953,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1324893,6 +1328025,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1329258,6 +1332429,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1329329,6 +1332501,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1333597,6 +1336808,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1333668,6 +1336880,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1337965,6 +1341216,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1338036,6 +1341288,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1764326,6 +1767617,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1764397,6 +1767689,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1768950,6 +1772281,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1769021,6 +1772353,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1774519,6 +1777890,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1774590,6 +1777962,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1779143,6 +1782554,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1779214,6 +1782626,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1784712,6 +1788163,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1784783,6 +1788235,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1789336,6 +1792827,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1789407,6 +1792899,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1794905,6 +1798436,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1794976,6 +1798508,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ @@ -1799529,6 +1803100,7 @@ "enum": [ "text", "single_select", + "multi_select", "number", "date" ], @@ -1799600,6 +1803172,45 @@ "name", "color" ] + }, + "multi_select_options": { + "description": "Details about the selected options", + "type": [ + "array", + "null" + ], + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "name": { + "description": "The name of the option", + "type": "string", + "examples": [ + "High" + ] + }, + "color": { + "description": "The color of the option", + "type": "string", + "examples": [ + "red" + ] + } + }, + "required": [ + "id", + "name", + "color" + ] + } } }, "required": [ diff --git a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml index fa82c34d31..2af25ce016 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml @@ -31676,6 +31676,7 @@ paths: enum: - text - single_select + - multi_select - number - date examples: @@ -31724,6 +31725,35 @@ paths: - id - name - color + multi_select_options: + description: Details about the selected options + type: + - array + - 'null' + items: + type: object + properties: + id: + description: Unique identifier for the + option. + type: integer + format: int64 + examples: + - 1 + name: + description: The name of the option + type: string + examples: + - High + color: + description: The color of the option + type: string + examples: + - red + required: + - id + - name + - color required: - issue_field_id - node_id @@ -55441,6 +55471,7 @@ paths: - text - date - single_select + - multi_select - number visibility: type: string @@ -55451,7 +55482,8 @@ paths: - organization_members_only - all options: - description: Available options for single select fields. + description: Available options for single select and multi select + fields. type: - array - 'null' @@ -55540,6 +55572,23 @@ paths: color: green created_at: '2024-12-11T14:39:09Z' updated_at: '2024-12-11T14:39:09Z' + - id: 3 + node_id: IFMS_kwDNAd3NAZt + name: Categories + description: Issue categories + data_type: multi_select + options: + - id: 4 + name: Frontend + color: blue + - id: 5 + name: Backend + color: green + - id: 6 + name: Infrastructure + color: purple + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' '404': *6 x-github: githubCloudOnly: false @@ -55585,6 +55634,7 @@ paths: - text - date - single_select + - multi_select - number visibility: description: The visibility of the issue field. Can be `organization_members_only` @@ -55596,8 +55646,8 @@ paths: - organization_members_only - all options: - description: Options for single select fields. Required when data_type - is 'single_select'. + description: Options for select fields. Required when data_type + is 'single_select' or 'multi_select'. type: - array - 'null' @@ -55745,13 +55795,13 @@ paths: - organization_members_only - all options: - description: Options for single select fields. Only applicable when - updating single_select fields. When provided, this array **replaces** - the entire existing set of options rather than adding to or updating - individual options. To retain or update an existing option, include - it in the array with its `id`. Options sent without an `id` are - treated as new options and may cause existing options to be deleted - and recreated. + description: Options for select fields. Only applicable when updating + single_select or multi_select fields. When provided, this array + **replaces** the entire existing set of options rather than adding + to or updating individual options. To retain or update an existing + option, include it in the array with its `id`. Options sent without + an `id` are treated as new options and may cause existing options + to be deleted and recreated. type: array items: type: object @@ -71351,6 +71401,18 @@ paths: description: Either `true` to enable the wiki for this repository or `false` to disable it. default: true + has_pull_requests: + type: boolean + description: Either `true` to allow pull requests for this repository + or `false` to prevent pull requests. + default: true + pull_request_creation_policy: + type: string + description: 'The policy that controls who can create pull requests + for this repository: `all` or `collaborators_only`.' + enum: + - all + - collaborators_only is_template: type: boolean description: Either `true` to make this repo available as a template @@ -101845,7 +101907,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -103431,7 +103497,11 @@ paths: oneOf: - type: string - type: number - description: The value to set for the field + - type: array + items: + type: string + description: The value to set for the field. For multi-select + fields, provide an array of option names. required: - field_id - value @@ -104780,6 +104850,17 @@ paths: node_id: IFD_DUEDATE data_type: date value: '2025-12-25' + - issue_field_id: 5 + node_id: IFMS_LABELS + data_type: multi_select + value: Frontend,Backend + multi_select_options: + - id: 1 + name: Frontend + color: blue + - id: 2 + name: Backend + color: green headers: Link: *45 '301': *481 @@ -104842,11 +104923,17 @@ paths: date fields - type: number description: The value to set for number fields + - type: array + items: + type: string + description: The value to set for multi_select fields (array + of option names) description: |- The value to set for the field. The type depends on the field's data type: - For text fields: provide a string value - For single_select fields: provide the option name as a string (must match an existing option) - For number fields: provide a numeric value + - For multi_select fields: provide an array of option names (must match existing options) - For date fields: provide an ISO 8601 date string examples: - Critical @@ -168685,6 +168772,7 @@ webhooks: - text - date - single_select + - multi_select - number required: - id @@ -168730,6 +168818,29 @@ webhooks: type: - string - 'null' + value_ids: + type: array + items: + {"code":"deadline_exceeded","msg":"operation timed out"}