{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "schemaVersion": 1,
  "artifact": "recon",
  "title": "Bug Hunter Recon Artifact",
  "type": "object",
  "required": ["critical", "high", "medium", "contextOnly"],
  "properties": {
    "critical": {
      "type": "array",
      "items": { "type": "string", "minLength": 1 }
    },
    "high": {
      "type": "array",
      "items": { "type": "string", "minLength": 1 }
    },
    "medium": {
      "type": "array",
      "items": { "type": "string", "minLength": 1 }
    },
    "contextOnly": {
      "type": "array",
      "items": { "type": "string", "minLength": 1 }
    },
    "notes": {
      "type": "array",
      "items": { "type": "string", "minLength": 1 }
    }
  },
  "additionalProperties": false
}
