aboutsummaryrefslogtreecommitdiff
path: root/documentation/schemas/Article
blob: 150f244d624a28159c34398c820dc676c890e0d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.. -*-restructuredtext-*-


Schema for a Article object
===========================

    {
        article_id: (str),
        type: (str),
        article_date: (datetime),
        article_link: (str),
        article_title: (str),
        article_content: (str),
        article_readed: (bool),
        article_like: (bool)
    }


Schema description
==================
bgstack15