Skip to content

Commit

Permalink
Querying data: clarify properties that are sub-entities
Browse files Browse the repository at this point in the history
  • Loading branch information
jessemortenson committed Sep 26, 2024
1 parent 06feb7e commit e7ae8dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/data/query-scraper-output-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ D DESCRIBE SELECT * FROM read_json('bill_*.json');
```

You'll notice that related entities like Bill Actions, Bill Sponsorships, etc... are embedded in the data as `STRUCT`
data, usually as a list (`STRUCT(property_a VARCHAR, property_b VARCHAR)[]`). We can drill down into those.
data: `actions`, `sponsorships`, etc.. This is typically structured as a list of `STRUCT` data, which is like a dict
or object (`STRUCT(property_a VARCHAR, property_b VARCHAR)[]`). We can drill down into those.

### Use views to drill into the data

Expand Down

0 comments on commit e7ae8dc

Please sign in to comment.