{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsService",
	"title": "ActivityStreamsService",
	"description": "A W3C Activity Streams Service.\n\nA `Service` represents a service of any kind.",
	"type": "object",
	"properties": {
		"type": {
			"anyOf": [
				{
					"const": "Service"
				},
				{
					"type": "string"
				},
				{
					"type": "array",
					"items": {
						"anyOf": [
							{
								"const": "Service"
							},
							{
								"type": "string"
							}
						]
					}
				}
			],
			"description": "Service type."
		}
	},
	"required": ["type"],
	"allOf": [
		{
			"$ref": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsActor"
		}
	]
}
