Skip to content
Arturo Vergara edited this page Jun 15, 2013 · 5 revisions

These are the proposed schemas for subscriptions, articles and favorites.

Subscriptions

Subscription {
    id string
    url string
    name string
}

Articles

Article {
    id string
    url string
    name string
    author string
    published int
    parent *Subscription
    body string
    read bool
}

Favorites

Favorite {
    id string
    url string
    name string
    author string
    published int
    body string
}

Clone this wiki locally