forked from managed-components/segment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
51 lines (51 loc) · 1.27 KB
/
manifest.json
File metadata and controls
51 lines (51 loc) · 1.27 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": "Segment",
"description": "Segment",
"namespace": "segment",
"icon": "assets/segment-logo.svg",
"categories": ["Analytics"],
"provides": ["events"],
"allowCustomFields": true,
"permissions": {
"access_client_kv": {
"description": "Stores ID as cookie",
"required": true
},
"server_network_requests": {
"description": "Segment uses serverside network requests to report data",
"required": true
}
},
"settings": {
"writeKey": {
"title": "Segment Source Write Key",
"type": "string",
"description": "Your Segment HTTP API source write key",
"required": true
},
"hostname": {
"title": "API Hostname",
"type": "string",
"description": "Segment API hostname (defaults to api.segment.io)",
"required": false,
"default": "api.segment.io"
}
},
"fields": {
"event": {
"title": "Event Name",
"type": "string",
"description": "Name of the event (for track calls)"
},
"userId": {
"title": "User ID",
"type": "string",
"description": "Unique identifier for the user"
},
"anonymousId": {
"title": "Anonymous ID",
"type": "string",
"description": "Anonymous identifier for the user"
}
}
}