-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrunchbase-organization-schema.json
More file actions
56 lines (56 loc) · 1.99 KB
/
Copy pathcrunchbase-organization-schema.json
File metadata and controls
56 lines (56 loc) · 1.99 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
54
55
56
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/crunchbase/refs/heads/main/json-schema/crunchbase-organization-schema.json",
"title": "CrunchbaseOrganization",
"description": "Schema for a Crunchbase organization (company, investor, or school) entity.",
"type": "object",
"required": ["uuid", "name"],
"properties": {
"uuid": {"type": "string", "format": "uuid"},
"permalink": {"type": "string"},
"name": {"type": "string"},
"short_description": {"type": "string"},
"description": {"type": "string"},
"website_url": {"type": "string", "format": "uri"},
"linkedin": {"type": "string", "format": "uri"},
"twitter": {"type": "string", "format": "uri"},
"founded_on": {"type": "string", "format": "date"},
"closed_on": {"type": "string", "format": "date"},
"operating_status": {"type": "string", "enum": ["active", "closed"]},
"num_employees_enum": {"type": "string"},
"ipo_status": {"type": "string", "enum": ["private", "public", "delisted", "was_acquired"]},
"category_groups": {
"type": "array",
"items": {"type": "string"}
},
"categories": {
"type": "array",
"items": {"type": "string"}
},
"location_identifiers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"uuid": {"type": "string", "format": "uuid"},
"value": {"type": "string"},
"permalink": {"type": "string"}
}
}
},
"funding_total": {
"type": "object",
"properties": {
"value": {"type": "number"},
"currency": {"type": "string"},
"value_usd": {"type": "number"}
}
},
"last_funding_at": {"type": "string", "format": "date"},
"last_funding_type": {"type": "string"},
"num_funding_rounds": {"type": "integer"},
"num_investors": {"type": "integer"},
"num_acquisitions": {"type": "integer"},
"num_investments": {"type": "integer"}
}
}