{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/experience-platform-api-dataset-input-schema.json", "title": "DatasetInput", "description": "DatasetInput schema", "type": "object", "required": [ "name", "schemaRef" ], "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "schemaRef": { "type": "object", "required": [ "id", "contentType" ], "properties": { "id": { "type": "string" }, "contentType": { "type": "string" } } } } }