-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiscalnote-organization.opencollection.json
More file actions
201 lines (201 loc) · 6.34 KB
/
Copy pathfiscalnote-organization.opencollection.json
File metadata and controls
201 lines (201 loc) · 6.34 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
{
"opencollection": "1.0.0",
"info": {
"name": "FiscalNote Organization API",
"version": "1.0"
},
"request": {
"auth": {
"type": "apikey",
"key": "Authorization",
"value": "{{Authorization}}",
"placement": "header"
}
},
"items": [
{
"info": {
"name": "Organizations",
"type": "folder"
},
"items": [
{
"info": {
"name": "FiscalNote List government organizations",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.fiscalnote.com/organization/v1/organizations",
"params": [
{
"name": "jurisdiction",
"value": "",
"type": "query",
"description": "Filter by jurisdiction code such as US, US-CA, GB, or EU."
},
{
"name": "type",
"value": "",
"type": "query",
"description": "Filter by organization type such as agency, committee, or department."
},
{
"name": "q",
"value": "",
"type": "query",
"description": "Full-text search query to filter results."
},
{
"name": "limit",
"value": "",
"type": "query",
"description": "Maximum number of results to return per page."
},
{
"name": "offset",
"value": "",
"type": "query",
"description": "Number of results to skip for pagination."
},
{
"name": "updatedSince",
"value": "",
"type": "query",
"description": "Return only records updated after this ISO 8601 datetime."
}
]
},
"docs": "Returns a paginated list of government organizations including federal agencies, state agencies, legislative committees, and international governmental bodies."
},
{
"info": {
"name": "FiscalNote Get organization by ID",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.fiscalnote.com/organization/v1/organizations/:organizationId",
"params": [
{
"name": "organizationId",
"value": "",
"type": "path",
"description": "The unique identifier of the organization."
}
]
},
"docs": "Returns detailed information about a specific government organization including its mandate, leadership, and sub-organizations."
}
]
},
{
"info": {
"name": "Committees",
"type": "folder"
},
"items": [
{
"info": {
"name": "FiscalNote List legislative committees",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.fiscalnote.com/organization/v1/committees",
"params": [
{
"name": "jurisdiction",
"value": "",
"type": "query",
"description": "Filter by jurisdiction code such as US, US-CA, GB, or EU."
},
{
"name": "chamber",
"value": "",
"type": "query",
"description": "Filter by legislative chamber."
},
{
"name": "committeeType",
"value": "",
"type": "query",
"description": "Filter by committee type."
},
{
"name": "q",
"value": "",
"type": "query",
"description": "Full-text search query to filter results."
},
{
"name": "limit",
"value": "",
"type": "query",
"description": "Maximum number of results to return per page."
},
{
"name": "offset",
"value": "",
"type": "query",
"description": "Number of results to skip for pagination."
}
]
},
"docs": "Returns a paginated list of legislative committees from federal, state, and international legislatures including standing committees, select committees, and subcommittees."
},
{
"info": {
"name": "FiscalNote Get committee by ID",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.fiscalnote.com/organization/v1/committees/:committeeId",
"params": [
{
"name": "committeeId",
"value": "",
"type": "path",
"description": "The unique identifier of the committee."
}
]
},
"docs": "Returns detailed information about a specific legislative committee including its members, jurisdiction, and subcommittees."
},
{
"info": {
"name": "FiscalNote List committee members",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.fiscalnote.com/organization/v1/committees/:committeeId/members",
"params": [
{
"name": "committeeId",
"value": "",
"type": "path",
"description": "The unique identifier of the committee."
},
{
"name": "limit",
"value": "",
"type": "query",
"description": "Maximum number of results to return per page."
},
{
"name": "offset",
"value": "",
"type": "query",
"description": "Number of results to skip for pagination."
}
]
},
"docs": "Returns a paginated list of members serving on a specific legislative committee."
}
]
}
],
"bundled": true
}