@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
19 lines (17 loc) • 398 B
text/typescript
import { buildErrorSchema } from '@sprucelabs/schema'
export default buildErrorSchema({
id: 'schemaExists',
name: 'Schema exists',
description: '',
fields: {
schemaId: {
type: 'text',
label: 'Schema id',
isRequired: true,
},
destination: {
type: 'text',
label: 'Destination',
},
},
})