How do we specify that any fields other than the ones specified are not allowed? SO, f.e., I want this: ``` js var Thing = schema({ foo: Number }) Thing({foo: 5}) // true Thing({foo: 5, bar: "blah"}) // false, because `blah` isn't a specified property. ```