Pluralsight · Schema

GraphQLResponse

GraphQLResponse from Pluralsight API

CoursesEducationEngineering MetricsLearningSkills AssessmentTechnologyVideo Training

Properties

Name Type Description
data object The query result data
errors array Any errors that occurred during query execution
View JSON Schema on GitHub

JSON Schema

pluralsight-content-slug-graph-ql-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/pluralsight/refs/heads/main/json-schema/pluralsight-content-slug-graph-ql-response-schema.json",
  "title": "GraphQLResponse",
  "description": "GraphQLResponse from Pluralsight API",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "The query result data"
    },
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GraphQLError"
      },
      "description": "Any errors that occurred during query execution"
    }
  }
}