{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsMention",
	"title": "ActivityStreamsMention",
	"description": "A W3C Activity Streams Mention.\n\nA `Mention` is a specialised `Link` typically used to identify users or\nobjects being mentioned within content.",
	"type": "object",
	"properties": {
		"type": {
			"anyOf": [
				{
					"const": "Mention"
				},
				{
					"type": "string"
				},
				{
					"type": "array",
					"items": {
						"anyOf": [
							{
								"const": "Mention"
							},
							{
								"type": "string"
							}
						]
					}
				}
			],
			"description": "Mention type."
		}
	},
	"required": ["type"],
	"allOf": [
		{
			"$ref": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsLink"
		}
	]
}
