-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisney-character-structure.json
More file actions
103 lines (103 loc) · 2.92 KB
/
Copy pathdisney-character-structure.json
File metadata and controls
103 lines (103 loc) · 2.92 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/disney/refs/heads/main/json-structure/disney-character-structure.json",
"name": "Character",
"description": "A single Disney character record sourced from the Disney Wiki.",
"type": "object",
"required": [
"_id",
"name",
"url"
],
"properties": {
"_id": {
"type": "integer",
"description": "Auto-incrementing numeric character id assigned by the service.",
"example": 308
},
"name": {
"type": "string",
"description": "Display name of the Disney character.",
"example": "Queen Arianna"
},
"films": {
"type": "array",
"items": {
"type": "string"
},
"description": "Feature films in which the character appears.",
"example": ["Tangled"]
},
"shortFilms": {
"type": "array",
"items": {
"type": "string"
},
"description": "Short films in which the character appears.",
"example": ["Tangled Ever After"]
},
"tvShows": {
"type": "array",
"items": {
"type": "string"
},
"description": "TV shows in which the character appears.",
"example": ["Tangled: The Series"]
},
"videoGames": {
"type": "array",
"items": {
"type": "string"
},
"description": "Video games in which the character appears.",
"example": ["Kingdom Hearts III"]
},
"parkAttractions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Disney park attractions in which the character appears.",
"example": ["Celebrate the Magic"]
},
"allies": {
"type": "array",
"items": {
"type": "string"
},
"description": "Named allies of the character within Disney canon.",
"example": ["Mickey Mouse"]
},
"enemies": {
"type": "array",
"items": {
"type": "string"
},
"description": "Named enemies of the character within Disney canon.",
"example": ["Pete"]
},
"alignment": {
"type": "string",
"description": "Moral alignment of the character (e.g. Good, Bad, Neutral) when known.",
"example": "Good"
},
"sourceUrl": {
"type": "string",
"format": "uri",
"description": "Upstream Disney Wiki URL from which the record was sourced.",
"example": "https://disney.fandom.com/wiki/Queen_Arianna"
},
"imageUrl": {
"type": "string",
"format": "uri",
"description": "URL of a character thumbnail image hosted on the Disney Fandom Wiki CDN.",
"example": "https://static.wikia.nocookie.net/disney/images/1/15/Arianna_Tangled.jpg"
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical self URL for this character record.",
"example": "https://api.disneyapi.dev/characters/308"
}
}
}