import type { HttpMethod } from '@citrineos/types'; export interface ICommandEndpointMetadata { method: HttpMethod; path: string; querySchema?: object; bodySchema?: object; responseSchema?: object; tags?: string[]; description?: string; }