RawResult

  • This documentation describes the structure of a raw result object, used for transmitting unprocessed code data.

  • The object contains two fields: scope, which is an optional string specifying the code's context, and rawCode, a required string holding the actual code.

  • The rawCode field can store code from various sources like integrators or internal subsystems.

Raw result object.

JSON representation
{
  "scope": string,
  "rawCode": string
}
Fields
scope

string

OPTIONAL: Scope of the rawCode, can be empty.

rawCode

string

REQUIRED: Raw code from the integrator or subsystems within it.