{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://github.com/ksimback/looper/schema/loop.resolved.v1.json", "title": "Looper resolved spec v1", "allOf": [ { "$ref": "./loop.v1.schema.json" }, { "type": "object", "required": ["compiled_at", "source", "criteria_by_id", "council_by_id"], "properties": { "compiled_at": { "type": "string" }, "source": { "type": "string" }, "criteria_by_id": { "type": "object", "additionalProperties": { "$ref": "./loop.v1.schema.json#/$defs/criterion" } }, "council_by_id": { "type": "object", "additionalProperties": true } } } ] }