Interface ```typescript interface Foo { id: number | null; } ``` fails the validation by saying `Error: Foo.id should be number` Validator file ```javascript ... properties: { id: { type: 'number', }, } ... ```