{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FolderLocks", "title": "Folder Locks", "type": "object", "x-box-resource-id": "folder_locks", "x-box-tag": "folder_locks", "description": "A list of folder locks", "properties": { "entries": { "type": "array", "description": "A list of folder locks", "items": { "$ref": "#/components/schemas/FolderLock" } }, "limit": { "description": "The limit that was used for these entries. This will be the same as the\n`limit` query parameter unless that value exceeded the maximum value\nallowed. The maximum value varies by API.", "example": "1000", "type": "string" }, "next_marker": { "description": "The marker for the start of the next page of results.", "example": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii", "type": "string", "nullable": true } } }