{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://karn-rfq-tools.pages.dev/schema.json",
  "title": "Wallpaper Adhesive RFQ Record",
  "description": "Method-aware buyer request fields without invented commercial terms or test results.",
  "type": "object",
  "required": ["schemaVersion", "recordType", "market", "wallpaperType", "packMode", "commercialTerms", "disclosure"],
  "properties": {
    "schemaVersion": { "const": "1.0.0" },
    "recordType": { "const": "wallpaper_adhesive_rfq" },
    "market": { "type": "string" },
    "wallpaperType": { "type": "string" },
    "packMode": { "enum": ["unknown", "20kg_bulk", "oem_private_label"] },
    "sampleId": { "type": "string" },
    "requestedDocuments": { "type": "array", "items": { "type": "string" } },
    "commercialTerms": {
      "type": "object",
      "required": ["price", "moq", "leadTime"],
      "properties": {
        "price": { "const": "quotation_required" },
        "moq": { "const": "quotation_required" },
        "leadTime": { "const": "quotation_required" }
      }
    },
    "disclosure": { "type": "string" }
  }
}
