-
Notifications
You must be signed in to change notification settings - Fork 209
/
Copy pathsample.json
47 lines (47 loc) · 1.48 KB
/
sample.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"version": "1.0",
"title": "title",
"home_page_url": "https://sample-json-feed.com",
"feed_url": "https://sample-json-feed.com/feed.json",
"description": "description",
"user_comment": "user_comment",
"next_url": "https://sample-json-feed.com/feed.json?next=500",
"icon": "https://sample-json-feed.com/icon.png",
"favicon": "https://sample-json-feed.com/favicon.png",
"author": {
"name": "author_name",
"url": "https://sample-feed-author.com",
"avatar": "https://sample-feed-author.com/me.png"
},
"expired": false,
"items": [
{
"id": "id",
"url": "https://sample-json-feed.com/id",
"external_url": "https://sample-json-feed.com/external",
"title": "title",
"content_html": "<p>content_html</p>",
"content_text": "content_text",
"summary": "summary",
"image": "https://sample-json-feed.com/image.png",
"banner_image": "https://sample-json-feed.com/banner_image.png",
"date_published": "2019-10-12T07:20:50.52Z",
"date_modified": "2019-10-12T07:20:50.52Z",
"author": {
"name": "author_name",
"url": "https://sample-feed-author.com",
"avatar": "https://sample-feed-author.com/me.png"
},
"tags": ["tag1", "tag2"],
"attachments": [
{
"url": "https://sample-json-feed.com/attachment",
"mime_type": "audio/mpeg",
"title": "title",
"size_in_bytes": 100,
"duration_in_seconds": 100
}
]
}
]
}