AI Agents: Custom

Update AI agent

Updates how an existing custom AI Agent behaves in conversations. Use it for an agent configured directly in your SignalWire project; update a linked Dialogflow resource with Update Dialogflow agent.

Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice, Messaging, Fax, or Video.

Learn more about API scopes.

patch/api/fabric/resources/ai_agents/{id}

Path parameters

idstring uuid required

Universal Unique Identifier.

Unique ID of an AI Agent.

Request body

hintsstring[]

Hints help the AI agent understand certain words or phrases better. Words that can commonly be misinterpreted can be added to the hints to help the AI speak more accurately.

See ai.hints in the SWML reference.

languagesobject[]

An array of JSON objects defining supported languages in the conversation. Mutually exclusive with multilingual: if both are set, multilingual is used and this array is ignored.

See ai.languages in the SWML reference.

paramsobject

A JSON object containing parameters as key-value pairs.

See ai.params in the SWML reference.

post_promptobject

The final set of instructions and configuration settings to send to the agent.

See ai.post_prompt in the SWML reference.

pronounceobject[]

An array of JSON objects to clarify the AI's pronunciation of words or expressions.

See ai.pronounce in the SWML reference.

promptobject

Defines the AI agent's personality, goals, behaviors, and instructions for handling conversations. The prompt establishes how the agent should interact with callers, what information it should gather, and how it should respond to various scenarios. It is recommended to write prompts using markdown formatting.

See ai.prompt in the SWML reference.

SWAIGobject

An array of JSON objects to create user-defined functions/endpoints that can be executed during the dialogue.

See ai.SWAIG in the SWML reference.

namestring

Name of the AI Agent.

Example request

{
  "hints": [
    "pizza",
    "pepperoni"
  ],
  "languages": [
    {
      "name": "English",
      "code": "en-US",
      "voice": "rime.spore"
    }
  ],
  "params": {
    "ai_model": "gpt-4o-mini",
    "wait_for_user": true
  },
  "post_prompt": {
    "text": "Summarize the conversation and provide any follow-up action items."
  },
  "pronounce": [
    {
      "replace": "SWML",
      "with": "swim-el",
      "ignore_case": true
    }
  ],
  "prompt": {
    "text": "You are a helpful customer support assistant."
  },
  "SWAIG": {
    "native_functions": [
      "check_time"
    ]
  },
  "name": "My AI Agent"
}

Response

The request has succeeded.

idstring uuid required

Universal Unique Identifier.

project_idstring uuid required

Universal Unique Identifier.

display_namestring required

Display name of the AIAgent Fabric Resource

type'ai_agent' required

Type of the Fabric Resource

created_atstring date-time required

Date and time when the resource was created.

updated_atstring date-time required

Date and time when the resource was updated.

Example response

{
  "display_name": "Booking Assistant",
  "type": "ai_agent",
  "created_at": "2024-05-06T12:20:00Z",
  "updated_at": "2024-05-06T12:20:00Z",
  "ai_agent": {
    "hints": [
      "pizza",
      "pepperoni"
    ],
    "languages": [
      {
        "name": "English",
        "code": "en-US",
        "voice": "rime.spore"
      }
    ],
    "params": {
      "ai_model": "gpt-4o-mini",
      "wait_for_user": true
    },
    "post_prompt": {
      "text": "Summarize the conversation and provide any follow-up action items."
    },
    "pronounce": [
      {
        "replace": "SWML",
        "with": "swim-el",
        "ignore_case": true
      }
    ],
    "prompt": {
      "text": "You are a helpful customer support assistant."
    },
    "SWAIG": {
      "native_functions": [
        "check_time"
      ]
    },
    "name": "My AI Agent"
  }
}

Changes

