For this static type: ``` type MyType = { name: string; date: number; }; ``` With this object type definition: ``` let otd: ObjectTypeDefinition<MyType> = new ObjectTypeDefinition<MyType>({ name: StandardType.STRING, date: StandardType.NUMBER }); ```