13 lines
604 B
JSON
13 lines
604 B
JSON
{
|
|
"source": "postgresql",
|
|
"models": {
|
|
"users": {"doc": "People who buy.", "fields": {"id": {"type": "int", "pk": true}, "email": {"type": "str"}}},
|
|
"orders": {"doc": "One purchase.", "fields": {"id": {"type": "int", "pk": true}, "user": {"type": "FK:users"}, "total": {"type": "float"}}},
|
|
"items": {"doc": "A line on an order.", "fields": {"id": {"type": "int", "pk": true}, "order": {"type": "FK:orders"}, "sku": {"type": "str"}}}
|
|
},
|
|
"relationships": [
|
|
{"from": "orders", "to": "users", "from_field": "user"},
|
|
{"from": "items", "to": "orders", "from_field": "order"}
|
|
]
|
|
}
|