{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://misskey.io/schemas/GalleryLike", "title": "GalleryLike", "type": "object", "properties": { "id": { "type": "string", "format": "id", "example": "xxxxxxxxxx" }, "post": { "type": "object", "$ref": "#/components/schemas/GalleryPost" } }, "required": [ "id", "post" ] }