{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.ilert.com/schemas/SeriesOption", "title": "SeriesOption", "type": "object", "description": "Can either be a single time point, omitting timestamp field is allowed as it will be replaced with now() - or a series of multiple time points", "oneOf": [ { "$ref": "#/components/schemas/SingleTimePoint" }, { "$ref": "#/components/schemas/MultipleTimePoint" } ] }