TypeBox
Json Schema Type Builder with Static Type Resolution for TypeScript
[](https://opensource.org/licenses/MIT)
## Example
```typescript
import { Type, type Static } from "@alkdev/typebox";
const T = Type.Object({
// const T = {
x: Type.Number(), // type: 'object',
y: Type.Number(), // required: ['x', 'y', 'z'],
z: Type.Number(), // properties: {
}); // x: { type: 'number' },
// y: { type: 'number' },
// z: { type: 'number' }
// }
// }
type T = Static