{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/foaf/FoafGroup",
	"title": "FoafGroup",
	"description": "A FOAF Group.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/foaf/FoafContextType",
			"description": "The LD Context."
		},
		"@type": {
			"const": "Group",
			"description": "Type."
		},
		"member": {
			"anyOf": [
				{
					"$ref": "https://schema.twindev.org/foaf/FoafAgent"
				},
				{
					"type": "array",
					"items": {
						"$ref": "https://schema.twindev.org/foaf/FoafAgent"
					}
				}
			],
			"description": "Indicates a member of a Group"
		}
	},
	"required": ["@type"],
	"allOf": [
		{
			"$ref": "https://schema.twindev.org/foaf/FoafAgent"
		}
	]
}
