mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const retrieveServiceSchema = z.object({
|
|
id: z
|
|
.string()
|
|
.describe(
|
|
'The id of the service, has to match the `id` of one of the entries in the CSV file or empty string',
|
|
),
|
|
});
|