Changed in 35 of the 137 revisions of this API.193130036915

  • 173ff877e9cd171See the full diff
    • request property hints/items/ list-of-types was narrowed by removing types object from media type application/json

      request-property-list-of-types-narrowed

    • removed the request property agent_id

      request-property-removed

    • removed the request property global_data

      request-property-removed

    • removed the request property multilingual

      request-property-removed

    • removed the request property post_prompt_url

      request-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/global_data from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/multilingual from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/post_prompt_url from the response with the 200 status

      response-optional-property-removed

    • response property ai_agent/allOf[subschema #1: AI Agent]/hints/items/ list-of-types was narrowed by removing types object from media type application/json of response 200

      response-property-list-of-types-narrowed

  • e79dcc8b2150243515See the full diff
    • removed SWML.Calling.Hint from the hints/items/ request property anyOf list

      request-property-any-of-removed

    • the SWAIG request property type/format changed from / to object/

      request-property-type-changed

    • the global_data request property type/format changed from / to object/

      request-property-type-changed

    • the multilingual request property type/format changed from / to object/

      request-property-type-changed

    • the params request property type/format changed from / to object/

      request-property-type-changed

    • the post_prompt request property type/format changed from / to object/

      request-property-type-changed

    • the prompt request property type/format changed from / to object/

      request-property-type-changed

    • added 'unevaluatedProperties' constraint to the request property SWAIG

      request-property-unevaluated-properties-added

    • added 'unevaluatedProperties' constraint to the request property global_data

      request-property-unevaluated-properties-added

    • added 'unevaluatedProperties' constraint to the request property multilingual

      request-property-unevaluated-properties-added

    • added 'unevaluatedProperties' constraint to the request property params

      request-property-unevaluated-properties-added

    • added 'unevaluatedProperties' constraint to the request property post_prompt

      request-property-unevaluated-properties-added

    • added 'unevaluatedProperties' constraint to the request property prompt

      request-property-unevaluated-properties-added

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/global_data response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/multilingual response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/params response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/post_prompt response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • removed the required property ai_agent/allOf[subschema #1: AI Agent]/languages/items/code from the response with the 200 status

      response-required-property-removed

    • removed the required property ai_agent/allOf[subschema #1: AI Agent]/languages/items/name from the response with the 200 status

      response-required-property-removed

    • removed the required property ai_agent/allOf[subschema #1: AI Agent]/languages/items/voice from the response with the 200 status

      response-required-property-removed

    • removed the required property ai_agent/allOf[subschema #1: AI Agent]/pronounce/items/replace from the response with the 200 status

      response-required-property-removed

    • removed the required property ai_agent/allOf[subschema #1: AI Agent]/pronounce/items/with from the response with the 200 status

      response-required-property-removed

    • removed SWML.Calling.AIParams from the params request property allOf list

      request-property-all-of-removed

    • removed SWML.Calling.AIPostPromptUpdate from the post_prompt request property allOf list

      request-property-all-of-removed

    • removed SWML.Calling.AIPromptUpdate from the prompt request property allOf list

      request-property-all-of-removed

    • removed SWML.Calling.GlobalData from the global_data request property allOf list

      request-property-all-of-removed

    • removed SWML.Calling.MultilingualUpdate from the multilingual request property allOf list

      request-property-all-of-removed

    • removed SWML.Calling.SWAIG from the SWAIG request property allOf list

      request-property-all-of-removed

    • removed the request property languages/items/auto_emotion

      request-property-removed

    • removed the request property languages/items/auto_speed

      request-property-removed

    • removed the request property languages/items/code

      request-property-removed

    • removed the request property languages/items/engine

      request-property-removed

    • removed the request property languages/items/fillers

      request-property-removed

    • removed the request property languages/items/function_fillers

      request-property-removed

    • removed the request property languages/items/listen_language

      request-property-removed

    • removed the request property languages/items/model

      request-property-removed

    • removed the request property languages/items/name

      request-property-removed

    • removed the request property languages/items/params

      request-property-removed

    • removed the request property languages/items/pronounce

      request-property-removed

    • removed the request property languages/items/speech_fillers

      request-property-removed

    • removed the request property languages/items/turn_fillers

      request-property-removed

    • removed the request property languages/items/voice

      request-property-removed

    • removed the request property pronounce/items/ignore_case

      request-property-removed

    • removed the request property pronounce/items/replace

      request-property-removed

    • removed the request property pronounce/items/with

      request-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/auto_emotion from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/auto_speed from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/engine from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/fillers from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/function_fillers from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/listen_language from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/params from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/pronounce from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/speech_fillers from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/languages/items/turn_fillers from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/pronounce/items/ignore_case from the response with the 200 status

      response-optional-property-removed

    • added subschema #2 to the hints/items/ request property anyOf list

      request-property-any-of-added

    • removed SWML.Calling.AIParams from the ai_agent/allOf[subschema #1: AI Agent]/params response property allOf list for the response status 200

      response-property-all-of-removed

    • removed SWML.Calling.AIPostPrompt from the ai_agent/allOf[subschema #1: AI Agent]/post_prompt response property allOf list for the response status 200

      response-property-all-of-removed

    • removed SWML.Calling.AIPrompt from the ai_agent/allOf[subschema #1: AI Agent]/prompt response property allOf list for the response status 200

      response-property-all-of-removed

    • removed SWML.Calling.GlobalData from the ai_agent/allOf[subschema #1: AI Agent]/global_data response property allOf list for the response status 200

      response-property-all-of-removed

    • removed SWML.Calling.Multilingual from the ai_agent/allOf[subschema #1: AI Agent]/multilingual response property allOf list for the response status 200

      response-property-all-of-removed

    • removed SWML.Calling.SWAIG from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG response property allOf list for the response status 200

      response-property-all-of-removed

    • added subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/hints/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • removed SWML.Calling.Hint from the ai_agent/allOf[subschema #1: AI Agent]/hints/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • added 'unevaluatedProperties' constraint to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG response property for the status 200

      response-property-unevaluated-properties-added

    • added 'unevaluatedProperties' constraint to the ai_agent/allOf[subschema #1: AI Agent]/global_data response property for the status 200

      response-property-unevaluated-properties-added

    • added 'unevaluatedProperties' constraint to the ai_agent/allOf[subschema #1: AI Agent]/multilingual response property for the status 200

      response-property-unevaluated-properties-added

    • added 'unevaluatedProperties' constraint to the ai_agent/allOf[subschema #1: AI Agent]/params response property for the status 200

      response-property-unevaluated-properties-added

    • added 'unevaluatedProperties' constraint to the ai_agent/allOf[subschema #1: AI Agent]/post_prompt response property for the status 200

      response-property-unevaluated-properties-added

    • added 'unevaluatedProperties' constraint to the ai_agent/allOf[subschema #1: AI Agent]/prompt response property for the status 200

      response-property-unevaluated-properties-added

    This revision also has 11 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 51e63ae4cf5511562See the full diff
    • added the new required request property languages/items/code

      new-required-request-property

    • added the new required request property languages/items/name

      new-required-request-property

    • added the new required request property languages/items/voice

      new-required-request-property

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[SWML.Calling.ContextsTextObjectUpdate]/enter_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[SWML.Calling.ContextsTextObjectUpdate]/exit_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObjectUpdate]/enter_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObjectUpdate]/exit_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[SWML.Calling.ContextsTextObjectUpdate]/enter_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[SWML.Calling.ContextsTextObjectUpdate]/exit_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObjectUpdate]/enter_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObjectUpdate]/exit_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.FunctionFillers to the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers request property allOf list

      request-property-all-of-added

    • added SWML.Calling.SWAIG to the SWAIG request property allOf list

      request-property-all-of-added

    • removed SWML.Calling.LanguagesWithSoloFillers SWML.Calling.LanguagesWithFillers from the languages/items/ request property anyOf list

      request-property-any-of-removed

    • the languages/items/ request property type/format changed from / to object/

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[SWML.Calling.ContextsTextObjectUpdate]/enter_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[SWML.Calling.ContextsTextObjectUpdate]/exit_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObjectUpdate]/enter_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObjectUpdate]/exit_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[SWML.Calling.ContextsTextObjectUpdate]/enter_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[SWML.Calling.ContextsTextObjectUpdate]/exit_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObjectUpdate]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObjectUpdate]/enter_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObjectUpdate]/exit_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • the prompt/allOf[SWML.Calling.AIPromptUpdate]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers request property type/format changed from array/ to /

      request-property-type-changed

    • added 'unevaluatedProperties' constraint to the request property languages/items/

      request-property-unevaluated-properties-added

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/fillers/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/fillers/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/fillers/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/fillers/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/internal_fillers/allOf[SWML.Calling.SWAIGInternalFiller]/adjust_response_latency/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/internal_fillers/allOf[SWML.Calling.SWAIGInternalFiller]/change_context/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/internal_fillers/allOf[SWML.Calling.SWAIGInternalFiller]/check_time/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/internal_fillers/allOf[SWML.Calling.SWAIGInternalFiller]/get_ideal_strategy/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/internal_fillers/allOf[SWML.Calling.SWAIGInternalFiller]/get_visual_input/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/internal_fillers/allOf[SWML.Calling.SWAIGInternalFiller]/next_step/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/internal_fillers/allOf[SWML.Calling.SWAIGInternalFiller]/wait_for_user/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/internal_fillers/allOf[SWML.Calling.SWAIGInternalFiller]/wait_seconds/allOf[SWML.Calling.FunctionFillers]/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/languages/items/ response's property type/format changed from / to object/ for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #1: Prompt with Text]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/default/allOf[SWML.Calling.ContextsObject]/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[SWML.Calling.ContextsTextObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/enter_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/prompt/allOf[SWML.Calling.AIPrompt]/anyOf[subschema #2: Prompt with POM]/contexts/allOf[subschema #1: contexts]/unevaluatedProperties/anyOf[subschema #1: ContextsPOMObject]/exit_fillers response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • removed SWML.Calling.SWAIGUpdate from the SWAIG request property allOf list

      request-property-all-of-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/internal_fillers/allOf[SWML.Calling.SWAIGInternalFiller]/hangup from the response with the 200 status

      response-optional-property-removed

    This revision's changelog hit the recording limit, so it may not list every change to this endpoint.

    This revision also has 26 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 1e3d98618de032192See the full diff
    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response request property type/format changed from string/ to /

      request-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response response's property type/format changed from string/ to / for status 200

      response-property-type-changed

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added the new optional request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/post_process

      new-optional-request-property

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response request property anyOf list

      request-property-any-of-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/post_process to the response with the 200 status

      response-optional-property-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.SwaigToolResult subschema #1 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 subschema #3 subschema #4 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-added

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #1: Action union]/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 subschema #3 subschema #4 from the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/anyOf[subschema #2]/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/functions/items/ response property anyOf list for the response status 200

      response-property-any-of-removed

    This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 549e44d6120b4848See the full diff
    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action request property type/format changed from array/ to /

      request-property-type-changed

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the response property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response became optional for the status 200

      response-property-became-optional

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action response's property type/format changed from array/ to / for status 200

      response-property-type-changed

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action request property anyOf list

      request-property-any-of-added

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • the request property SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/response became optional

      request-property-became-optional

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    • added SWML.Calling.Action subschema #2 to the ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action response property anyOf list for the response status 200

      response-property-any-of-added

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/includes from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #4: amazon_bedrock Method]/amazon_bedrock/allOf[SWML.Calling.AmazonBedrockObject]/SWAIG/allOf[SWML.Calling.BedrockSWAIG]/native_functions from the response with the 200 status

      response-optional-property-removed

    This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • added the new optional request property params/allOf[subschema #1: params object]/auto_correct

      new-optional-request-property

    • added the new optional request property params/allOf[subschema #1: params object]/redact_prompt

      new-optional-request-property

    • added the new optional request property params/allOf[subschema #1: params object]/utility_model

      new-optional-request-property

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • removed the request property params/allOf[subschema #1: params object]/auto_correct

      request-property-removed

    • removed the request property params/allOf[subschema #1: params object]/redact_prompt

      request-property-removed

    • removed the request property params/allOf[subschema #1: params object]/utility_model

      request-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/params/allOf[subschema #1: params object]/auto_correct from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/params/allOf[subschema #1: params object]/redact_prompt from the response with the 200 status

      response-optional-property-removed

    • removed the optional property ai_agent/allOf[subschema #1: AI Agent]/params/allOf[subschema #1: params object]/utility_model from the response with the 200 status

      response-optional-property-removed

    • added the new optional request property params/allOf[subschema #1: params object]/auto_correct

      new-optional-request-property

    • added the new optional request property params/allOf[subschema #1: params object]/redact_prompt

      new-optional-request-property

    • added the new optional request property params/allOf[subschema #1: params object]/utility_model

      new-optional-request-property

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #1: SWAIG Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #2: startup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #3: hangup_hook Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/expressions/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/main/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/SWAIG/allOf[subschema #1: swaig]/functions/items/anyOf[subschema #4: summarize_conversation Function]/data_map/allOf[subschema #1: DataMap object]/webhooks/items/output/allOf[subschema #1: Output object]/action/items/anyOf[subschema #1: SWML Action]/SWML/allOf[subschema #1: Calling SWML Document]/sections/unevaluatedProperties/items/anyOf[subschema #2: ai Method]/ai/allOf[subschema #1: AI Object]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/params/allOf[subschema #1: params object]/auto_correct to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/params/allOf[subschema #1: params object]/redact_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property ai_agent/allOf[subschema #1: AI Agent]/params/allOf[subschema #1: params object]/utility_model to the response with the 200 status

      response-optional-property-added

Of the 137 revisions, 3 have a changelog that could not be searched.