{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/dlp_NewDatasetColumn", "title": "dlp_NewDatasetColumn", "allOf": [ { "oneOf": [ { "properties": { "entry_id": { "format": "uuid", "type": "string" } }, "required": [ "entry_id" ], "title": "Existing Column", "type": "object" }, { "properties": { "entry_name": { "type": "string" } }, "required": [ "entry_name" ], "title": "New Column", "type": "object" } ] }, { "properties": { "header_name": { "type": "string" }, "num_cells": { "format": "int64", "type": "integer" } }, "required": [ "header_name", "num_cells" ], "type": "object" } ] }