@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
30 lines • 1.16 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const schema_1 = require("@sprucelabs/schema");
const createOrganizationOptionsSchema = {
id: 'createOrganizationOptions',
version: 'v2020_07_22',
namespace: 'SpruceCli',
name: 'create organization action',
description: 'Skills can only communicate with people and skills associated with the same organization. This ensures people can get differentiated experiences across multiple businesses.',
fields: {
/** Name. The name people will read */
'nameReadable': {
label: 'Name',
type: 'text',
isRequired: true,
hint: 'The name people will read',
options: undefined
},
/** Slug. kebab-case of the name */
'nameKebab': {
label: 'Slug',
type: 'text',
hint: 'kebab-case of the name',
options: undefined
},
}
};
schema_1.SchemaRegistry.getInstance().trackSchema(createOrganizationOptionsSchema);
exports.default = createOrganizationOptionsSchema;
//# sourceMappingURL=createOrganizationOptions.schema.js.map