Stigg · Schema

GraphQLResponse

FinOpsPricingBillingEntitlementsUsage-Based BillingFeature FlagsProduct-Led GrowthSubscriptionsSaaSGraphQLREST

Properties

Name Type Description
data object Response data from the GraphQL operation.
errors array Array of GraphQL errors if any occurred.
View JSON Schema on GitHub

JSON Schema

stigg-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",
      "description": "Response data from the GraphQL operation.",
      "additionalProperties": true
    },
    "errors": {
      "type": "array",
      "description": "Array of GraphQL errors if any occurred.",
      "items": {
        "$ref": "#/components/schemas/GraphQLError"
      }
    }
  }
}