{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateExtractRequest", "title": "CreateExtractRequest", "type": "object", "required": [ "type", "trail", "config" ], "properties": { "type": { "type": "string", "enum": [ "cdc", "initialload", "datapump" ], "example": "cdc" }, "trail": { "type": "string", "example": "example_value" }, "begin": { "type": "string", "example": "example_value" }, "config": { "type": "array", "items": { "type": "string" }, "example": [] } } }