{
  "type": "object",
  "properties": {
    "issue_field_values": {
      "type": "array",
      "description": "An array of issue field values to add to this issue. Each field value must include the field ID and the value to set.",
      "items": {
        "type": "object",
        "properties": {
          "field_id": {
            "type": "integer",
            "description": "The ID of the issue field to set"
          },
          "value": {
            "oneOf": [
              {
                "type": "string",
                "description": "The value to set for text, single_select, or date fields"
              },
              {
                "type": "number",
                "description": "The value to set for number fields"
              }
            ],
            "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"
          }
        },
        "required": [
          "field_id",
          "value"
        ],
        "additionalProperties": false
      },
      "maxItems": 25
    }
  },
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}