-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
51 lines (51 loc) · 1.49 KB
/
config.json
File metadata and controls
51 lines (51 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "my-integration",
"version": "1.0.0",
"display_name": "My Integration",
"description": "A brief description of what this integration does.",
"entry_point": "my_integration.py",
"supports_billing": false,
"auth": {
"type": "custom",
"title": "My Service Authentication",
"fields": {
"type": "object",
"properties": {
"api_key": {
"type": "string",
"format": "password",
"label": "API Key",
"help_text": "Your API key from the service provider."
}
},
"required": [
"api_key"
]
}
},
"actions": {
"my_action": {
"display_name": "My Action",
"description": "Describe what this action does.",
"input_schema": {
"type": "object",
"properties": {
"example_input": {
"type": "string",
"description": "An example input field."
}
},
"required": ["example_input"]
},
"output_schema": {
"type": "object",
"properties": {
"result": {
"type": "object",
"description": "The result data."
}
}
}
}
}
}