This repository was archived by the owner on Apr 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeta.schema.json
More file actions
112 lines (112 loc) · 3.23 KB
/
meta.schema.json
File metadata and controls
112 lines (112 loc) · 3.23 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
{
"$ref": "#/definitions/PluginMetaInput",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"PluginMetaInput": {
"additionalProperties": false,
"properties": {
"description": {
"description": "Short description",
"markdownDescription": "Short description",
"type": "string"
},
"homepage": {
"description": "Homepage or documentation URL",
"markdownDescription": "Homepage or documentation URL",
"type": "string"
},
"id": {
"description": "Unique plugin ID (must match directory name) e.g., [email protected]",
"markdownDescription": "Unique plugin ID (must match directory name)\ne.g., [email protected]",
"type": "string"
},
"name": {
"description": "Plugin display name",
"markdownDescription": "Plugin display name",
"type": "string"
},
"patchedVersions": {
"description": "Manually maintained versions list for patching Follows Zotero Update Manifest format",
"items": {
"$ref": "#/definitions/Version"
},
"markdownDescription": "Manually maintained versions list for patching\nFollows Zotero Update Manifest format",
"type": "array"
},
"repoUrl": {
"description": "Source code repository URL (GitHub/Gitee)",
"markdownDescription": "Source code repository URL (GitHub/Gitee)",
"type": "string"
},
"tags": {
"description": "Plugin classification tags",
"items": {
"$ref": "#/definitions/TagType"
},
"markdownDescription": "Plugin classification tags",
"type": "array"
},
"updateUrl": {
"description": "The URL of Zotero standard `update.json`",
"markdownDescription": "The URL of Zotero standard `update.json`",
"type": "string"
},
"update_json": {
"description": "(Deprecated, use updateUrl) The URL of `update.json`",
"markdownDescription": "(Deprecated, use updateUrl) The URL of `update.json`",
"type": "string"
}
},
"required": [
"id",
"updateUrl"
],
"type": "object"
},
"TagType": {
"description": "插件标签",
"enum": [
"favorite",
"metadata",
"interface",
"attachment",
"notes",
"reader",
"productivity",
"visualization",
"integration",
"ai",
"writing",
"developer",
"others"
],
"markdownDescription": "插件标签",
"type": "string"
},
"Version": {
"additionalProperties": false,
"properties": {
"strict_max_version": {
"type": "string"
},
"strict_min_version": {
"type": "string"
},
"update_hash": {
"type": "string"
},
"update_link": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"version",
"update_link"
],
"type": "object"
}
}
}