{"$schema":"https://json-schema.org/draft/2020-12/schema","title":"Tender Response","description":"Supplier response to a buyer's RFQ or RFP (tender submission). Captures supplier identification, executive summary, solution description, proposed team, priced breakdown with total, commercial terms, delivery plan, client references and any exceptions to the buyer's requirements. Aligned with ISO 9001:2015 clause 8.4.2 from the supplier side and with EU public-procurement submission practice (Directive 2014/24/EU art. 56–69) adapted for private-sector tenders.","type":"object","additionalProperties":false,"required":["supplier","tender_reference","response_date","executive_summary","solution_description","team_composition","pricing","total_price","commercial_terms","delivery_plan","references","signatory"],"$defs":{"supplier":{"type":"object","additionalProperties":false,"required":["name","address","registration","contact"],"properties":{"name":{"type":"string"},"address":{"type":"string"},"registration":{"type":"string"},"contact":{"type":"object","additionalProperties":false,"required":["name","email"],"properties":{"name":{"type":"string"},"role":{"type":"string"},"email":{"type":"string","format":"email"},"phone":{"type":"string"}}}}},"team_member":{"type":"object","additionalProperties":false,"required":["role","name","experience_years"],"properties":{"role":{"type":"string"},"name":{"type":"string"},"experience_years":{"type":"number","minimum":0},"cv_reference":{"type":"string"}}},"price_line":{"type":"object","additionalProperties":false,"required":["item_or_phase","amount","currency"],"properties":{"item_or_phase":{"type":"string"},"amount":{"type":"number","minimum":0},"currency":{"type":"string","pattern":"^[A-Z]{3}$"},"notes":{"type":"string"}}},"total_price":{"type":"object","additionalProperties":false,"required":["amount","currency"],"properties":{"amount":{"type":"number","minimum":0},"currency":{"type":"string","pattern":"^[A-Z]{3}$"},"notes":{"type":"string"}}},"reference":{"type":"object","additionalProperties":false,"required":["client","project_summary","value_range","year"],"properties":{"client":{"type":"string"},"project_summary":{"type":"string"},"value_range":{"type":"string"},"year":{"type":"integer","minimum":1900,"maximum":2100}}},"signatory":{"type":"object","additionalProperties":false,"required":["name","title","date"],"properties":{"name":{"type":"string"},"title":{"type":"string"},"date":{"type":"string","format":"date"}}}},"properties":{"supplier":{"$ref":"#/$defs/supplier"},"tender_reference":{"type":"string"},"response_date":{"type":"string","format":"date"},"executive_summary":{"type":"string"},"solution_description":{"type":"string"},"team_composition":{"type":"array","minItems":1,"items":{"$ref":"#/$defs/team_member"}},"pricing":{"type":"array","minItems":1,"items":{"$ref":"#/$defs/price_line"}},"total_price":{"$ref":"#/$defs/total_price"},"commercial_terms":{"type":"string"},"delivery_plan":{"type":"string"},"references":{"type":"array","minItems":1,"items":{"$ref":"#/$defs/reference"}},"exceptions_to_rfp":{"type":"array","items":{"type":"string"}},"signatory":{"$ref":"#/$defs/signatory"}}}