metadata.ts•696 B
import { Static, Type } from '@sinclair/typebox'
/**
* Flexible key-value record type for storing arbitrary data
*
* The Metadata type provides a flexible way to store additional information
* on various entities without requiring schema changes. It can be used for:
* - Custom categorization
* - Integration with external systems
* - Environment-specific configurations
* - Analytics and tracking information
*
* @example
* // Example metadata for a project
* const metadata = {
* department: "marketing",
* priority: 1,
* customField: "customValue"
* }
*/
export const Metadata = Type.Record(Type.String(), Type.Unknown())
export type Metadata = Static<typeof Metadata>