{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/pluralsight/refs/heads/main/json-schema/pluralsight-channels-graph-ql-error-schema.json", "title": "GraphQLError", "description": "GraphQLError from Pluralsight API", "type": "object", "properties": { "message": { "type": "string", "description": "Error message", "example": "example_value" }, "locations": { "type": "array", "items": { "type": "object", "properties": { "line": { "type": "integer" }, "column": { "type": "integer" } } } }, "path": { "type": "array", "items": { "type": "string" } } } }