{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CQLPersonalDataMigrationRequest", "title": "CQLPersonalDataMigrationRequest", "required": [ "queryStrings" ], "type": "object", "properties": { "queryStrings": { "type": "array", "description": "A list of queries with user identifiers. Maximum of 100 queries.", "example": [ "type = page and creator != admin and space = DEV" ], "items": { "type": "string" } } }, "description": "The CQL queries to be converted." }