{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/magic_app_update_request", "title": "magic_app_update_request", "anyOf": [ { "required": [ "name" ], "title": "Update App Name" }, { "required": [ "type" ], "title": "Update App Type" }, { "required": [ "hostnames" ], "title": "Update App Hostnames" }, { "required": [ "ip_subnets" ], "title": "Update App Subnets" } ], "properties": { "hostnames": { "$ref": "#/components/schemas/magic_app_hostnames" }, "ip_subnets": { "$ref": "#/components/schemas/magic_app_subnets" }, "name": { "$ref": "#/components/schemas/magic_app_name" }, "type": { "$ref": "#/components/schemas/magic_app_type" } }, "type": "object" }