/**
 * Representation of the 'MetadataConfigurationStruct' schema.
 */
export type MetadataConfigurationStruct = {
    /**
     * @example "uuid"
     * Min Length: 1.
     */
    metadataConfigId: string;
    /**
     * Optional cron expression for scheduling pipeline execution.
     * Must represent an interval greater than 1 hour.
     *
     * @example "0 \*\/20 * * *"
     */
    cronExpression?: string;
} & Record<string, any>;
//# sourceMappingURL=metadata-configuration-struct.d.ts.map