{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://planable.io/schemas/patch_posts_reorder-request.json", "title": "Patch_Posts_Reorder Request", "type": "object", "properties": { "workspaceId": { "type": "string", "minLength": 1 }, "postIds": { "type": "array", "items": { "type": "string", "minLength": 1 }, "minItems": 1, "maxItems": 500 } }, "required": [ "workspaceId", "postIds" ] }