This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
69 lines (69 loc) · 1.85 KB
/
manifest.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "https://raw.githubusercontent.com/ker0olos/fable/main/json/schema.json",
"id": "example",
"title": "Example Pack",
"description": "An example pack to demonstrate how to create a manifest",
"author": "Fable Community",
"image": "https://raw.githubusercontent.com/ker0olos/fable/main/assets/splash.png",
"url": "https://github.com/fable-community/example",
"media": {
"new": [{
"id": "1",
"title": {
"english": "Media"
},
"description": "An exemplary media",
"type": "ANIME",
"format": "TV",
"trailer": {
"site": "youtube",
"id": "dQw4w9WgXcQ"
},
"externalLinks": [{
"site": "YouTube",
"url": "https://www.youtube.com/@example"
}],
"images": [{
"url": "https://example.org/media.jpg",
"artist": {
"username": "ME",
"url": "https://example.org"
}
}],
"characters": [{
"characterId": "2",
"role": "MAIN"
}]
}]
},
"characters": {
"new": [{
"id": "2",
"age": "less than 420 years",
"gender": "Tree probably.. idk..",
"name": {
"english": "Dave",
"native": "Still Dave",
"romaji": "Also Dave",
"alternative": ["Must be Dave", "Dave the Great", "Dave the Third"]
},
"description": "The main character of the exemplary media.\n\nIt's a tree called Dave.",
"externalLinks": [{
"site": "YouTube",
"url": "https://www.youtube.com/@davethegreattreegamingchannel"
}],
"popularity": 1000000000,
"media": [{
"mediaId": "1",
"role": "MAIN"
}],
"images": [{
"url": "https://i.imgur.com/pLptX9c.jpeg",
"artist": {
"username": "Dave",
"url": "https://example.com/dave/dave/dave"
}
}]
}]
}
}