ErrorResponse

Standard error response

AgileBehavior Driven DevelopmentGherkinQuality AssuranceRequirementsTestingUser Stories

Properties

Name Type Description
code string Machine-readable error code
message string Human-readable error description
details string Additional error context or troubleshooting information
View JSON Schema on GitHub

JSON Schema

acceptance-criteria-management-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.example.com/schemas/error-response.json",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Standard error response",
  "properties": {
    "code": {
      "type": "string",
      "description": "Machine-readable error code"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error description"
    },
    "details": {
      "type": "string",
      "description": "Additional error context or troubleshooting information"
    }
  }
}