forked from sfbrigade/sf-openreferral-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplan.dot
24 lines (23 loc) · 1.11 KB
/
plan.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
digraph G {
"Homeless Organization" -> "info a" [label="provides"]
"Women's Shelter" -> "info b" [label="provides"]
"Some Other Org" -> "info c" [label="provides"]
"info a" -> "conversion process" [label="run through"]
"info b" -> "conversion process" [label="run through"]
"info c" -> "conversion process" [label="run through"]
"conversion process" -> manually [label="can be done"]
"conversion process" -> parser [label="can be done via"]
"conversion process" -> "json file" [label="results in many"]
"json file" -> "open referral" [label="follows format"]
"open referral" -> ohana [label="consumed by"]
ohana -> postgres [label="wraps"]
postgres -> db [label="wraps"]
"json file" -> db [label="initial import"]
db -> "admin interface" [label="updated via"]
developer -> spreadsheet [label="picks org from"]
developer -> "conversion process" [label="performs"]
spreadsheet -> Organization [label="contains info about many"]
Organization -> "Homeless Organization" [label="example"]
Organization -> "Women's Shelter" [label="example"]
Organization -> "Some Other Org" [label="example"]
}