Skip to content

Commit 505f65d

Browse files
authored
Add optional description field to Implementation schema
Added an optional description field to the schema.
1 parent 67d79d4 commit 505f65d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/types.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,12 @@ export const ImplementationSchema = BaseMetadataSchema.extend({
329329
/**
330330
* An optional URL of the website for this implementation.
331331
*/
332-
websiteUrl: z.string().optional()
332+
websiteUrl: z.string().optional(),
333+
334+
/**
335+
* An optional human-readable description of what this implementation does.
336+
*/
337+
description: z.string().optional(),
333338
});
334339

335340
const FormElicitationCapabilitySchema = z.intersection(

0 commit comments

Comments
 (0)