- There are Accounts and Tweets.
- An Account has a handle, a name, and a creation timestamp.
- A Tweet has an author, a timestamp, and text.
But this is incomplete.
- What are the types of the attributes?
- How are Accounts and Tweets connected?
Some of this is easy:
- handle: string
- name: string
- created: datetime
- timestamp: datetime
- text: string