{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.aep.foundation/schemas/problem.schema.json",
  "title": "AEP Problem Details",
  "type": "object",
  "required": ["type", "title", "status", "code"],
  "additionalProperties": true,
  "properties": {
    "type": {
      "type": "string",
      "pattern": "^urn:aep:error:"
    },
    "title": {
      "type": "string",
      "minLength": 1
    },
    "status": {
      "type": "integer"
    },
    "code": {
      "type": "string",
      "minLength": 1
    },
    "owner_action_required": {
      "const": "true"
    },
    "verification_pending": {
      "type": "array",
      "minItems": 1,
      "uniqueItems": true,
      "items": { "type": "string", "minLength": 1 }
    },
    "requirements_pending": {
      "type": "array",
      "minItems": 1,
      "uniqueItems": true,
      "items": { "type": "string", "minLength": 1 }
    }
  }
}
