Stitch · Schema

GraphQLResponse

AfricaFinancial DataOpen BankingPaymentsUnified APISouth AfricaNigeria

Properties

Name Type Description
data object Response data from the GraphQL operation.
errors array
View JSON Schema on GitHub

JSON Schema

stitch-graphqlresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GraphQLResponse",
  "title": "GraphQLResponse",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "additionalProperties": true,
      "description": "Response data from the GraphQL operation."
    },
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GraphQLError"
      }
    }
  }
}