{
	"$id": "https://www.volby.cz/ep/cvs_slozeni.schema.json",
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"title": "Číselník volebních stran - složení",
	"type": "object",
	"properties": {
		"typ": {
			"type": "string"
		},
		"iri": {
			"type": "string",
			"format": "iri",
			"title": "Identifikátor"
		},
		"název": {
			"$ref": "https://ofn.gov.cz/základní-datové-typy/2020-07-01/schémata/text.json"
		},
		"akronym": {
			"type": "string"
		},
		"platnost": {
			"$ref": "https://ofn.gov.cz/základní-datové-typy/2020-07-01/schémata/časový-interval.json"
		},
		"položky": {
			"type": "array",
			"items": {
				"type": "object",
				"properties": {
					"typ": {
						"const": "Položka"
					},
					"iri": {
						"type": "string",
						"format": "iri",
						"title": "Identifikátor"
					},
					"VSTRANA": {
						"type": "integer",
						"description": "Kód volební strany",
						"maximum": 9999
					},
					"NSTRANA": {
						"type": "integer",
						"description": "Kód navrhující strany"
					}
				},
				"additionalProperties": false,
				"required": ["VSTRANA"]
			}
		}
	},
	"required": [
		"iri",
		"typ",
		"název",
		"položky"
	]
}
