{
  "@context": {
    "@vocab": "http://www.example.org#"
  },
  "features": {
    "guests":{
      "description": "A guest list with all names",
      "inference": {
        "data": [
          "/people/*/*",
          "./data/*"
        ],
        "query": "./queries/query_guests.n3"
      }
    },
    "who_is_in": {
      "description": "Populates a web page with the guests",
      "Content-Type": "text/html",
      "handlebars": "./apps/guests.html.handlebars",
      "context": {
        "title":"Party Guests"
      },
      "withUrl":{
        "javascript": "./javascript_hook.js"
      }
    },
    "javascript_hook.js": {
      "description": "A javascript hook",
      "Content-Type": "text/javascript",
      "handlebars": "./apps/source.js.handlebars",
      "withUrl": {
        "url":"./guests"
      }
    }
  }
}
