@tibco-tcstk/component-template
Version:
TIBCO Cloud Composer Component to create Schematics in your TIBCO Cloud Application
20 lines (18 loc) • 394 B
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "CloudApplicationSchema",
"title": "Cloud Application Schema",
"type": "object",
"properties": {
"name": {
"type": "string"
},"endpoint": {
"type": "string",
"description": "The TCI Endpoint to Call",
"x-prompt": "What is the TCI Endpoint ?"
}
},
"required": [
"name", "endpoint"
]
}