@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
31 lines • 1.27 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const schema_1 = require("@sprucelabs/schema");
const createConversationTopicOptionsSchema = {
id: 'createConversationTopicOptions',
version: 'v2020_07_22',
namespace: 'SpruceCli',
name: 'Create conversation options',
description: 'Define a topic you want to discuss.',
fields: {
/** Topic. What should we talk about or try and get done, e.g. Book an appointment or tell a knock knock joke. */
'nameReadable': {
label: 'Topic',
type: 'text',
isRequired: true,
hint: 'What should we talk about or try and get done, e.g. Book an appointment or tell a knock knock joke.',
options: undefined
},
/** Camel case name. camelCase version of the name */
'nameCamel': {
label: 'Camel case name',
type: 'text',
isRequired: true,
hint: 'camelCase version of the name',
options: undefined
},
}
};
schema_1.SchemaRegistry.getInstance().trackSchema(createConversationTopicOptionsSchema);
exports.default = createConversationTopicOptionsSchema;
//# sourceMappingURL=createConversationTopicOptions.schema.js.map