{"$schema":"https://json-schema.org/draft/2020-12/schema","title":"Root Cause Analysis","description":"Root Cause Analysis (RCA) using 5-Whys, Fishbone (Ishikawa), Fault Tree or another method. Output of the corrective-action process required by ISO 9001:2015 clause 10.2 and ISO 45001:2018 clause 10.2. Captures the problem, chronology, analysis, root causes, corrective and preventive actions and lessons learned.","type":"object","additionalProperties":false,"required":["rca_id","date_of_analysis","facilitator","team_members","problem_statement","chronology","analysis_method","root_causes","corrective_actions","lessons_learned","approval"],"$defs":{"person":{"type":"object","additionalProperties":false,"required":["name","role"],"properties":{"name":{"type":"string"},"role":{"type":"string"}}},"chronology_event":{"type":"object","additionalProperties":false,"required":["timestamp","event"],"properties":{"timestamp":{"type":"string"},"event":{"type":"string"}}},"five_whys_chain":{"type":"object","additionalProperties":false,"required":["level_1_why","level_2_why","level_3_why"],"properties":{"level_1_why":{"type":"string"},"level_2_why":{"type":"string"},"level_3_why":{"type":"string"},"level_4_why":{"type":"string"},"level_5_why":{"type":"string"}}},"fishbone_category":{"type":"object","additionalProperties":false,"required":["category","contributing_factors"],"properties":{"category":{"type":"string"},"contributing_factors":{"type":"array","items":{"type":"string"}}}},"fishbone":{"type":"object","additionalProperties":false,"required":["categories"],"properties":{"categories":{"type":"array","items":{"$ref":"#/$defs/fishbone_category"}}}},"corrective_action":{"type":"object","additionalProperties":false,"required":["action","owner","due_date","verification_method"],"properties":{"action":{"type":"string"},"owner":{"type":"string"},"due_date":{"type":"string","format":"date"},"verification_method":{"type":"string"}}},"approval":{"type":"object","additionalProperties":false,"required":["name","title","date"],"properties":{"name":{"type":"string"},"title":{"type":"string"},"date":{"type":"string","format":"date"}}}},"properties":{"entity":{"type":"object","additionalProperties":false,"required":["name"],"properties":{"name":{"type":"string"},"registration":{"type":"string"},"site":{"type":"string"}}},"rca_id":{"type":"string"},"related_incident_reference":{"type":"string"},"date_of_analysis":{"type":"string","format":"date"},"facilitator":{"$ref":"#/$defs/person"},"team_members":{"type":"array","minItems":1,"items":{"$ref":"#/$defs/person"}},"problem_statement":{"type":"string"},"chronology":{"type":"array","minItems":1,"items":{"$ref":"#/$defs/chronology_event"}},"analysis_method":{"type":"string","enum":["5_whys","fishbone","fault_tree","other"]},"five_whys":{"type":"array","items":{"$ref":"#/$defs/five_whys_chain"}},"fishbone":{"$ref":"#/$defs/fishbone"},"root_causes":{"type":"array","minItems":1,"items":{"type":"string"}},"corrective_actions":{"type":"array","minItems":1,"items":{"$ref":"#/$defs/corrective_action"}},"preventive_actions":{"type":"array","items":{"$ref":"#/$defs/corrective_action"}},"lessons_learned":{"type":"string"},"approval":{"$ref":"#/$defs/approval"}}}