-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentities.json.example
More file actions
53 lines (53 loc) · 1.43 KB
/
entities.json.example
File metadata and controls
53 lines (53 loc) · 1.43 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
52
53
{
"version": "1.0.0",
"lastUpdated": "2026-04-19",
"entities": [
{
"id": "acme-corp",
"name": "Acme Corp",
"description": "Example primary organization.",
"isPrimary": true,
"isActive": true,
"verticals": ["payments"],
"newsKeywords": {
"primary": ["Acme Corp", "Acme Pay"],
"context": ["fintech", "payments"],
"negative": ["acme brick", "road runner"]
},
"identifiers": {
"github": { "org": "acme", "repos": ["platform"] },
"twitter": "acmecorp",
"website": "https://example.com",
"appStore": { "ios": "0000000000", "android": "com.example.acme" }
},
"metadata": { "tags": ["fintech"] },
"products": [
{
"id": "acme-wallet",
"name": "Acme Wallet",
"vertical": "payments",
"identifiers": {
"github": { "owner": "acme", "repo": "wallet" },
"appStore": { "ios": "1111111111", "android": "com.example.wallet" }
}
}
]
},
{
"id": "contoso",
"name": "Contoso Labs",
"description": "Example competitor.",
"isPrimary": false,
"isActive": true,
"verticals": ["payments"],
"newsKeywords": {
"primary": ["Contoso"],
"context": ["wallet"]
},
"identifiers": {
"github": { "org": "contoso" },
"website": "https://contoso.example"
}
}
]
}