InvokeWithResponseStreamCompleteEvent

A response confirming that the event stream is complete.

APIs.ioEngineeringPlatform

Properties

Name Type Description
ErrorCode object
ErrorDetails object
LogResult object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-invokewithresponsestreamcompleteevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvokeWithResponseStreamCompleteEvent",
  "title": "InvokeWithResponseStreamCompleteEvent",
  "type": "object",
  "properties": {
    "ErrorCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "An error code."
        }
      ]
    },
    "ErrorDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The details of any returned error."
        }
      ]
    },
    "LogResult": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The last 4 KB of the execution log, which is base64-encoded."
        }
      ]
    }
  },
  "description": "A response confirming that the event stream is complete."
}