{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsCollectionPage",
	"title": "ActivityStreamsCollectionPage",
	"description": "A W3C Activity Streams CollectionPage.\n\nA `CollectionPage` represents a single page of items from a larger `Collection`.\nUse `partOf` to reference the parent collection, and `next`/`prev` for paging links.",
	"type": "object",
	"properties": {
		"type": {
			"anyOf": [
				{
					"const": "CollectionPage"
				},
				{
					"type": "string"
				},
				{
					"type": "array",
					"items": {
						"anyOf": [
							{
								"const": "CollectionPage"
							},
							{
								"type": "string"
							}
						]
					}
				}
			],
			"description": "CollectionPage type."
		},
		"partOf": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
				}
			],
			"description": "Parent collection."
		},
		"next": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
				}
			],
			"description": "Next page."
		},
		"prev": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
				}
			],
			"description": "Previous page."
		}
	},
	"required": ["type"],
	"allOf": [
		{
			"$ref": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsCollection"
		}
	]
}
