{
  "name": "Real Estate Listing Assets",
  "description": "Collect all assets for a property listing — photos, address, size, price, features, floor plan, and exposé PDF.",
  "version": "1.0",
  "questions": [
    {
      "questionText": "Property name or listing title",
      "questionType": "text",
      "required": true
    },
    {
      "questionText": "Property address",
      "questionType": "textarea",
      "required": true
    },
    {
      "questionText": "Property type",
      "questionType": "select",
      "required": true,
      "options": ["Apartment", "House / Villa", "Commercial space", "Land / Plot", "Penthouse", "Garage / Parking", "Other"]
    },
    {
      "questionText": "Listing type",
      "questionType": "select",
      "required": true,
      "options": ["For sale", "For rent", "Short-term rental", "Commercial lease"]
    },
    {
      "questionText": "Asking price or monthly rent",
      "questionType": "number",
      "required": true
    },
    {
      "questionText": "Living area (m²)",
      "questionType": "number",
      "required": true
    },
    {
      "questionText": "Number of rooms",
      "questionType": "number",
      "required": false
    },
    {
      "questionText": "Number of bedrooms",
      "questionType": "number",
      "required": false
    },
    {
      "questionText": "Number of bathrooms",
      "questionType": "number",
      "required": false
    },
    {
      "questionText": "Key features and equipment",
      "questionType": "multiselect",
      "required": false,
      "options": ["Balcony / Terrace", "Garden", "Parking / Garage", "Elevator", "Air conditioning", "Fitted kitchen", "Cellar / Storage", "New build", "Renovated", "Energy-efficient"]
    },
    {
      "questionText": "Property description (for the listing)",
      "questionType": "textarea",
      "required": true
    },
    {
      "questionText": "Please upload property photos (exterior and interior).",
      "questionType": "file",
      "required": true,
      "fileConfig": {
        "allowedFileTypes": ["image/jpeg", "image/png", "image/webp"],
        "maxFileSizeMB": 25,
        "maxFiles": 40
      }
    },
    {
      "questionText": "Please upload the floor plan.",
      "questionType": "file",
      "required": false,
      "fileConfig": {
        "allowedFileTypes": ["image/*", "application/pdf"],
        "maxFileSizeMB": 25,
        "maxFiles": 5
      }
    },
    {
      "questionText": "Please upload the exposé or property brochure (PDF).",
      "questionType": "file",
      "required": false,
      "fileConfig": {
        "allowedFileTypes": ["application/pdf"],
        "maxFileSizeMB": 25,
        "maxFiles": 3
      }
    },
    {
      "questionText": "Contact person for viewings (name, phone, email)",
      "questionType": "textarea",
      "required": true
    },
    {
      "questionText": "Earliest availability / move-in date",
      "questionType": "date",
      "required": false
    }
  ]
}
