Matseoi commited on
Commit
047a54f
·
verified ·
1 Parent(s): 51b946e

Remove Img from PDF index data

Browse files
Files changed (2) hide show
  1. pdf_index.json +0 -0
  2. schemas/pdf_index.schema.json +139 -155
pdf_index.json CHANGED
The diff for this file is too large to render. See raw diff
 
schemas/pdf_index.schema.json CHANGED
@@ -1,161 +1,145 @@
1
  {
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
  "title": "GZDD PDF Index Export",
4
- "type": "object",
5
- "additionalProperties": false,
6
- "required": [
7
- "Data"
8
- ],
9
- "properties": {
10
- "Data": {
11
- "type": "array",
12
- "items": {
13
- "type": "object",
14
- "additionalProperties": false,
15
- "required": [
16
- "BookId",
17
- "Img",
18
- "Title",
19
- "Responsibility",
20
- "Section",
21
- "Catalog",
22
- "BookNum",
23
- "Pages",
24
- "Edition",
25
- "Navigation",
26
- "Physicalpages",
27
- "Languages",
28
- "CollectionUnits",
29
- "Frame",
30
- "Description",
31
- "ReadCount",
32
- "MenuId",
33
- "LastId",
34
- "NextId",
35
- "PdfPath"
36
- ],
37
- "properties": {
38
- "BookId": {
39
- "type": [
40
- "string",
41
- "null"
42
- ]
43
- },
44
- "Img": {
45
- "type": [
46
- "string",
47
- "null"
48
- ]
49
- },
50
- "Title": {
51
- "type": [
52
- "string",
53
- "null"
54
- ]
55
- },
56
- "Responsibility": {
57
- "type": [
58
- "string",
59
- "null"
60
- ]
61
- },
62
- "Section": {
63
- "type": [
64
- "string",
65
- "null"
66
- ]
67
- },
68
- "Catalog": {
69
- "type": [
70
- "string",
71
- "null"
72
- ]
73
- },
74
- "BookNum": {
75
- "type": [
76
- "string",
77
- "null"
78
- ]
79
- },
80
- "Pages": {
81
- "type": [
82
- "string",
83
- "null"
84
- ]
85
- },
86
- "Edition": {
87
- "type": [
88
- "string",
89
- "null"
90
- ]
91
- },
92
- "Navigation": {
93
- "type": [
94
- "string",
95
- "null"
96
- ]
97
- },
98
- "Physicalpages": {
99
- "type": [
100
- "string",
101
- "null"
102
- ]
103
- },
104
- "Languages": {
105
- "type": [
106
- "string",
107
- "null"
108
- ]
109
- },
110
- "CollectionUnits": {
111
- "type": [
112
- "string",
113
- "null"
114
- ]
115
- },
116
- "Frame": {
117
- "type": [
118
- "string",
119
- "null"
120
- ]
121
- },
122
- "Description": {
123
- "type": [
124
- "string",
125
- "null"
126
- ]
127
- },
128
- "ReadCount": {
129
- "type": [
130
- "integer",
131
- "null"
132
- ]
133
- },
134
- "MenuId": {
135
- "type": [
136
- "string",
137
- "null"
138
- ]
139
- },
140
- "LastId": {
141
- "type": [
142
- "string",
143
- "null"
144
- ]
145
- },
146
- "NextId": {
147
- "type": [
148
- "string",
149
- "null"
150
- ]
151
- },
152
- "PdfPath": {
153
- "type": [
154
- "string",
155
- "null"
156
- ]
157
- }
158
- }
159
  }
160
  }
161
  }
 
1
  {
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
  "title": "GZDD PDF Index Export",
4
+ "type": "array",
5
+ "items": {
6
+ "type": "object",
7
+ "additionalProperties": false,
8
+ "required": [
9
+ "BookId",
10
+ "Title",
11
+ "Responsibility",
12
+ "Section",
13
+ "Catalog",
14
+ "BookNum",
15
+ "Pages",
16
+ "Edition",
17
+ "Navigation",
18
+ "Physicalpages",
19
+ "Languages",
20
+ "CollectionUnits",
21
+ "Frame",
22
+ "Description",
23
+ "ReadCount",
24
+ "MenuId",
25
+ "LastId",
26
+ "NextId",
27
+ "PdfPath"
28
+ ],
29
+ "properties": {
30
+ "BookId": {
31
+ "type": [
32
+ "string",
33
+ "null"
34
+ ]
35
+ },
36
+ "Title": {
37
+ "type": [
38
+ "string",
39
+ "null"
40
+ ]
41
+ },
42
+ "Responsibility": {
43
+ "type": [
44
+ "string",
45
+ "null"
46
+ ]
47
+ },
48
+ "Section": {
49
+ "type": [
50
+ "string",
51
+ "null"
52
+ ]
53
+ },
54
+ "Catalog": {
55
+ "type": [
56
+ "string",
57
+ "null"
58
+ ]
59
+ },
60
+ "BookNum": {
61
+ "type": [
62
+ "string",
63
+ "null"
64
+ ]
65
+ },
66
+ "Pages": {
67
+ "type": [
68
+ "string",
69
+ "null"
70
+ ]
71
+ },
72
+ "Edition": {
73
+ "type": [
74
+ "string",
75
+ "null"
76
+ ]
77
+ },
78
+ "Navigation": {
79
+ "type": [
80
+ "string",
81
+ "null"
82
+ ]
83
+ },
84
+ "Physicalpages": {
85
+ "type": [
86
+ "string",
87
+ "null"
88
+ ]
89
+ },
90
+ "Languages": {
91
+ "type": [
92
+ "string",
93
+ "null"
94
+ ]
95
+ },
96
+ "CollectionUnits": {
97
+ "type": [
98
+ "string",
99
+ "null"
100
+ ]
101
+ },
102
+ "Frame": {
103
+ "type": [
104
+ "string",
105
+ "null"
106
+ ]
107
+ },
108
+ "Description": {
109
+ "type": [
110
+ "string",
111
+ "null"
112
+ ]
113
+ },
114
+ "ReadCount": {
115
+ "type": [
116
+ "integer",
117
+ "null"
118
+ ]
119
+ },
120
+ "MenuId": {
121
+ "type": [
122
+ "string",
123
+ "null"
124
+ ]
125
+ },
126
+ "LastId": {
127
+ "type": [
128
+ "string",
129
+ "null"
130
+ ]
131
+ },
132
+ "NextId": {
133
+ "type": [
134
+ "string",
135
+ "null"
136
+ ]
137
+ },
138
+ "PdfPath": {
139
+ "type": [
140
+ "string",
141
+ "null"
142
+ ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  }
144
  }
145
  }