{
	"$ref": "#/definitions/SeedSection",
	"$schema": "http://json-schema.org/draft-07/schema#",
	"definitions": {
		"SeedSection": {
			"additionalProperties": false,
			"description": "Section (reusable content block) in seed",
			"properties": {
				"content": {
					"description": "Portable Text content",
					"items": {
						"additionalProperties": {},
						"properties": {
							"_key": {
								"type": "string"
							},
							"_type": {
								"type": "string"
							}
						},
						"required": [
							"_type"
						],
						"type": "object"
					},
					"type": "array"
				},
				"description": {
					"type": "string"
				},
				"keywords": {
					"description": "Search keywords",
					"items": {
						"type": "string"
					},
					"type": "array"
				},
				"slug": {
					"type": "string"
				},
				"source": {
					"description": "Source: \"theme\" for seed-provided, \"import\" for WP imports",
					"enum": [
						"theme",
						"import"
					],
					"type": "string"
				},
				"title": {
					"type": "string"
				}
			},
			"required": [
				"slug",
				"title",
				"content"
			],
			"type": "object"
		}
	},
	"$id": "https://premium-cms.com/schemas/seed/section.schema.json",
	"title": "SeedSection"
}
