github.com/TIBCOSoftware/flogo-lib@v0.5.9/core/trigger/config_schema.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 4 "title": "triggers", 5 "type": "object", 6 "properties": { 7 "triggers": { 8 "type": "array", 9 "items": { 10 "type": "object", 11 "properties": { 12 "name": { 13 "type": "string" 14 }, 15 "settings": { 16 "type": "object" 17 }, 18 "endpoints": { 19 "type": "array", 20 "items": { 21 "type": "object", 22 "properties": { 23 "actionURI": { 24 "type": "string" 25 }, 26 "actionType": { 27 "type": "string" 28 }, 29 "settings": { 30 "type": "object" 31 } 32 }, 33 "required": [ 34 "actionType","actionURI" 35 ] 36 } 37 } 38 }, 39 "required": [ 40 "name", 41 "endpoints" 42 ] 43 } 44 } 45 }, 46 "required": [ 47 "triggers" 48 ] 49 }