This data as json, CSV (advanced)
Suggested facets: location, created_at (date)
fellowship
| id | name | description | location | url | fellowship | followers_count | created_at | verified | screen_name | |
|---|---|---|---|---|---|---|---|---|---|---|
| 17768092 | carola fuentes | Periodista, documentalista y socia de @laventanacine. Nuestro propósito: investigar, producir y difundir contenidos que generen impacto positivo en la audiencia | chile | http://www.laventanacine.com | https://twitter.com/carolafuentes | jsk-fellows2006 | 90026 | 2008-12-01T01:35:13+00:00 | 0 | carolafuentes |
| 18433533 | Janet Rae-Dupree | Freelance Unboxed Media writer covering innovation, emerging tech, science and more #Binders | Silicon Valley | http://www.linkedin.com/in/jraedupree | https://twitter.com/jraedupree | jsk-fellows2006 | 2473 | 2008-12-28T20:25:40+00:00 | 0 | jraedupree |
| 21678279 | Agaricus | Random and untidy. For Personal Science/Quantified Self, follow @quantifiedself. Some archived journalism here: http://antephase.com/archives | https://twitter.com/agaricus | jsk-fellows2006 | 4019 | 2009-02-23T18:39:32+00:00 | 0 | agaricus | ||
| 72928579 | Ivan Penn | Ivan Penn is a Los Angeles-based energy correspondent for @nytimes, 2006 @JSKstanford fellow and 2014 @LoebAwards winner. | Los Angeles, CA | https://www.nytco.com/ivan-penn-joins-business-day/ | https://twitter.com/ivanlpenn | jsk-fellows2006 | 4483 | 2009-09-09T19:26:27+00:00 | 0 | ivanlpenn |
| 86097492 | jo-ann armao | https://twitter.com/armaoj | jsk-fellows2006 | 178 | 2009-10-29T15:52:11+00:00 | 0 | armaoj | |||
| 281065346 | Mary Pols | Media relations @BatesCollege, formerly editor @MaineWomenMag, writer @PressHerald, movie critic @TIME, @JSKStanford. Plus: the blur of the 90s and @ucbsoj | Maine | https://twitter.com/MaryPols | jsk-fellows2006 | 3401 | 2011-04-12T15:17:07+00:00 | 0 | MaryPols | |
| 577618330 | Karen de Sa | an investigative reporter for the San Francisco Chronicle | San Francisco, CA | http://www.sfchronicle.com | https://twitter.com/KarendeSa1 | jsk-fellows2006 | 592 | 2012-05-12T01:22:24+00:00 | 0 | KarendeSa1 |
JSON shape: default, array, newline-delimited
CREATE VIEW jsk_fellows AS
select
users.id,
users.name,
users.description,
users.location,
users.url,
'https://twitter.com/' || users.screen_name as twitter,
group_concat(lists.slug) as fellowship,
users.followers_count,
users.created_at,
users.verified,
users.screen_name
from users
join list_members
on list_members.user = users.id
join lists
on list_members.list = lists.id
where
lists.slug like 'jsk-fellows%'
and lists.slug not like '%projects'
group by users.id;