{
  "@context": {
    "@vocab": "http://www.example.org#"
  },
  "features": {
    "alice": {
      "description": "Imports /lib/socrates, but uses ./personal/* as data. ",
      "use": "/lib/socrates",
      "without":{
        "inference.data": "/**"
      },
      "with":{
        "inference.data": "./personal/*"
      }
    },
    "alice_and_socrates": {
      "description": "Imports /lib/socrates, and adds ./personal/* to the data",
      "use": "/lib/socrates",
      "with":{
        "inference.data": "./personal/*"
      }
    },
    "alice_without_socrates": {
      "description": "Imports /lib/socrates, adds ./personal/* and removes /lib/data/socrates.n3",
      "use": "/lib/socrates",
      "without":{
        "inference.data": "/lib/data/socrates.n3"
      },
      "with":{
        "inference.data": "./personal/*"
      }
    },
    "next": "../example_05"
  }
}
