{
  "schema_version": "2.0",
  "graph_title": "BackyardOne - Pod Delegation & Discovery Graph",
  "architect": "Adele",
  "nodes": [
    {
      "id": "1",
      "type": "WHO",
      "label": "Target Homeowner",
      "description": "The property owner looking to build an ADU.",
      "delegated_task": "Map the financial constraints and current home equity.",
      "owner": "MBA Lead (Finance)",
      "status": "In Progress",
      "notes": [
        { "author": "Finance Lead", "date": "Oct 12", "text": "Most have equity but are trapped in 3% mortgages. Need to solve the financing gap." }
      ]
    },
    {
      "id": "2",
      "type": "WHO",
      "label": "Local General Contractors",
      "description": "The builders who actually execute the ADU construction.",
      "delegated_task": "Interview 3 local GCs about their biggest bottlenecks.",
      "owner": "MBA Lead (Ops)",
      "status": "Pending",
      "notes": []
    },
    {
      "id": "3",
      "type": "WHAT",
      "label": "Nashville R1 Zoning",
      "description": "The legal constraints for building an ADU in Nashville.",
      "delegated_task": "Extract exact setback and height requirements from the municipal code.",
      "owner": "Adele (Architect)",
      "status": "Completed",
      "notes": [
        { "author": "Adele", "date": "Oct 10", "text": "Setbacks are 5ft from side property line, 10ft from rear. Max height 25ft." }
      ]
    },
    {
      "id": "4",
      "type": "WHAT",
      "label": "HELOC Products",
      "description": "Credit union financing products for homeowners.",
      "delegated_task": "Identify 3 local credit unions offering specialized HELOCs for ADUs.",
      "owner": "MBA Lead (Finance)",
      "status": "Pending",
      "notes": []
    },
    {
      "id": "5",
      "type": "WHAT IF",
      "label": "Automated Feasibility Engine",
      "description": "The core software product that checks zoning against parcel data.",
      "delegated_task": "Design the logical flow combining zoning [WHAT] and homeowner parcel [WHAT] to output a binary yes/no.",
      "owner": "Adele (Architect)",
      "status": "In Progress",
      "notes": [
        { "author": "Adele", "date": "Oct 13", "text": "This is the ultimate structural hole. We bridge the homeowner directly to the feasibility answer, bypassing the contractor bottleneck." }
      ]
    }
  ],
  "edges": [
    { "from": "1", "to": "4", "relationship": "needs financing" },
    { "from": "1", "to": "3", "relationship": "constrained by" },
    { "from": "2", "to": "3", "relationship": "constrained by" },
    { "from": "3", "to": "5", "relationship": "feeds logic" },
    { "from": "1", "to": "5", "relationship": "uses" }
  ]
}