{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://parentsvaccineguide.org/schemas/pharmacovigilance_system.schema.json",
  "title": "Pharmacovigilance System Descriptor",
  "type": "object",
  "required": ["id", "name", "region", "lotData", "note"],
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string" },
    "region": { "type": "string" },
    "lotData": { "type": "string", "enum": ["yes", "no"] },
    "note": { "type": "string" }
  },
  "additionalProperties": false
}