We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
collections
1 parent 9d10469 commit 6bbce93Copy full SHA for 6bbce93
packages/admin-api-schema/lib/schemas/posts.json
@@ -138,6 +138,9 @@
138
},
139
"tags": {
140
"$ref": "#/definitions/post-tags"
141
+ },
142
+ "collections": {
143
+ "$ref": "#/definitions/post-collections"
144
}
145
146
@@ -242,6 +245,28 @@
242
245
243
246
]
244
247
248
249
+ "post-collections": {
250
+ "description": "Collections of the post",
251
+ "type": "array",
252
+ "items": {
253
+ "anyOf": [
254
+ {
255
+ "type": "object",
256
+ "properties": {
257
+ "id": {
258
+ "type": "string",
259
+ "maxLength": 24
260
+ }
261
262
+ "required": ["id"]
263
264
265
266
267
268
+ ]
269
270
271
272
0 commit comments