{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ObjectList", "type": "object", "description": "A list of objects.", "properties": { "kind": { "type": "string", "description": "The kind of item this is." }, "nextPageToken": { "type": "string", "description": "The continuation token. Provide this value as the pageToken in a subsequent request to return the next page of results." }, "prefixes": { "type": "array", "description": "The list of prefixes of objects matching-but-not-listed up to and including the requested delimiter." }, "items": { "type": "array", "description": "The list of objects." } } }