{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "BlockConfiguration", "type": "object", "properties": { "activeServiceIds": { "type": "array", "items": { "type": "string" } }, "inactiveServiceIds": { "type": "array", "items": { "type": "string" } }, "trips": { "type": "array", "items": { "$ref": "#/components/schemas/BlockTrip" } } }, "required": [ "activeServiceIds", "trips" ] }