-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.json
More file actions
132 lines (132 loc) · 3.13 KB
/
schema.json
File metadata and controls
132 lines (132 loc) · 3.13 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Media Catalog",
"description": "Catalog of books, films, and music in a personal collection with intellectual relationships",
"type": "array",
"items": {
"type": "object",
"title": "Catalog Entry",
"required": [
"title",
"year",
"synopsis",
"themes"
],
"properties": {
"title": {
"type": "string",
"description": "Title of the work"
},
"media_type": {
"type": "string",
"enum": [
"book",
"film",
"music"
],
"default": "book",
"description": "Type of media. Defaults to 'book' if omitted for backward compatibility."
},
"author": {
"type": [
"string",
"null"
],
"description": "Author or editor name(s) (books)"
},
"director": {
"type": [
"string",
"null"
],
"description": "Director name(s) (films)"
},
"artist": {
"type": [
"string",
"null"
],
"description": "Artist or band name (music)"
},
"album": {
"type": [
"string",
"null"
],
"description": "Album title (music — when title is used for the work name)"
},
"cast": {
"type": "array",
"items": {
"type": "string"
},
"description": "Cast members (films, optional)"
},
"label": {
"type": [
"string",
"null"
],
"description": "Record label (music, optional)"
},
"publisher": {
"type": [
"string",
"null"
],
"description": "Publisher (books, optional)"
},
"format": {
"type": [
"string",
"null"
],
"description": "Physical/digital format: books (hardcover/paperback), films (DVD/Blu-ray/digital), music (CD/vinyl/digital)"
},
"year": {
"type": [
"integer",
"null"
],
"description": "Publication/release year"
},
"synopsis": {
"type": "string",
"description": "Description and context for the work"
},
"themes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Key themes and subjects"
},
"source_image": {
"type": "string",
"description": "Reference image source"
},
"confidence": {
"type": "string",
"enum": [
"high",
"medium",
"low"
],
"description": "Confidence level in catalog entry accuracy"
},
"needs_review": {
"type": "boolean",
"description": "Whether entry needs review or verification"
},
"in_conversation_with": {
"type": "array",
"items": {
"type": "string"
},
"description": "Titles of related works in the catalog (cross-media connections supported)",
"maxItems": 5
}
},
"additionalProperties": false
}
}