{
  "config": {},
  "specification": {
    "elements": {
      "actor": {
        "notation": "Actor"
      },
      "database": {
        "notation": "Database"
      },
      "service": {
        "notation": "Service",
        "container": true
      },
      "system": {
        "notation": "Software System",
        "container": true
      }
    },
    "relationships": {
      "reads": {
        "notation": "reads",
        "dashed": true
      },
      "uses": {
        "notation": "uses"
      }
    }
  },
  "model": {
    "authservice": {
      "kind": "service",
      "title": "Auth Service",
      "technology": "Go"
    },
    "customer": {
      "kind": "actor",
      "title": "Customer"
    },
    "shop": {
      "kind": "system",
      "title": "Shop System",
      "children": {
        "api": {
          "kind": "service",
          "title": "REST API",
          "technology": "Go"
        },
        "db": {
          "kind": "database",
          "title": "Shop DB",
          "technology": "PostgreSQL"
        }
      }
    }
  },
  "relationships": [
    {
      "from": "customer",
      "to": "shop",
      "label": "kauft ein",
      "kind": "uses"
    },
    {
      "from": "shop.api",
      "to": "authservice",
      "label": "authenticate",
      "kind": "uses"
    }
  ],
  "views": {
    "containers": {
      "title": "Shop Intern",
      "scope": "shop",
      "include": [
        "shop.*",
        "authservice"
      ]
    },
    "context": {
      "title": "System Context",
      "include": [
        "customer",
        "shop",
        "authservice"
      ]
    }
  }
}