{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.adamboas.com/schemas/opportunities-export-sam.schema.json",
  "title": "Opportunities Export (SAM)",
  "type": "object",
  "required": [
    "schema_version",
    "source",
    "count",
    "returned_count",
    "rows",
    "variants",
    "lineage"
  ],
  "properties": {
    "schema_version": {
      "type": "string"
    },
    "source": {
      "const": "sam"
    },
    "count": {
      "type": "number"
    },
    "returned_count": {
      "type": "number"
    },
    "rows": {
      "type": "array"
    },
    "variants": {
      "type": "object"
    },
    "lineage": {
      "type": "object"
    }
  }
}