Prisma · Schema

PulseError

Error response from the Pulse service

Properties

Name Type Description
code string Machine-readable error code
message string Human-readable error description
meta object Additional error context
View JSON Schema on GitHub

JSON Schema

prisma-pulseerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PulseError",
  "title": "PulseError",
  "type": "object",
  "description": "Error response from the Pulse service",
  "properties": {
    "code": {
      "type": "string",
      "description": "Machine-readable error code"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error description"
    },
    "meta": {
      "type": "object",
      "description": "Additional error context",
      "additionalProperties": true
    }
  },
  "required": [
    "code",
    "message"
  ]
}