@tibco-tcstk/component-template
Version:
TIBCO Cloud Composer Component to create Schematics in your TIBCO Cloud Application
50 lines (48 loc) • 1.4 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "CloudApplicationSchema",
"title": "Cloud Application Schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"$default": {
"$source": "argv",
"index": 0
}
},
"sfserver": {
"type": "string",
"description": "The Spotfire Server to use",
"x-prompt": "What is the Spotfire server you want to use ?",
"default": "https://eu.spotfire-next.cloud.tibco.com"
},
"sflocation": {
"type": "string",
"description": "The Spotfire Report Location",
"x-prompt": "What is the Location of the Spotfire Report you want to use ?",
"default": "/Samples/Expense Analyzer Dashboard"
},
"doAddRoutes": {
"type": "boolean",
"description": "",
"x-prompt": "Do you want to add the routes ?",
"default": "true"
},
"doAddConfig": {
"type": "boolean",
"description": "",
"x-prompt": "Do you want to add the configuration menu for Spotfire ?",
"default": "true"
},
"doAddMapping": {
"type": "boolean",
"description": "",
"x-prompt": "Do you want to add configuration for Spotfire Mapping to LiveApps ?",
"default": "true"
}
},
"required": [
"name","sfserver","sflocation","doAddRoutes","doAddConfig","doAddMapping"
]
}