{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/json-ld/JsonLdGraphObject",
	"title": "JsonLdGraphObject",
	"description": "A graph object represents a named graph, which MAY include an explicit graph name.",
	"type": "object",
	"properties": {
		"@graph": {
			"anyOf": [
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
				},
				{
					"type": "array",
					"items": {
						"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
					}
				}
			]
		},
		"@index": {
			"type": "string"
		},
		"@id": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"type": "array",
					"items": {
						"type": "string"
					}
				}
			]
		},
		"@context": {
			"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
		}
	},
	"required": ["@graph"]
}
