"""Mock Jira data — Tata Steel supply chain scenario."""

TICKETS = [
    {
        "id": "TS-101",
        "type": "Bug",
        "status": "In Progress",
        "priority": "Critical",
        "summary": "Blast Furnace #3 feed schedule not updated after coal delay",
        "assignee": "manisha.g@tatasteel.com",
        "reporter": "rajesh.kumar@tatasteel.com",
        "created": "2026-02-28",
        "updated": "2026-03-01",
        "description": (
            "Production planning system still shows original feed schedule for BF#3. "
            "Needs to reflect the 12-day delay in coking coal supply (PO #TS-4521). "
            "Risk: Furnace may run short on Feb 10 if not updated."
        ),
        "labels": ["blast-furnace", "production-planning", "coal"],
    },
    {
        "id": "TS-102",
        "type": "Task",
        "status": "To Do",
        "priority": "High",
        "summary": "Procure replacement hydraulic pump for Die Casting Line #2",
        "assignee": "vijay.kamineni@tatasteel.com",
        "reporter": "vijay.kamineni@tatasteel.com",
        "created": "2026-03-01",
        "updated": "2026-03-01",
        "description": (
            "Bosch Rexroth contacted for emergency supply of hydraulic pump. "
            "Quote awaited. Need PO raised urgently to minimise downtime on Line #2."
        ),
        "labels": ["maintenance", "die-casting", "procurement"],
    },
    {
        "id": "TS-103",
        "type": "Story",
        "status": "In Progress",
        "priority": "High",
        "summary": "Enterprise Brain: Integrate Oracle Unifier connector",
        "assignee": "manisha.g@divami.com",
        "reporter": "prathima.inolu@divami.com",
        "created": "2026-02-25",
        "updated": "2026-03-03",
        "description": (
            "Build data agent for Oracle Unifier. Covers cost management, "
            "contracts, and Primavera P6 project data. "
            "Blocked on staging environment credentials."
        ),
        "labels": ["enterprise-brain", "oracle-unifier", "data-agent"],
    },
    {
        "id": "TS-104",
        "type": "Bug",
        "status": "Open",
        "priority": "Medium",
        "summary": "Iron ore fill rate dropped 2% — root cause unknown",
        "assignee": "vara.kumar@tatasteel.com",
        "reporter": "ops-monitoring@tatasteel.com",
        "created": "2026-03-02",
        "updated": "2026-03-04",
        "description": (
            "Automated monitoring flagged a 2% drop in iron ore fill rate at "
            "Jamshedpur plant over the last 72 hours. "
            "Initial analysis points to screening equipment inefficiency. "
            "Root cause investigation in progress."
        ),
        "labels": ["operations", "iron-ore", "fill-rate", "jamshedpur"],
    },
    {
        "id": "TS-105",
        "type": "Task",
        "status": "Done",
        "priority": "Critical",
        "summary": "Emergency cable replacement — Hot Strip Mill crane",
        "assignee": "safety@tatasteel.com",
        "reporter": "safety@tatasteel.com",
        "created": "2026-03-05",
        "updated": "2026-03-05",
        "description": (
            "Frayed overhead crane cable replaced in Hot Strip Mill after "
            "near-miss incident (#SR-2026-0089). "
            "4-hour halt. Operations resumed. Root cause analysis underway."
        ),
        "labels": ["safety", "maintenance", "hot-strip-mill"],
    },
]
