@tibco-tcstk/component-template
Version:
TIBCO Cloud Composer Component to create Schematics in your TIBCO Cloud Application
24 lines (22 loc) • 723 B
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "CloudApplicationSchema",
"title": "Cloud Application Schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"$default": {
"$source": "argv",
"index": 0
}
},"formRef": {
"type": "string",
"description": "You can get the form reference by running the generated form in case manager and looking at the console log.\n *\n * You will see entries like this (filter for *** Forms:)\n * *** Forms: > Using auto-rendered form (formRef): SampleApp.SampleApp.creator.Create SampleApp",
"x-prompt": "What is the Form Reference (formId) ?"
}
},
"required": [
"name", "formRef"
]
}