{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Test", "type": "object", "properties": { "optional_many": { "default": null, "anyOf": [ { "$ref": "#/definitions/OneOrMany" }, { "type": "null" } ] } }, "definitions": { "OneOrMany": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] } } }