{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://ekbe.net/schemas/marketplace-product-draft-v1.json",
  "title": "EKBE Marketplace Product Draft",
  "type": "object",
  "additionalProperties": false,
  "required": ["schemaVersion", "draftId", "title", "category", "productType", "summary", "formats", "language", "plannedPrice", "license", "delivery", "version", "support", "requirements", "rightsConfirmed", "qualityConfirmed", "status", "updatedAt"],
  "properties": {
    "schemaVersion": { "const": "1.0" },
    "draftId": { "type": "string", "pattern": "^EKBE-DRAFT-[A-Z0-9-]{8,40}$" },
    "title": { "type": "string", "minLength": 5, "maxLength": 120 },
    "category": { "enum": ["documents", "spreadsheets", "ai", "design", "education", "software"] },
    "productType": { "type": "string", "minLength": 3, "maxLength": 80 },
    "summary": { "type": "string", "minLength": 40, "maxLength": 500 },
    "formats": { "type": "array", "minItems": 1, "maxItems": 8, "items": { "type": "string", "minLength": 2, "maxLength": 12 }, "uniqueItems": true },
    "language": { "enum": ["tr", "en", "de", "multi"] },
    "plannedPrice": { "type": "integer", "minimum": 1, "maximum": 1000000 },
    "license": { "type": "string", "minLength": 20, "maxLength": 500 },
    "delivery": { "type": "string", "minLength": 20, "maxLength": 500 },
    "version": { "type": "string", "minLength": 1, "maxLength": 30 },
    "support": { "type": "string", "minLength": 10, "maxLength": 300 },
    "requirements": { "type": "string", "minLength": 10, "maxLength": 300 },
    "rightsConfirmed": { "const": true },
    "qualityConfirmed": { "const": true },
    "status": { "enum": ["draft", "ready-for-review"] },
    "updatedAt": { "type": "string", "format": "date-time" }
  }
}
