{
    "openapi": "3.0.0",
    "info": {
        "title": "Productsup Export Template Management",
        "description": "Export Template Management API Specs. Manage Productsup export templates through the export template management api service",
        "version": "0.1.0"
    },
    "paths": {
        "/V2/analyzer-test-templates": {
            "get": {
                "tags": [
                    "Analyzer Tests"
                ],
                "summary": "List all analyzer test templates",
                "description": "Retrieves a paginated list of all available analyzer test templates. Templates are reusable validators that can be assigned to attributes with specific configurations.",
                "operationId": "v2_analyzer_test_templates_list",
                "parameters": [
                    {
                        "name": "firstResult",
                        "in": "query",
                        "description": "Starting item (pagination offset)",
                        "required": false,
                        "schema": {
                            "type": "integer",
                            "default": 0
                        }
                    },
                    {
                        "name": "maxResults",
                        "in": "query",
                        "description": "Items per page",
                        "required": false,
                        "schema": {
                            "type": "integer",
                            "default": 50
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "$ref": "#/components/schemas/v2_analyzer_test_template"
                                            }
                                        },
                                        "pagination": {
                                            "$ref": "#/components/schemas/pagination"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V2/attributes/{attributeId}/analyzer-tests": {
            "post": {
                "tags": [
                    "Analyzer Tests"
                ],
                "summary": "Assign analyzer test templates to an attribute",
                "description": "Assigns one or more analyzer test templates to an attribute (export field). Each assignment includes a template ID and its configuration parameters.",
                "operationId": "v2_assign_analyzer_test_template",
                "parameters": [
                    {
                        "name": "attributeId",
                        "in": "path",
                        "description": "Attribute (export field) ID",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "type": "array",
                                "minItems": 1,
                                "items": {
                                    "$ref": "#/components/schemas/v2_analyzer_test_assignment_input"
                                },
                                "example": [
                                    {
                                        "templateId": "length_check",
                                        "configuration": {
                                            "value": 1,
                                            "operator": ">"
                                        }
                                    },
                                    {
                                        "templateId": "length_check",
                                        "configuration": {
                                            "value": 100,
                                            "operator": "<"
                                        }
                                    }
                                ]
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created - Assignments created successfully",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "$ref": "#/components/schemas/v2_analyzer_test_assignment_output"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request - Validation errors",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/validation_error_response"
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found - Attribute does not exist",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V2/export-templates/{exportId}": {
            "get": {
                "tags": [
                    "Export Template V2"
                ],
                "summary": "Get export template",
                "operationId": "v2_export_template_show",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "exportTemplateId": {
                                            "type": "integer"
                                        },
                                        "name": {
                                            "type": "string"
                                        },
                                        "encoding": {
                                            "type": "string",
                                            "nullable": true
                                        },
                                        "global": {
                                            "type": "boolean"
                                        },
                                        "pseudo": {
                                            "type": "boolean"
                                        },
                                        "allowXml": {
                                            "type": "boolean"
                                        },
                                        "validDelimiter": {
                                            "type": "string"
                                        },
                                        "roiOptions": {
                                            "type": "string"
                                        },
                                        "accountId": {
                                            "type": "integer"
                                        },
                                        "projectId": {
                                            "type": "integer"
                                        },
                                        "siteId": {
                                            "type": "integer"
                                        },
                                        "logoUrl": {
                                            "type": "string"
                                        },
                                        "createDelta": {
                                            "type": "boolean"
                                        },
                                        "deltaKeyUnique": {
                                            "type": "boolean"
                                        },
                                        "deltaNewFilename": {
                                            "type": "string",
                                            "nullable": true
                                        },
                                        "deltaChangedFilename": {
                                            "type": "string",
                                            "nullable": true
                                        },
                                        "deltaDeletedFilename": {
                                            "type": "string",
                                            "nullable": true
                                        },
                                        "deltaUnchangedFilename": {
                                            "type": "string",
                                            "nullable": true
                                        },
                                        "deltaSkippedFilename": {
                                            "type": "string",
                                            "nullable": true
                                        },
                                        "deltaSingleFile": {
                                            "type": "boolean",
                                            "nullable": true
                                        },
                                        "customClassName": {
                                            "type": "string",
                                            "nullable": true
                                        },
                                        "defaultFilename": {
                                            "type": "string",
                                            "nullable": true
                                        },
                                        "unpublishedChanges": {
                                            "type": "boolean"
                                        },
                                        "tags": {
                                            "type": "array",
                                            "items": {
                                                "type": "object",
                                                "properties": {
                                                    "id": {
                                                        "type": "integer"
                                                    },
                                                    "key": {
                                                        "type": "string"
                                                    },
                                                    "value": {
                                                        "type": "string"
                                                    }
                                                }
                                            }
                                        },
                                        "attributeCount": {
                                            "type": "integer",
                                            "example": 3
                                        },
                                        "siteCount": {
                                            "type": "integer",
                                            "example": 2
                                        },
                                        "owner": {
                                            "type": "object",
                                            "properties": {
                                                "ownerId": {
                                                    "type": "string"
                                                }
                                            }
                                        },
                                        "attributes": {
                                            "type": "array",
                                            "items": {
                                                "type": "object",
                                                "properties": {
                                                    "id": {
                                                        "type": "integer"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "description": "Attribute field name"
                                                    },
                                                    "alias": {
                                                        "type": "string"
                                                    },
                                                    "mandatory": {
                                                        "type": "boolean"
                                                    },
                                                    "type": {
                                                        "type": "string",
                                                        "enum": [
                                                            "mandatory",
                                                            "conditionally_mandatory",
                                                            "optional"
                                                        ],
                                                        "example": "optional"
                                                    },
                                                    "conditions": {
                                                        "type": "array",
                                                        "items": {
                                                            "type": "object",
                                                            "properties": {
                                                                "triggerAttribute": {
                                                                    "type": "string"
                                                                },
                                                                "triggerValue": {
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "type": "string",
                                                                    "enum": [
                                                                        "equals",
                                                                        "not_equals"
                                                                    ]
                                                                },
                                                                "description": {
                                                                    "type": "string"
                                                                }
                                                            }
                                                        },
                                                        "example": []
                                                    },
                                                    "flag": {
                                                        "type": "string",
                                                        "nullable": true
                                                    },
                                                    "isDefaultTrackingColumn": {
                                                        "type": "boolean"
                                                    },
                                                    "isUniqueColumn": {
                                                        "type": "boolean"
                                                    },
                                                    "order": {
                                                        "type": "integer"
                                                    },
                                                    "deltaIgnore": {
                                                        "type": "boolean"
                                                    },
                                                    "deltaKey": {
                                                        "type": "boolean"
                                                    },
                                                    "automapIgnore": {
                                                        "type": "boolean"
                                                    },
                                                    "description": {
                                                        "type": "string",
                                                        "nullable": true
                                                    },
                                                    "example": {
                                                        "type": "string",
                                                        "nullable": true
                                                    },
                                                    "format": {
                                                        "type": "string",
                                                        "nullable": true
                                                    },
                                                    "tags": {
                                                        "type": "array",
                                                        "items": {
                                                            "type": "object",
                                                            "properties": {
                                                                "key": {
                                                                    "type": "string"
                                                                },
                                                                "value": {
                                                                    "type": "string"
                                                                }
                                                            }
                                                        },
                                                        "description": "Attribute tags (key-value pairs)"
                                                    },
                                                    "analyzerTests": {
                                                        "type": "array",
                                                        "items": {
                                                            "type": "object",
                                                            "properties": {
                                                                "id": {
                                                                    "type": "integer"
                                                                },
                                                                "templateId": {
                                                                    "type": "string"
                                                                },
                                                                "configuration": {
                                                                    "type": "object"
                                                                },
                                                                "relevance": {
                                                                    "type": "integer"
                                                                },
                                                                "mandatory": {
                                                                    "type": "boolean"
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        },
                                        "customFormFields": {
                                            "type": "array",
                                            "items": {
                                                "type": "object",
                                                "properties": {
                                                    "id": {
                                                        "type": "integer"
                                                    },
                                                    "name": {
                                                        "type": "string"
                                                    },
                                                    "caption": {
                                                        "type": "string"
                                                    },
                                                    "type": {
                                                        "type": "string"
                                                    },
                                                    "placeholder": {
                                                        "type": "string"
                                                    },
                                                    "data": {
                                                        "type": "string"
                                                    },
                                                    "trigger": {
                                                        "type": "string"
                                                    },
                                                    "order": {
                                                        "type": "integer"
                                                    }
                                                }
                                            }
                                        },
                                        "exportMarketing": {
                                            "type": "object",
                                            "properties": {
                                                "id": {
                                                    "type": "integer"
                                                },
                                                "type": {
                                                    "type": "integer"
                                                },
                                                "publish": {
                                                    "type": "boolean"
                                                },
                                                "marketingTitle": {
                                                    "type": "string"
                                                },
                                                "websiteLink": {
                                                    "type": "string"
                                                },
                                                "landingPageLink": {
                                                    "type": "string"
                                                },
                                                "featured": {
                                                    "type": "boolean"
                                                },
                                                "products": {
                                                    "type": "array"
                                                },
                                                "description": {
                                                    "type": "string"
                                                },
                                                "priority": {
                                                    "type": "integer"
                                                },
                                                "helpLink": {
                                                    "type": "string"
                                                },
                                                "exportCategoryIds": {
                                                    "type": "array"
                                                },
                                                "exportCountryIds": {
                                                    "type": "array"
                                                },
                                                "exportBrand": {
                                                    "type": "string",
                                                    "nullable": true
                                                }
                                            }
                                        },
                                        "metadata": {
                                            "type": "object",
                                            "nullable": true,
                                            "properties": {
                                                "channelOwner": {
                                                    "type": "string"
                                                },
                                                "lastReviewedOn": {
                                                    "type": "string",
                                                    "format": "date-time",
                                                    "nullable": true
                                                },
                                                "confidence": {
                                                    "type": "string"
                                                },
                                                "helpCenterLink": {
                                                    "type": "string"
                                                },
                                                "internalDocLink": {
                                                    "type": "string"
                                                },
                                                "specificationsLink": {
                                                    "type": "string"
                                                },
                                                "notes": {
                                                    "type": "string"
                                                }
                                            }
                                        },
                                        "exportType": {
                                            "type": "object",
                                            "properties": {
                                                "type": {
                                                    "type": "string"
                                                },
                                                "mainExportId": {
                                                    "type": "integer",
                                                    "nullable": true
                                                }
                                            }
                                        },
                                        "context": {
                                            "type": "object",
                                            "properties": {
                                                "accountIds": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "integer"
                                                    }
                                                },
                                                "projectIds": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "integer"
                                                    }
                                                },
                                                "siteIds": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "integer"
                                                    }
                                                }
                                            },
                                            "additionalProperties": true
                                        },
                                        "createdAt": {
                                            "type": "string",
                                            "format": "date-time"
                                        },
                                        "updatedAt": {
                                            "type": "string",
                                            "format": "date-time",
                                            "nullable": true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "code": {
                                            "type": "string"
                                        },
                                        "message": {
                                            "type": "string"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "code": {
                                            "type": "string"
                                        },
                                        "message": {
                                            "type": "string"
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        },
        "/V2/attributes/{attributeId}/analyzer-tests/{assignmentId}": {
            "patch": {
                "tags": [
                    "Analyzer Tests"
                ],
                "summary": "Update analyzer test assignment configuration",
                "description": "Updates an existing analyzer test assignment's configuration. All fields are optional - only provide the fields you want to update.",
                "operationId": "v2_update_analyzer_test_assignment",
                "parameters": [
                    {
                        "name": "attributeId",
                        "in": "path",
                        "description": "Attribute (export field) ID",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    },
                    {
                        "name": "assignmentId",
                        "in": "path",
                        "description": "Assignment ID to update",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "type": "object",
                                "properties": {
                                    "configuration": {
                                        "type": "object",
                                        "description": "Template configuration parameters (must match template's schema)"
                                    },
                                    "mandatory": {
                                        "type": "boolean",
                                        "deprecated": true,
                                        "description": "Deprecated. All analyzer tests are now mandatory. This field is accepted for backward compatibility but ignored."
                                    },
                                    "name": {
                                        "type": "string",
                                        "nullable": true,
                                        "maxLength": 255,
                                        "description": "Display name for this assignment"
                                    },
                                    "color": {
                                        "type": "string",
                                        "nullable": true,
                                        "maxLength": 7,
                                        "description": "Hex color code (e.g. #ff0000)"
                                    },
                                    "caption": {
                                        "type": "string",
                                        "nullable": true,
                                        "maxLength": 255,
                                        "description": "Error caption shown when the test fails"
                                    },
                                    "group": {
                                        "type": "string",
                                        "nullable": true,
                                        "maxLength": 30,
                                        "description": "Grouping label for display purposes"
                                    },
                                    "hint": {
                                        "type": "string",
                                        "nullable": true,
                                        "maxLength": 2000,
                                        "description": "Hint text shown to the user when the test fails"
                                    },
                                    "errorId": {
                                        "type": "integer",
                                        "nullable": true,
                                        "description": "ID of the associated monitorable error from pds_error"
                                    },
                                    "requiredColumns": {
                                        "type": "array",
                                        "items": {
                                            "type": "string"
                                        },
                                        "nullable": true,
                                        "description": "List of column names required by this test"
                                    }
                                },
                                "example": {
                                    "configuration": {
                                        "value": 100,
                                        "operator": "<="
                                    }
                                }
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "OK - Assignment updated successfully",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "data": {
                                            "$ref": "#/components/schemas/v2_analyzer_test_assignment_output"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request - Validation errors",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/validation_error_response"
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found - Assignment or attribute does not exist",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "delete": {
                "tags": [
                    "Analyzer Tests"
                ],
                "summary": "Unassign analyzer test template from an attribute",
                "description": "Removes an analyzer test template assignment from an attribute (export field).",
                "operationId": "v2_unassign_analyzer_test_template",
                "parameters": [
                    {
                        "name": "attributeId",
                        "in": "path",
                        "description": "Attribute (export field) ID",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    },
                    {
                        "name": "assignmentId",
                        "in": "path",
                        "description": "Assignment ID to delete",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "responses": {
                    "204": {
                        "description": "No Content - Assignment deleted successfully"
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found - Assignment or attribute does not exist",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V2/export-templates": {
            "post": {
                "tags": [
                    "Export Template V2"
                ],
                "summary": "Create export template with dependencies",
                "description": "Creates a complete export template including attributes and analyzer tests in one call. The operation is executed asynchronously (inline in Phase 1). Progress and results are available via GET /V2/operations/{operationId}. Returns 202 Accepted with Content-Location header pointing to the operation.",
                "operationId": "v2_export_template_create",
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/v2_export_template_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "202": {
                        "description": "Accepted - Operation created. Poll GET /V2/operations/{operationId} for status and result.",
                        "headers": {
                            "Content-Location": {
                                "description": "URL of the created operation resource",
                                "schema": {
                                    "type": "string",
                                    "example": "/V2/operations/01980f10-5b04-7845-b0d5-66861c6cabb0"
                                }
                            }
                        },
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/v2_operation_accepted_response"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request - Malformed JSON or structural validation failed. No operation is created.",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "oneOf": [
                                        {
                                            "$ref": "#/components/schemas/v2_invalid_payload_error"
                                        },
                                        {
                                            "$ref": "#/components/schemas/v2_validation_error"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    }
                },
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V2/export-templates/{id}/duplicate": {
            "post": {
                "tags": [
                    "Export Template V2"
                ],
                "summary": "Duplicate an export template",
                "description": "Creates a deep copy of an existing export template including all attributes, analyzer tests, tags, custom form fields, and marketing data. The duplicate receives a '(Copy)' name suffix and Draft status.",
                "operationId": "v2_export_template_duplicate",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template ID to duplicate",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "responses": {
                    "202": {
                        "description": "Accepted - Operation created. Poll GET /V2/operations/{operationId} for status and result.",
                        "headers": {
                            "Content-Location": {
                                "description": "URL of the created operation resource",
                                "schema": {
                                    "type": "string",
                                    "example": "/V2/operations/01980f10-5b04-7845-b0d5-66861c6cabb0"
                                }
                            }
                        },
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/v2_operation_accepted_response"
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    }
                },
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V2/operations/{operationId}": {
            "get": {
                "tags": [
                    "Operations V2"
                ],
                "summary": "Get operation status and result",
                "description": "Retrieves the status, result or error of an asynchronous operation (e.g. created by POST /V2/export-templates, POST /V2/export-templates/{id}/duplicate, PUT /V2/export-templates/{id}, or DELETE /V2/export-templates/{id}). Use this to poll for completion and obtain the resourceId on success or the error envelope on failure.",
                "operationId": "v2_operation_show",
                "parameters": [
                    {
                        "name": "operationId",
                        "in": "path",
                        "description": "Operation UUID",
                        "required": true,
                        "schema": {
                            "type": "string",
                            "format": "uuid"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK - Operation resource with current status and result or error",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/v2_operation"
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found - Operation does not exist",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/v2_operation_not_found_error"
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    }
                },
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{id}/logo": {
            "post": {
                "tags": [
                    "Export Template"
                ],
                "summary": "Upload a logo for an export template",
                "operationId": "e8a0afb94fb3e13dd5c968e53a043df2",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "multipart/form-data": {
                            "schema": {
                                "required": [
                                    "uploadfile"
                                ],
                                "properties": {
                                    "uploadfile": {
                                        "description": "The logo file to upload",
                                        "type": "string",
                                        "format": "binary"
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Logo uploaded successfully",
                        "headers": {
                            "Location": {
                                "description": "URL of the uploaded channel logo",
                                "schema": {
                                    "type": "string"
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Export template with id {id} not found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "message": {
                                            "type": "string",
                                            "example": "Export template with id 00000 not found."
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Invalid request or file",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "message": {
                                            "type": "string",
                                            "example": "No file uploaded. Please ensure that a uploadfile file is provided and does not exceed the 5MB size limit."
                                        }
                                    },
                                    "type": "object"
                                },
                                "examples": {
                                    "file_too_large": {
                                        "summary": "File size exceeds limit",
                                        "value": "{\"message\": \"File is too large. Maximum allowed size is 5 MB.\"}"
                                    },
                                    "invalid_file_type": {
                                        "summary": "Invalid file type",
                                        "value": "{\"message\": \"Invalid image type image/svg+xml. Allowed types: image/jpg, image/png, image/jpeg, image/gif\"}"
                                    },
                                    "image_too_small": {
                                        "summary": "Image dimensions too small",
                                        "value": "{\"message\": \"Image dimensions are too small. The logo must be at least 32x100 pixels.\"}"
                                    },
                                    "image_too_large": {
                                        "summary": "Image dimensions too large",
                                        "value": "{\"message\": \"Image dimensions are too large (5000x4000 pixels). Please resize your image to a smaller size before uploading.\"}"
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "User does not have permission to upload a logo for this export template",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "message": {
                                            "type": "string",
                                            "example": "Access denied"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "500": {
                        "description": "Internal Server Error",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "message": {
                                            "type": "string"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "Export Template"
                ],
                "summary": "Delete a logo from an export template",
                "operationId": "d6d3cc08a7ab97d5b1757501119be3a5",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "responses": {
                    "404": {
                        "description": "Export template with id {id} not found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "message": {
                                            "type": "string",
                                            "example": "Export template with id 00000 not found."
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "204": {
                        "description": "Logo deleted successfully"
                    },
                    "403": {
                        "description": "User does not have permission to upload a logo for this export template",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "message": {
                                            "type": "string",
                                            "example": "Access denied"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "500": {
                        "description": "Internal Server Error",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "message": {
                                            "type": "string"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/V1/export-templates/{id}/commit": {
            "post": {
                "tags": [
                    "Export Template"
                ],
                "summary": "Commit export template changes",
                "description": "This endpoint commits all changes made to the export template into a new revision.",
                "operationId": "export_changes_commit",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "X-Channel-Template-Context",
                        "in": "header",
                        "description": "Name of channel template context to process request against.",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "revisionId": {
                                                    "type": "string",
                                                    "example": "01977d42-b51d-70b4-afed-b5522b5ce896"
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "revisionId": "01977d42-b51d-70b4-afed-b5522b5ce896"
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "revisionId": "01977d42-b51d-70b4-afed-b5522b5ce896"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates": {
            "post": {
                "tags": [
                    "Export Template"
                ],
                "summary": "Create an export template",
                "description": "An export template is a resource that holds the main information of a template for creating channels. This is the main resource which is linked to all other sub-resources that comprise the full channel template. After an export template has been created, all other sub-resources can be linked to it to create an entire channel template. This endpoint allows the creation of an export template.",
                "operationId": "export_create",
                "parameters": [
                    {
                        "name": "X-Channel-Template-Context",
                        "in": "header",
                        "description": "Name of channel template context to process request against.",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 58652
                                                },
                                                "name": {
                                                    "type": "string",
                                                    "example": "Facebook Dynamic Ads"
                                                },
                                                "encoding": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "global": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "pseudo": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "allowXml": {
                                                    "type": "boolean",
                                                    "example": true,
                                                    "nullable": true
                                                },
                                                "validDelimiter": {
                                                    "type": "string",
                                                    "example": "TAB,COMMA,PIPE",
                                                    "nullable": true
                                                },
                                                "roiOptions": {
                                                    "type": "string",
                                                    "example": "PAUSE",
                                                    "nullable": true
                                                },
                                                "accountId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "projectId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "siteId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "logoUrl": {
                                                    "type": "string",
                                                    "example": "https://www.images.com/img.png",
                                                    "nullable": true
                                                },
                                                "createDelta": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "deltaKeyUnique": {
                                                    "type": "boolean",
                                                    "example": false
                                                },
                                                "deltaNewFilename": {
                                                    "type": "string",
                                                    "example": "newFile.csv",
                                                    "nullable": true
                                                },
                                                "deltaChangedFilename": {
                                                    "type": "string",
                                                    "example": "changedFile.csv",
                                                    "nullable": true
                                                },
                                                "deltaDeletedFilename": {
                                                    "type": "string",
                                                    "example": "deletedFile.csv",
                                                    "nullable": true
                                                },
                                                "deltaUnchangedFilename": {
                                                    "type": "string",
                                                    "example": "unchangedFile.csv",
                                                    "nullable": true
                                                },
                                                "deltaSkippedFilename": {
                                                    "type": "string",
                                                    "example": "skippedFile.csv",
                                                    "nullable": true
                                                },
                                                "deltaSingleFile": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "customClassName": {
                                                    "type": "string",
                                                    "example": "Blank",
                                                    "nullable": true
                                                },
                                                "defaultFilename": {
                                                    "type": "string",
                                                    "example": "facebookfeed.tsv"
                                                },
                                                "exportMarketing": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 22059
                                                        },
                                                        "type": {
                                                            "type": "integer",
                                                            "nullable": true
                                                        },
                                                        "publish": {
                                                            "type": "boolean",
                                                            "nullable": true
                                                        },
                                                        "marketingTitle": {
                                                            "type": "string",
                                                            "nullable": true
                                                        },
                                                        "websiteLink": {
                                                            "type": "string",
                                                            "nullable": true
                                                        },
                                                        "landingPageLink": {
                                                            "type": "string",
                                                            "nullable": true
                                                        },
                                                        "featured": {
                                                            "type": "boolean",
                                                            "nullable": true
                                                        },
                                                        "products": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "nullable": true
                                                        },
                                                        "description": {
                                                            "type": "string",
                                                            "nullable": true
                                                        },
                                                        "priority": {
                                                            "type": "integer",
                                                            "example": 0
                                                        },
                                                        "helpLink": {
                                                            "type": "string",
                                                            "nullable": true
                                                        },
                                                        "exportCategoryIds": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "19"
                                                            ]
                                                        },
                                                        "exportCountryIds": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            }
                                                        },
                                                        "exportBrand": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "integer"
                                                                },
                                                                "name": {
                                                                    "type": "string"
                                                                }
                                                            },
                                                            "type": "object",
                                                            "nullable": true
                                                        }
                                                    },
                                                    "type": "object"
                                                },
                                                "fields": {
                                                    "type": "array",
                                                    "items": {}
                                                },
                                                "tags": {
                                                    "type": "array",
                                                    "items": {}
                                                },
                                                "customFormFields": {
                                                    "type": "array",
                                                    "items": {}
                                                },
                                                "owner": {
                                                    "properties": {
                                                        "ownerId": {
                                                            "type": "string",
                                                            "example": "01980f10-5b04-7845-b0d5-66861c6cabb0"
                                                        }
                                                    },
                                                    "type": "object"
                                                },
                                                "exportType": {
                                                    "properties": {
                                                        "type": {
                                                            "type": "string",
                                                            "example": "standard"
                                                        },
                                                        "mainExportId": {
                                                            "type": "integer",
                                                            "nullable": true
                                                        }
                                                    },
                                                    "type": "object"
                                                },
                                                "context": {
                                                    "type": "array",
                                                    "items": {}
                                                },
                                                "createdAt": {
                                                    "type": "string",
                                                    "format": "date-time",
                                                    "example": "2025-07-15T17:09:51+00:00"
                                                },
                                                "updatedAt": {
                                                    "type": "string",
                                                    "format": "date-time",
                                                    "example": "2025-07-15T17:09:51+00:00"
                                                },
                                                "unpublishedChanges": {
                                                    "type": "boolean",
                                                    "example": true
                                                }
                                            },
                                            "type": "object"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "name": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This value should not be blank."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "name": [
                                                            "This value should not be blank."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "name": [
                                                        "This value should not be blank."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "name": [
                                                    "This value should not be blank."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "get": {
                "tags": [
                    "Export Template"
                ],
                "summary": "Retrieve a list of export templates",
                "description": "An export template is a resource that holds the main information of a template for creating channels. This endpoint returns a list with export templates.",
                "operationId": "exports_list",
                "parameters": [
                    {
                        "name": "name",
                        "in": "query",
                        "description": "Filter export templates by name. This can be a part of the name or the full name",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "categoryId",
                        "in": "query",
                        "description": "Filter export templates by their marketing category",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "visibilities",
                        "in": "query",
                        "description": "Array of one or more visibilities to filter by. Possible values are global,custom,draft",
                        "required": false,
                        "style": "form",
                        "explode": true,
                        "schema": {
                            "type": "array",
                            "items": {
                                "type": "string"
                            }
                        }
                    },
                    {
                        "name": "ids",
                        "in": "query",
                        "description": "Array of one or more export template ids to filter by",
                        "required": false,
                        "style": "form",
                        "explode": true,
                        "schema": {
                            "type": "array",
                            "items": {
                                "type": "string"
                            }
                        }
                    },
                    {
                        "name": "allowXml",
                        "in": "query",
                        "description": "Filter export templates by xml support",
                        "required": false,
                        "schema": {
                            "type": "boolean"
                        }
                    },
                    {
                        "name": "createDelta",
                        "in": "query",
                        "description": "Filter export templates by delta support",
                        "required": false,
                        "schema": {
                            "type": "boolean"
                        }
                    },
                    {
                        "name": "deltaKeyUnique",
                        "in": "query",
                        "description": "Filter export templates by delta key uniqueness",
                        "required": false,
                        "schema": {
                            "type": "boolean"
                        }
                    },
                    {
                        "name": "accountId",
                        "in": "query",
                        "description": "Filter export templates by account id",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "projectId",
                        "in": "query",
                        "description": "Filter export templates by project id",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "siteId",
                        "in": "query",
                        "description": "Filter export templates by site id",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "context.<item>",
                        "in": "query",
                        "description": "Filter export templates by context item <item>",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "countryId",
                        "in": "query",
                        "description": "Filter export templates by country id. Use the /V1/export-countries endpoint to retrieve available country ids.",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    },
                    {
                        "name": "type",
                        "in": "query",
                        "description": "Filter export templates by type. Possible values: main, csa",
                        "required": false,
                        "schema": {
                            "type": "string",
                            "enum": [
                                "main",
                                "csa"
                            ]
                        }
                    },
                    {
                        "name": "firstResult",
                        "in": "query",
                        "description": "starting item",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    },
                    {
                        "name": "maxResults",
                        "in": "query",
                        "description": "items per page",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    },
                    {
                        "name": "X-Channel-Template-Context",
                        "in": "header",
                        "description": "Name of channel template context to process request against.",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "integer",
                                                        "example": 58664
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "Amazon"
                                                    },
                                                    "global": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "pseudo": {
                                                        "type": "boolean",
                                                        "example": true
                                                    },
                                                    "allowXml": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "roiOptions": {
                                                        "type": "string",
                                                        "example": "",
                                                        "nullable": true
                                                    },
                                                    "accountId": {
                                                        "type": "integer",
                                                        "example": 1
                                                    },
                                                    "projectId": {
                                                        "type": "integer",
                                                        "example": 2
                                                    },
                                                    "siteId": {
                                                        "type": "integer",
                                                        "example": 3
                                                    },
                                                    "logoUrl": {
                                                        "type": "string",
                                                        "example": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png"
                                                    },
                                                    "createDelta": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "deltaKeyUnique": {
                                                        "type": "boolean",
                                                        "example": true
                                                    },
                                                    "unpublishedChanges": {
                                                        "type": "boolean",
                                                        "example": true
                                                    },
                                                    "createdAt": {
                                                        "type": "string",
                                                        "example": "2025-07-16T11:32:22+00:00"
                                                    },
                                                    "updatedAt": {
                                                        "type": "string",
                                                        "example": "2025-07-16T11:32:22+00:00"
                                                    },
                                                    "tags": {
                                                        "type": "array",
                                                        "items": {
                                                            "type": "object",
                                                            "properties": {
                                                                "id": {
                                                                    "type": "integer"
                                                                },
                                                                "key": {
                                                                    "type": "string"
                                                                },
                                                                "value": {
                                                                    "type": "string"
                                                                }
                                                            }
                                                        }
                                                    },
                                                    "attributeCount": {
                                                        "type": "integer",
                                                        "example": 3
                                                    },
                                                    "siteCount": {
                                                        "type": "integer",
                                                        "example": 2
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "id": 58664,
                                                    "name": "Amazon",
                                                    "global": false,
                                                    "pseudo": true,
                                                    "allowXml": false,
                                                    "roiOptions": "",
                                                    "accountId": 1,
                                                    "projectId": 2,
                                                    "siteId": 3,
                                                    "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                    "createDelta": false,
                                                    "deltaKeyUnique": true,
                                                    "unpublishedChanges": true,
                                                    "createdAt": "2025-07-16T11:32:22+00:00",
                                                    "updatedAt": "2025-07-16T11:32:22+00:00",
                                                    "attributeCount": 3,
                                                    "siteCount": 0,
                                                    "tags": [
                                                        {
                                                            "id": 54754,
                                                            "key": "non_billable_export",
                                                            "value": "1"
                                                        }
                                                    ]
                                                }
                                            },
                                            "example": [
                                                {
                                                    "id": 58664,
                                                    "name": "Amazon",
                                                    "global": false,
                                                    "pseudo": true,
                                                    "allowXml": false,
                                                    "roiOptions": "",
                                                    "accountId": 1,
                                                    "projectId": 2,
                                                    "siteId": 3,
                                                    "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                    "createDelta": false,
                                                    "deltaKeyUnique": true,
                                                    "unpublishedChanges": true,
                                                    "createdAt": "2025-07-16T11:32:22+00:00",
                                                    "updatedAt": "2025-07-16T11:32:22+00:00",
                                                    "attributeCount": 3,
                                                    "siteCount": 0,
                                                    "tags": [
                                                        {
                                                            "id": 54754,
                                                            "key": "non_billable_export",
                                                            "value": "1"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "id": 58663,
                                                    "name": "Google Shopping",
                                                    "global": false,
                                                    "pseudo": true,
                                                    "allowXml": false,
                                                    "roiOptions": "",
                                                    "accountId": 0,
                                                    "projectId": 0,
                                                    "siteId": 0,
                                                    "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                    "createDelta": false,
                                                    "deltaKeyUnique": false
                                                },
                                                {
                                                    "id": 58662,
                                                    "name": "Microsoft Bing",
                                                    "global": false,
                                                    "pseudo": true,
                                                    "allowXml": false,
                                                    "roiOptions": "PAUSE,CPC",
                                                    "accountId": 1,
                                                    "projectId": 2,
                                                    "siteId": 3,
                                                    "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                    "createDelta": true,
                                                    "deltaKeyUnique": true
                                                },
                                                {
                                                    "id": 58661,
                                                    "name": "Facebook Dynamic Ads",
                                                    "global": true,
                                                    "pseudo": false,
                                                    "allowXml": true,
                                                    "roiOptions": "",
                                                    "accountId": 1,
                                                    "projectId": 2,
                                                    "siteId": 3,
                                                    "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                    "createDelta": false,
                                                    "deltaKeyUnique": true
                                                }
                                            ]
                                        },
                                        "pagination": {
                                            "properties": {
                                                "firstResult": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "maxResults": {
                                                    "type": "integer",
                                                    "example": 50
                                                },
                                                "count": {
                                                    "type": "integer",
                                                    "example": 4
                                                },
                                                "total": {
                                                    "type": "integer",
                                                    "example": 4
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "firstResult": 0,
                                                "maxResults": 50,
                                                "count": 4,
                                                "total": 4
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "id": 58664,
                                                "name": "Amazon",
                                                "global": false,
                                                "pseudo": true,
                                                "allowXml": false,
                                                "roiOptions": "",
                                                "accountId": 1,
                                                "projectId": 2,
                                                "siteId": 3,
                                                "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                "createDelta": false,
                                                "deltaKeyUnique": true
                                            },
                                            {
                                                "id": 58663,
                                                "name": "Google Shopping",
                                                "global": false,
                                                "pseudo": true,
                                                "allowXml": false,
                                                "roiOptions": "",
                                                "accountId": 0,
                                                "projectId": 0,
                                                "siteId": 0,
                                                "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                "createDelta": false,
                                                "deltaKeyUnique": false
                                            },
                                            {
                                                "id": 58662,
                                                "name": "Microsoft Bing",
                                                "global": false,
                                                "pseudo": true,
                                                "allowXml": false,
                                                "roiOptions": "PAUSE,CPC",
                                                "accountId": 1,
                                                "projectId": 2,
                                                "siteId": 3,
                                                "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                "createDelta": true,
                                                "deltaKeyUnique": true
                                            },
                                            {
                                                "id": 58661,
                                                "name": "Facebook Dynamic Ads",
                                                "global": true,
                                                "pseudo": false,
                                                "allowXml": true,
                                                "roiOptions": "",
                                                "accountId": 1,
                                                "projectId": 2,
                                                "siteId": 3,
                                                "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                "createDelta": false,
                                                "deltaKeyUnique": true
                                            }
                                        ],
                                        "pagination": {
                                            "firstResult": 0,
                                            "maxResults": 50,
                                            "count": 4,
                                            "total": 4
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "message": {
                                            "type": "string"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "message": {
                                            "type": "string",
                                            "example": "Access denied"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "500": {
                        "description": "Internal Server Error",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "message": {
                                            "type": "string"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{id}": {
            "get": {
                "tags": [
                    "Export Template"
                ],
                "summary": "Retrieve a single export template",
                "description": "An export template is a resource that holds the main information of a template for creating channels. This is the main resource which is linked to all other sub-resources that comprise the full channel template. After an export template has been created, all other sub-resources can be linked to it to create an entire channel template. This endpoint shows a single export template.",
                "operationId": "export_show",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "X-Channel-Template-Context",
                        "in": "header",
                        "description": "Name of channel template context to process request against.",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 58742
                                                },
                                                "name": {
                                                    "type": "string",
                                                    "example": "plain export 1"
                                                },
                                                "global": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "pseudo": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "allowXml": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "validDelimiter": {
                                                    "type": "string",
                                                    "example": "",
                                                    "nullable": true
                                                },
                                                "roiOptions": {
                                                    "type": "string",
                                                    "example": "",
                                                    "nullable": true
                                                },
                                                "accountId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "projectId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "siteId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "logoUrl": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "createDelta": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "deltaKeyUnique": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "defaultFilename": {
                                                    "type": "string",
                                                    "example": "pdsfeed.csv"
                                                },
                                                "exportMarketing": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 40667
                                                        },
                                                        "priority": {
                                                            "type": "integer",
                                                            "example": 0,
                                                            "nullable": true
                                                        },
                                                        "exportCategoryIds": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "19"
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 40667,
                                                        "type": null,
                                                        "publish": null,
                                                        "marketingTitle": null,
                                                        "websiteLink": null,
                                                        "landingPageLink": null,
                                                        "featured": null,
                                                        "products": null,
                                                        "description": null,
                                                        "priority": 0,
                                                        "helpLink": null,
                                                        "exportCategoryIds": [
                                                            "19"
                                                        ],
                                                        "exportCountryIds": [],
                                                        "exportBrand": null
                                                    }
                                                },
                                                "owner": {
                                                    "properties": {
                                                        "ownerId": {
                                                            "type": "string",
                                                            "example": "01977d42-c9ee-7f5e-abe5-cb2a3ba85eea"
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "ownerId": "01977d42-c9ee-7f5e-abe5-cb2a3ba85eea"
                                                    }
                                                },
                                                "exportType": {
                                                    "properties": {
                                                        "type": {
                                                            "type": "string",
                                                            "example": "standard"
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "type": "standard",
                                                        "mainExportId": null
                                                    }
                                                },
                                                "deltaNewFilename": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaChangedFilename": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaDeletedFilename": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaUnchangedFilename": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "encoding": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaSkippedFilename": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaSingleFile": {
                                                    "oneOf": [
                                                        {
                                                            "type": "string"
                                                        },
                                                        {
                                                            "type": "boolean"
                                                        }
                                                    ],
                                                    "nullable": true
                                                },
                                                "customClassName": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "tags": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "object",
                                                        "properties": {
                                                            "id": {
                                                                "type": "integer"
                                                            },
                                                            "key": {
                                                                "type": "string"
                                                            },
                                                            "value": {
                                                                "type": "string"
                                                            }
                                                        }
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 58742,
                                                "name": "plain export 1",
                                                "encoding": null,
                                                "global": false,
                                                "pseudo": false,
                                                "allowXml": false,
                                                "validDelimiter": "",
                                                "roiOptions": "",
                                                "accountId": 0,
                                                "projectId": 0,
                                                "siteId": 0,
                                                "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                "createDelta": false,
                                                "deltaKeyUnique": true,
                                                "deltaNewFilename": null,
                                                "deltaChangedFilename": null,
                                                "deltaDeletedFilename": null,
                                                "deltaUnchangedFilename": null,
                                                "deltaSkippedFilename": null,
                                                "deltaSingleFile": null,
                                                "customClassName": null,
                                                "defaultFilename": "pdsfeed.csv",
                                                "exportMarketing": {
                                                    "id": 40667,
                                                    "type": null,
                                                    "publish": null,
                                                    "marketingTitle": null,
                                                    "websiteLink": null,
                                                    "landingPageLink": null,
                                                    "featured": null,
                                                    "products": null,
                                                    "description": null,
                                                    "priority": 0,
                                                    "helpLink": null,
                                                    "exportCategoryIds": [
                                                        "19"
                                                    ],
                                                    "exportCountryIds": [],
                                                    "exportBrand": null
                                                },
                                                "fields": [],
                                                "tags": [],
                                                "customFormFields": [],
                                                "owner": {
                                                    "ownerId": "01977d42-c9ee-7f5e-abe5-cb2a3ba85eea"
                                                },
                                                "exportType": {
                                                    "type": "standard",
                                                    "mainExportId": null
                                                },
                                                "context": []
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 58742,
                                            "name": "plain export 1",
                                            "encoding": null,
                                            "global": false,
                                            "pseudo": false,
                                            "allowXml": false,
                                            "validDelimiter": "",
                                            "roiOptions": "",
                                            "accountId": 0,
                                            "projectId": 0,
                                            "siteId": 0,
                                            "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                            "createDelta": false,
                                            "deltaKeyUnique": true,
                                            "deltaNewFilename": null,
                                            "deltaChangedFilename": null,
                                            "deltaDeletedFilename": null,
                                            "deltaUnchangedFilename": null,
                                            "deltaSkippedFilename": null,
                                            "deltaSingleFile": null,
                                            "customClassName": null,
                                            "defaultFilename": "pdsfeed.csv",
                                            "exportMarketing": {
                                                "id": 40667,
                                                "type": null,
                                                "publish": null,
                                                "marketingTitle": null,
                                                "websiteLink": null,
                                                "landingPageLink": null,
                                                "featured": null,
                                                "products": null,
                                                "description": null,
                                                "priority": 0,
                                                "helpLink": null,
                                                "exportCategoryIds": [
                                                    "19"
                                                ],
                                                "exportCountryIds": [],
                                                "exportBrand": null
                                            },
                                            "fields": [],
                                            "tags": [],
                                            "customFormFields": [],
                                            "owner": {
                                                "ownerId": "01977d42-c9ee-7f5e-abe5-cb2a3ba85eea"
                                            },
                                            "exportType": {
                                                "type": "standard",
                                                "mainExportId": null
                                            },
                                            "context": []
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "patch": {
                "tags": [
                    "Export Template"
                ],
                "summary": "Update an export template",
                "description": "An export template is a resource that holds the main information of a template for creating channels. This is the main resource which is linked to all other sub-resources that comprise the full channel template. After an export template has been created, all other sub-resources can be linked to it to create an entire channel template. This endpoint allows the updating of an export template.",
                "operationId": "export_update",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "X-Channel-Template-Context",
                        "in": "header",
                        "description": "Name of channel template context to process request against.",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_update_input"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 58766
                                                },
                                                "name": {
                                                    "type": "string",
                                                    "example": "Facebook Dynamic Ads"
                                                },
                                                "global": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "pseudo": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "allowXml": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "validDelimiter": {
                                                    "type": "string",
                                                    "example": "",
                                                    "nullable": true
                                                },
                                                "roiOptions": {
                                                    "type": "string",
                                                    "example": "",
                                                    "nullable": true
                                                },
                                                "accountId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "projectId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "siteId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "logoUrl": {
                                                    "type": "string",
                                                    "example": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                    "nullable": true
                                                },
                                                "createDelta": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "deltaKeyUnique": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "deltaNewFilename": {
                                                    "example": "newFile.csv"
                                                },
                                                "deltaChangedFilename": {
                                                    "type": "string",
                                                    "example": "changedFile.csv",
                                                    "nullable": true
                                                },
                                                "deltaDeletedFilename": {
                                                    "type": "string",
                                                    "example": "deletedFile.csv",
                                                    "nullable": true
                                                },
                                                "deltaUnchangedFilename": {
                                                    "type": "string",
                                                    "example": "unchangedFile.csv",
                                                    "nullable": true
                                                },
                                                "deltaSkippedFilename": {
                                                    "type": "string",
                                                    "example": "skippedFile.csv",
                                                    "nullable": true
                                                },
                                                "defaultFilename": {
                                                    "type": "string",
                                                    "example": "pdsfeed.csv"
                                                },
                                                "encoding": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaSingleFile": {
                                                    "nullable": true
                                                },
                                                "customClassName": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "exportMarketing": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 40691
                                                        },
                                                        "priority": {
                                                            "type": "integer",
                                                            "example": 0,
                                                            "nullable": true
                                                        },
                                                        "exportCategoryIds": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "19"
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 40691,
                                                        "type": null,
                                                        "publish": null,
                                                        "marketingTitle": null,
                                                        "websiteLink": null,
                                                        "landingPageLink": null,
                                                        "featured": null,
                                                        "products": null,
                                                        "description": null,
                                                        "priority": 0,
                                                        "helpLink": null,
                                                        "exportCategoryIds": [
                                                            "19"
                                                        ],
                                                        "exportCountryIds": [],
                                                        "exportBrand": null
                                                    }
                                                },
                                                "owner": {
                                                    "properties": {
                                                        "ownerId": {
                                                            "type": "string",
                                                            "example": "01977d42-d02d-7202-b74d-8ea03d7bf7f0"
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "ownerId": "01977d42-d02d-7202-b74d-8ea03d7bf7f0"
                                                    }
                                                },
                                                "exportType": {
                                                    "properties": {
                                                        "type": {
                                                            "type": "string",
                                                            "example": "standard"
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "type": "standard",
                                                        "mainExportId": null
                                                    }
                                                },
                                                "fields": {
                                                    "type": "array",
                                                    "items": {},
                                                    "example": []
                                                },
                                                "tags": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "object",
                                                        "properties": {
                                                            "id": {
                                                                "type": "integer"
                                                            },
                                                            "key": {
                                                                "type": "string"
                                                            },
                                                            "value": {
                                                                "type": "string"
                                                            }
                                                        }
                                                    },
                                                    "example": []
                                                },
                                                "customFormFields": {
                                                    "type": "array",
                                                    "items": {},
                                                    "example": []
                                                },
                                                "context": {
                                                    "type": "object",
                                                    "properties": {
                                                        "accountIds": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "integer"
                                                            }
                                                        },
                                                        "projectIds": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "integer"
                                                            }
                                                        },
                                                        "siteIds": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "integer"
                                                            }
                                                        }
                                                    },
                                                    "example": {
                                                        "accountIds": [
                                                            1000,
                                                            2000
                                                        ],
                                                        "projectIds": [
                                                            100,
                                                            200
                                                        ],
                                                        "siteIds": [
                                                            3000
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 58766,
                                                "name": "Facebook Dynamic Ads",
                                                "encoding": null,
                                                "global": false,
                                                "pseudo": false,
                                                "allowXml": false,
                                                "validDelimiter": "",
                                                "roiOptions": "",
                                                "accountId": 0,
                                                "projectId": 0,
                                                "siteId": 0,
                                                "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                "createDelta": true,
                                                "deltaKeyUnique": true,
                                                "deltaNewFilename": "newFile.csv",
                                                "deltaChangedFilename": "changedFile.csv",
                                                "deltaDeletedFilename": "deletedFile.csv",
                                                "deltaUnchangedFilename": "unchangedFile.csv",
                                                "deltaSkippedFilename": "skippedFile.csv",
                                                "deltaSingleFile": null,
                                                "customClassName": null,
                                                "defaultFilename": "pdsfeed.csv",
                                                "exportMarketing": {
                                                    "id": 40691,
                                                    "type": null,
                                                    "publish": null,
                                                    "marketingTitle": null,
                                                    "websiteLink": null,
                                                    "landingPageLink": null,
                                                    "featured": null,
                                                    "products": null,
                                                    "description": null,
                                                    "priority": 0,
                                                    "helpLink": null,
                                                    "exportCategoryIds": [
                                                        "19"
                                                    ],
                                                    "exportCountryIds": [],
                                                    "exportBrand": null
                                                },
                                                "fields": [],
                                                "tags": [],
                                                "customFormFields": [],
                                                "owner": {
                                                    "ownerId": "01977d42-d02d-7202-b74d-8ea03d7bf7f0"
                                                },
                                                "exportType": {
                                                    "type": "standard",
                                                    "mainExportId": null
                                                },
                                                "context": []
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 108529,
                                            "name": "a new export name 2",
                                            "encoding": "UTF-16",
                                            "global": false,
                                            "pseudo": false,
                                            "allowXml": true,
                                            "validDelimiter": "COMMA",
                                            "roiOptions": "PAUSE",
                                            "accountId": 0,
                                            "projectId": 0,
                                            "siteId": 0,
                                            "logoUrl": "https://www.image.com/image.png",
                                            "createDelta": true,
                                            "deltaKeyUnique": true,
                                            "deltaNewFilename": "newFile.csv",
                                            "deltaChangedFilename": "changedFile.csv",
                                            "deltaDeletedFilename": "deletedFile.csv",
                                            "deltaUnchangedFilename": "unchangedFile.csv",
                                            "deltaSkippedFilename": "skippedFile.csv",
                                            "deltaSingleFile": true,
                                            "customClassName": "Blank",
                                            "defaultFilename": "foo.csv",
                                            "exportMarketing": {
                                                "id": 90454,
                                                "type": null,
                                                "publish": null,
                                                "marketingTitle": null,
                                                "websiteLink": null,
                                                "landingPageLink": null,
                                                "featured": null,
                                                "products": null,
                                                "description": null,
                                                "priority": 0,
                                                "helpLink": null,
                                                "exportCategoryIds": [
                                                    "19"
                                                ],
                                                "exportCountryIds": [],
                                                "exportBrand": null
                                            },
                                            "fields": [],
                                            "tags": [
                                                {
                                                    "id": 59319,
                                                    "key": "main_channel_type_id",
                                                    "value": "321"
                                                }
                                            ],
                                            "customFormFields": [],
                                            "owner": {
                                                "ownerId": "019804ae-4b33-7890-b5b8-9ee571a72c10"
                                            },
                                            "exportType": {
                                                "type": "sub",
                                                "mainExportId": 321
                                            },
                                            "context": {
                                                "accountIds": [
                                                    1000,
                                                    2000
                                                ],
                                                "projectIds": [
                                                    100,
                                                    200
                                                ],
                                                "siteIds": [
                                                    3000
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 99999 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 99999 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 99999 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Insufficient permission when attempting to modify 'global'."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Insufficient permission when attempting to modify 'global'."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Insufficient permission when attempting to modify 'global'."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "name": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This value should not be blank."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "name": [
                                                            "This value should not be blank."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "name": [
                                                        "This value should not be blank."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "name": [
                                                    "This value should not be blank."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V2/export-templates/{id}/schema": {
            "get": {
                "tags": [
                    "Export Template"
                ],
                "summary": "Get JSON schema for export template",
                "description": "Returns the complete JSON schema for an export template including all fields with their validations converted from Analyzer Tests V2 into standard JSON Schema validation keywords (minLength, maxLength, pattern, minimum, maximum, etc.). This schema can be used for validation in both the current platform and NextGen.",
                "operationId": "v2_export_template_schema",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "$schema": {
                                            "type": "string",
                                            "example": "http://json-schema.org/draft-07/schema#"
                                        },
                                        "type": {
                                            "type": "string",
                                            "example": "object"
                                        },
                                        "title": {
                                            "type": "string",
                                            "example": "Google Merchant Center"
                                        },
                                        "properties": {
                                            "type": "object",
                                            "additionalProperties": {
                                                "type": "object",
                                                "properties": {
                                                    "type": {
                                                        "type": "string",
                                                        "example": "string"
                                                    },
                                                    "title": {
                                                        "type": "string",
                                                        "example": "Product ID"
                                                    },
                                                    "description": {
                                                        "type": "string",
                                                        "example": "Unique product identifier"
                                                    },
                                                    "examples": {
                                                        "type": "array",
                                                        "items": {
                                                            "type": "string"
                                                        }
                                                    },
                                                    "format": {
                                                        "type": "string",
                                                        "example": "decimal"
                                                    },
                                                    "minLength": {
                                                        "type": "integer",
                                                        "example": 1
                                                    },
                                                    "maxLength": {
                                                        "type": "integer",
                                                        "example": 100
                                                    },
                                                    "pattern": {
                                                        "type": "string",
                                                        "example": "^[A-Z0-9]+$"
                                                    },
                                                    "minimum": {
                                                        "type": "number",
                                                        "example": 0
                                                    },
                                                    "maximum": {
                                                        "type": "number",
                                                        "example": 999999
                                                    }
                                                }
                                            }
                                        },
                                        "required": {
                                            "type": "array",
                                            "items": {
                                                "type": "string"
                                            },
                                            "example": [
                                                "product_id",
                                                "price"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{id}/full-view": {
            "get": {
                "tags": [
                    "Export Template"
                ],
                "summary": "Retrieve a full export template view.",
                "description": "An export template is a resource that holds the main information of a template for creating channels. This endpoint shows a full view of an export template with all related entities.",
                "operationId": "export_full_view",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "X-Channel-Template-Context",
                        "in": "header",
                        "description": "Name of channel template context to process request against.",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 58756
                                                },
                                                "name": {
                                                    "type": "string",
                                                    "example": "export 1"
                                                },
                                                "global": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "pseudo": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "allowXml": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "validDelimiter": {
                                                    "type": "string",
                                                    "example": "",
                                                    "nullable": true
                                                },
                                                "roiOptions": {
                                                    "type": "string",
                                                    "example": "",
                                                    "nullable": true
                                                },
                                                "accountId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "projectId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "siteId": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "logoUrl": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "createDelta": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "deltaKeyUnique": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "defaultFilename": {
                                                    "type": "string",
                                                    "example": "pdsfeed.csv"
                                                },
                                                "exportMarketing": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 40681
                                                        },
                                                        "priority": {
                                                            "type": "integer",
                                                            "example": 0,
                                                            "nullable": true
                                                        },
                                                        "exportCategoryIds": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "17"
                                                            ]
                                                        },
                                                        "exportBrand": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "integer",
                                                                    "example": 2629
                                                                },
                                                                "name": {
                                                                    "type": "string",
                                                                    "example": "Facebook"
                                                                }
                                                            },
                                                            "type": "object",
                                                            "example": {
                                                                "id": 2629,
                                                                "name": "Facebook"
                                                            }
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 40681,
                                                        "type": null,
                                                        "publish": null,
                                                        "marketingTitle": null,
                                                        "websiteLink": null,
                                                        "landingPageLink": null,
                                                        "featured": null,
                                                        "products": null,
                                                        "description": null,
                                                        "priority": 0,
                                                        "helpLink": null,
                                                        "exportCategoryIds": [
                                                            "17"
                                                        ],
                                                        "exportCountryIds": [],
                                                        "exportBrand": {
                                                            "id": 2629,
                                                            "name": "Facebook"
                                                        }
                                                    }
                                                },
                                                "fields": {
                                                    "type": "array",
                                                    "items": {
                                                        "properties": {
                                                            "id": {
                                                                "type": "integer",
                                                                "example": 995296
                                                            },
                                                            "alias": {
                                                                "type": "string",
                                                                "example": "title"
                                                            },
                                                            "mandatory": {
                                                                "type": "boolean",
                                                                "example": false,
                                                                "nullable": true
                                                            },
                                                            "type": {
                                                                "type": "string",
                                                                "enum": [
                                                                    "mandatory",
                                                                    "conditionally_mandatory",
                                                                    "optional"
                                                                ],
                                                                "example": "optional"
                                                            },
                                                            "conditions": {
                                                                "type": "array",
                                                                "items": {
                                                                    "type": "object",
                                                                    "properties": {
                                                                        "triggerAttribute": {
                                                                            "type": "string"
                                                                        },
                                                                        "triggerValue": {
                                                                            "type": "string"
                                                                        },
                                                                        "operator": {
                                                                            "type": "string",
                                                                            "enum": [
                                                                                "equals",
                                                                                "not_equals"
                                                                            ]
                                                                        },
                                                                        "description": {
                                                                            "type": "string"
                                                                        }
                                                                    }
                                                                },
                                                                "example": []
                                                            },
                                                            "flag": {
                                                                "type": "string",
                                                                "example": "not hidden"
                                                            },
                                                            "isDefaultTrackingColumn": {
                                                                "type": "boolean",
                                                                "example": false,
                                                                "nullable": true
                                                            },
                                                            "isUniqueColumn": {
                                                                "type": "boolean",
                                                                "example": false,
                                                                "nullable": true
                                                            },
                                                            "order": {
                                                                "type": "integer",
                                                                "example": 0,
                                                                "nullable": true
                                                            },
                                                            "deltaIgnore": {
                                                                "type": "boolean",
                                                                "example": false,
                                                                "nullable": true
                                                            },
                                                            "deltaKey": {
                                                                "type": "boolean",
                                                                "example": false,
                                                                "nullable": true
                                                            },
                                                            "automapIgnore": {
                                                                "type": "boolean",
                                                                "example": false,
                                                                "nullable": true
                                                            },
                                                            "description": {
                                                                "type": "string",
                                                                "example": "",
                                                                "nullable": true
                                                            },
                                                            "fieldTags": {
                                                                "type": "array",
                                                                "items": {
                                                                    "properties": {
                                                                        "id": {
                                                                            "type": "integer",
                                                                            "example": 1247692
                                                                        },
                                                                        "key": {
                                                                            "type": "string",
                                                                            "example": "classification_field_type"
                                                                        },
                                                                        "value": {
                                                                            "type": "string",
                                                                            "example": "Numeric"
                                                                        }
                                                                    },
                                                                    "type": "object",
                                                                    "example": {
                                                                        "id": 1247692,
                                                                        "key": "classification_field_type",
                                                                        "value": "Numeric"
                                                                    }
                                                                },
                                                                "example": [
                                                                    {
                                                                        "id": 1247692,
                                                                        "key": "classification_field_type",
                                                                        "value": "Numeric"
                                                                    },
                                                                    {
                                                                        "id": 1247693,
                                                                        "key": "classification_field_sub_type",
                                                                        "value": "details"
                                                                    }
                                                                ]
                                                            },
                                                            "analyzerTestIds": {
                                                                "type": "array",
                                                                "items": {
                                                                    "type": "integer"
                                                                },
                                                                "example": [
                                                                    583559
                                                                ]
                                                            },
                                                            "fieldname": {
                                                                "type": "string",
                                                                "example": "name"
                                                            }
                                                        },
                                                        "type": "object",
                                                        "example": {
                                                            "id": 995296,
                                                            "alias": "title",
                                                            "mandatory": false,
                                                            "type": "optional",
                                                            "conditions": [],
                                                            "flag": "not hidden",
                                                            "isDefaultTrackingColumn": false,
                                                            "isUniqueColumn": false,
                                                            "order": 0,
                                                            "deltaIgnore": false,
                                                            "deltaKey": false,
                                                            "automapIgnore": false,
                                                            "description": "",
                                                            "example": null,
                                                            "format": null,
                                                            "fieldTags": [
                                                                {
                                                                    "id": 1247692,
                                                                    "key": "classification_field_type",
                                                                    "value": "Numeric"
                                                                },
                                                                {
                                                                    "id": 1247693,
                                                                    "key": "classification_field_sub_type",
                                                                    "value": "details"
                                                                }
                                                            ],
                                                            "analyzerTestIds": [
                                                                583559
                                                            ],
                                                            "fieldname": "name"
                                                        }
                                                    },
                                                    "example": [
                                                        {
                                                            "id": 995296,
                                                            "alias": "title",
                                                            "mandatory": false,
                                                            "type": "optional",
                                                            "conditions": [],
                                                            "flag": "not hidden",
                                                            "isDefaultTrackingColumn": false,
                                                            "isUniqueColumn": false,
                                                            "order": 0,
                                                            "deltaIgnore": false,
                                                            "deltaKey": false,
                                                            "automapIgnore": false,
                                                            "description": "",
                                                            "example": null,
                                                            "format": null,
                                                            "fieldTags": [
                                                                {
                                                                    "id": 1247692,
                                                                    "key": "classification_field_type",
                                                                    "value": "Numeric"
                                                                },
                                                                {
                                                                    "id": 1247693,
                                                                    "key": "classification_field_sub_type",
                                                                    "value": "details"
                                                                }
                                                            ],
                                                            "analyzerTestIds": [
                                                                583559
                                                            ],
                                                            "fieldname": "name"
                                                        },
                                                        {
                                                            "id": 995297,
                                                            "alias": "title 2",
                                                            "mandatory": false,
                                                            "type": "optional",
                                                            "conditions": [],
                                                            "flag": "not hidden",
                                                            "isDefaultTrackingColumn": false,
                                                            "isUniqueColumn": false,
                                                            "order": 0,
                                                            "deltaIgnore": false,
                                                            "deltaKey": false,
                                                            "automapIgnore": false,
                                                            "description": "",
                                                            "example": null,
                                                            "format": null,
                                                            "fieldTags": [],
                                                            "analyzerTestIds": [
                                                                583560
                                                            ],
                                                            "fieldname": "name 2"
                                                        }
                                                    ]
                                                },
                                                "tags": {
                                                    "type": "array",
                                                    "items": {
                                                        "properties": {
                                                            "id": {
                                                                "type": "integer",
                                                                "example": 56112
                                                            },
                                                            "key": {
                                                                "type": "string",
                                                                "example": "some key 1"
                                                            },
                                                            "value": {
                                                                "type": "string",
                                                                "example": "some value 1"
                                                            }
                                                        },
                                                        "type": "object",
                                                        "example": {
                                                            "id": 56112,
                                                            "key": "some key 1",
                                                            "value": "some value 1"
                                                        }
                                                    },
                                                    "example": [
                                                        {
                                                            "id": 56112,
                                                            "key": "some key 1",
                                                            "value": "some value 1"
                                                        },
                                                        {
                                                            "id": 56113,
                                                            "key": "some key 2",
                                                            "value": "some value 2"
                                                        }
                                                    ]
                                                },
                                                "customFormFields": {
                                                    "type": "array",
                                                    "items": {
                                                        "properties": {
                                                            "id": {
                                                                "type": "integer",
                                                                "example": 2579
                                                            },
                                                            "name": {
                                                                "type": "string",
                                                                "example": "title"
                                                            },
                                                            "caption": {
                                                                "type": "string",
                                                                "example": "captiontext"
                                                            },
                                                            "type": {
                                                                "type": "string",
                                                                "example": "text"
                                                            },
                                                            "placeholder": {
                                                                "type": "string",
                                                                "example": "some text"
                                                            },
                                                            "data": {
                                                                "type": "string",
                                                                "example": "",
                                                                "nullable": true
                                                            },
                                                            "trigger": {
                                                                "type": "string",
                                                                "example": "ADD_TITLE_HEADER"
                                                            },
                                                            "order": {
                                                                "type": "integer",
                                                                "example": 1
                                                            }
                                                        },
                                                        "type": "object",
                                                        "example": {
                                                            "id": 2579,
                                                            "name": "title",
                                                            "caption": "captiontext",
                                                            "type": "text",
                                                            "placeholder": "some text",
                                                            "data": "",
                                                            "trigger": "ADD_TITLE_HEADER",
                                                            "order": 1
                                                        }
                                                    },
                                                    "example": [
                                                        {
                                                            "id": 2579,
                                                            "name": "title",
                                                            "caption": "captiontext",
                                                            "type": "text",
                                                            "placeholder": "some text",
                                                            "data": "",
                                                            "trigger": "ADD_TITLE_HEADER",
                                                            "order": 1
                                                        }
                                                    ]
                                                },
                                                "exportType": {
                                                    "properties": {
                                                        "type": {
                                                            "type": "string",
                                                            "example": "standard"
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "type": "standard",
                                                        "mainExportId": null
                                                    }
                                                },
                                                "deltaNewFilename": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaChangedFilename": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaDeletedFilename": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaUnchangedFilename": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "encoding": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaSkippedFilename": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "deltaSingleFile": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "customClassName": {
                                                    "type": "string",
                                                    "nullable": true
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 58756,
                                                "name": "export 1",
                                                "encoding": null,
                                                "global": true,
                                                "pseudo": false,
                                                "allowXml": true,
                                                "validDelimiter": "",
                                                "roiOptions": "",
                                                "accountId": 0,
                                                "projectId": 0,
                                                "siteId": 0,
                                                "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                                "createDelta": false,
                                                "deltaKeyUnique": true,
                                                "deltaNewFilename": null,
                                                "deltaChangedFilename": null,
                                                "deltaDeletedFilename": null,
                                                "deltaUnchangedFilename": null,
                                                "deltaSkippedFilename": null,
                                                "deltaSingleFile": null,
                                                "customClassName": null,
                                                "defaultFilename": "pdsfeed.csv",
                                                "exportMarketing": {
                                                    "id": 40681,
                                                    "type": null,
                                                    "publish": null,
                                                    "marketingTitle": null,
                                                    "websiteLink": null,
                                                    "landingPageLink": null,
                                                    "featured": null,
                                                    "products": null,
                                                    "description": null,
                                                    "priority": 0,
                                                    "helpLink": null,
                                                    "exportCategoryIds": [
                                                        "17"
                                                    ],
                                                    "exportCountryIds": [],
                                                    "exportBrand": {
                                                        "id": 2629,
                                                        "name": "Facebook"
                                                    }
                                                },
                                                "fields": [
                                                    {
                                                        "id": 995296,
                                                        "alias": "title",
                                                        "mandatory": false,
                                                        "type": "optional",
                                                        "conditions": [],
                                                        "flag": "not hidden",
                                                        "isDefaultTrackingColumn": false,
                                                        "isUniqueColumn": false,
                                                        "order": 0,
                                                        "deltaIgnore": false,
                                                        "deltaKey": false,
                                                        "automapIgnore": false,
                                                        "description": "",
                                                        "example": null,
                                                        "format": null,
                                                        "fieldTags": [
                                                            {
                                                                "id": 1247692,
                                                                "key": "classification_field_type",
                                                                "value": "Numeric"
                                                            },
                                                            {
                                                                "id": 1247693,
                                                                "key": "classification_field_sub_type",
                                                                "value": "details"
                                                            }
                                                        ],
                                                        "analyzerTestIds": [
                                                            583559
                                                        ],
                                                        "fieldname": "name"
                                                    },
                                                    {
                                                        "id": 995297,
                                                        "alias": "title 2",
                                                        "mandatory": false,
                                                        "type": "optional",
                                                        "conditions": [],
                                                        "flag": "not hidden",
                                                        "isDefaultTrackingColumn": false,
                                                        "isUniqueColumn": false,
                                                        "order": 0,
                                                        "deltaIgnore": false,
                                                        "deltaKey": false,
                                                        "automapIgnore": false,
                                                        "description": "",
                                                        "example": null,
                                                        "format": null,
                                                        "fieldTags": [],
                                                        "analyzerTestIds": [
                                                            583560
                                                        ],
                                                        "fieldname": "name 2"
                                                    }
                                                ],
                                                "tags": [
                                                    {
                                                        "id": 56112,
                                                        "key": "some key 1",
                                                        "value": "some value 1"
                                                    },
                                                    {
                                                        "id": 56113,
                                                        "key": "some key 2",
                                                        "value": "some value 2"
                                                    }
                                                ],
                                                "customFormFields": [
                                                    {
                                                        "id": 2579,
                                                        "name": "title",
                                                        "caption": "captiontext",
                                                        "type": "text",
                                                        "placeholder": "some text",
                                                        "data": "",
                                                        "trigger": "ADD_TITLE_HEADER",
                                                        "order": 1
                                                    }
                                                ],
                                                "owner": [],
                                                "exportType": {
                                                    "type": "standard",
                                                    "mainExportId": null
                                                },
                                                "context": []
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 58756,
                                            "name": "export 1",
                                            "encoding": null,
                                            "global": true,
                                            "pseudo": false,
                                            "allowXml": true,
                                            "validDelimiter": "",
                                            "roiOptions": "",
                                            "accountId": 0,
                                            "projectId": 0,
                                            "siteId": 0,
                                            "logoUrl": "https://ctm-channel-logos.stage-ctm-cdn.productsup.com/channel/0/logo.png",
                                            "createDelta": false,
                                            "deltaKeyUnique": true,
                                            "deltaNewFilename": null,
                                            "deltaChangedFilename": null,
                                            "deltaDeletedFilename": null,
                                            "deltaUnchangedFilename": null,
                                            "deltaSkippedFilename": null,
                                            "deltaSingleFile": null,
                                            "customClassName": null,
                                            "defaultFilename": "pdsfeed.csv",
                                            "exportMarketing": {
                                                "id": 40681,
                                                "type": null,
                                                "publish": null,
                                                "marketingTitle": null,
                                                "websiteLink": null,
                                                "landingPageLink": null,
                                                "featured": null,
                                                "products": null,
                                                "description": null,
                                                "priority": 0,
                                                "helpLink": null,
                                                "exportCategoryIds": [
                                                    "17"
                                                ],
                                                "exportCountryIds": [],
                                                "exportBrand": {
                                                    "id": 2629,
                                                    "name": "Facebook"
                                                }
                                            },
                                            "fields": [
                                                {
                                                    "id": 995296,
                                                    "alias": "title",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 0,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "",
                                                    "example": null,
                                                    "format": null,
                                                    "fieldTags": [
                                                        {
                                                            "id": 1247692,
                                                            "key": "classification_field_type",
                                                            "value": "Numeric"
                                                        },
                                                        {
                                                            "id": 1247693,
                                                            "key": "classification_field_sub_type",
                                                            "value": "details"
                                                        }
                                                    ],
                                                    "analyzerTestIds": [
                                                        583559
                                                    ],
                                                    "fieldname": "name"
                                                },
                                                {
                                                    "id": 995297,
                                                    "alias": "title 2",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 0,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "",
                                                    "example": null,
                                                    "format": null,
                                                    "fieldTags": [],
                                                    "analyzerTestIds": [
                                                        583560
                                                    ],
                                                    "fieldname": "name 2"
                                                }
                                            ],
                                            "tags": [
                                                {
                                                    "id": 56112,
                                                    "key": "some key 1",
                                                    "value": "some value 1"
                                                },
                                                {
                                                    "id": 56113,
                                                    "key": "some key 2",
                                                    "value": "some value 2"
                                                }
                                            ],
                                            "customFormFields": [
                                                {
                                                    "id": 2579,
                                                    "name": "title",
                                                    "caption": "captiontext",
                                                    "type": "text",
                                                    "placeholder": "some text",
                                                    "data": "",
                                                    "trigger": "ADD_TITLE_HEADER",
                                                    "order": 1
                                                }
                                            ],
                                            "owner": [],
                                            "exportType": {
                                                "type": "standard",
                                                "mainExportId": null
                                            },
                                            "context": []
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-brand": {
            "post": {
                "tags": [
                    "Export Marketing"
                ],
                "summary": "Create an export brand",
                "description": "An export brand is the brand of the export marketing resource. This endpoint allows the creation of an export brand.",
                "operationId": "export_brand_create",
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_brand_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 2635
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 2635
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 2635
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "name": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field is missing."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "name": [
                                                            "This field is missing."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "name": [
                                                        "This field is missing."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "name": [
                                                    "This field is missing."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-brands": {
            "get": {
                "tags": [
                    "Export Marketing"
                ],
                "summary": "Retrieve a list of export brands",
                "description": "An export brand is the brand of the export marketing resource. This endpoint lists all export brands.",
                "operationId": "export_brand_list",
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "integer",
                                                        "example": 2638
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name 2"
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "id": 2638,
                                                    "name": "name 2"
                                                }
                                            },
                                            "example": [
                                                {
                                                    "id": 2638,
                                                    "name": "name 2"
                                                },
                                                {
                                                    "id": 2637,
                                                    "name": "name 1"
                                                }
                                            ]
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "id": 2638,
                                                "name": "name 2"
                                            },
                                            {
                                                "id": 2637,
                                                "name": "name 1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-categories": {
            "get": {
                "tags": [
                    "Export Marketing"
                ],
                "summary": "Retrieve a list of export categories",
                "description": "An export category is a category for the export marketing resource. This endpoint lists all export categories.",
                "operationId": "export_categories_list",
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "integer",
                                                        "example": 508
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "Marketing"
                                                    },
                                                    "description": {
                                                        "type": "string",
                                                        "example": "",
                                                        "nullable": true
                                                    },
                                                    "slug": {
                                                        "type": "string",
                                                        "example": "marketing"
                                                    },
                                                    "priority": {
                                                        "type": "integer",
                                                        "example": 2
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "id": 508,
                                                    "name": "Marketing",
                                                    "description": "",
                                                    "slug": "marketing",
                                                    "priority": 2
                                                }
                                            },
                                            "example": [
                                                {
                                                    "id": 508,
                                                    "name": "Marketing",
                                                    "description": "",
                                                    "slug": "marketing",
                                                    "priority": 2
                                                },
                                                {
                                                    "id": 507,
                                                    "name": "Social media",
                                                    "description": "",
                                                    "slug": "social-media",
                                                    "priority": 1
                                                }
                                            ]
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "id": 508,
                                                "name": "Marketing",
                                                "description": "",
                                                "slug": "marketing",
                                                "priority": 2
                                            },
                                            {
                                                "id": 507,
                                                "name": "Social media",
                                                "description": "",
                                                "slug": "social-media",
                                                "priority": 1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-category/{id}": {
            "get": {
                "tags": [
                    "Export Marketing"
                ],
                "summary": "Retrieve a single export category",
                "description": "An export category is a category for the export marketing resource. This endpoint shows a single export category.",
                "operationId": "export_category_show",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Category id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 515
                                                },
                                                "name": {
                                                    "type": "string",
                                                    "example": "Social media"
                                                },
                                                "description": {
                                                    "type": "string",
                                                    "example": "",
                                                    "nullable": true
                                                },
                                                "slug": {
                                                    "type": "string",
                                                    "example": "social-media"
                                                },
                                                "priority": {
                                                    "type": "integer",
                                                    "example": 1
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 515,
                                                "name": "Social media",
                                                "description": "",
                                                "slug": "social-media",
                                                "priority": 1
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 515,
                                            "name": "Social media",
                                            "description": "",
                                            "slug": "social-media",
                                            "priority": 1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export Category with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Category with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Category with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-countries": {
            "get": {
                "tags": [
                    "Export Marketing"
                ],
                "summary": "Retrieve a list of export countries",
                "description": "An export country is a country for the export marketing resource. This endpoint lists all export countries.",
                "operationId": "export_countries_list",
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "integer",
                                                        "example": 626
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "Germany"
                                                    },
                                                    "countryCode": {
                                                        "type": "string",
                                                        "example": "DE"
                                                    },
                                                    "region": {
                                                        "type": "string",
                                                        "example": "Europe"
                                                    },
                                                    "priority": {
                                                        "type": "integer",
                                                        "example": 1
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "id": 626,
                                                    "name": "Germany",
                                                    "countryCode": "DE",
                                                    "region": "Europe",
                                                    "priority": 1
                                                }
                                            },
                                            "example": [
                                                {
                                                    "id": 626,
                                                    "name": "Germany",
                                                    "countryCode": "DE",
                                                    "region": "Europe",
                                                    "priority": 1
                                                },
                                                {
                                                    "id": 627,
                                                    "name": "Netherlands",
                                                    "countryCode": "NL",
                                                    "region": "Europe",
                                                    "priority": 0
                                                }
                                            ]
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "id": 626,
                                                "name": "Germany",
                                                "countryCode": "DE",
                                                "region": "Europe",
                                                "priority": 1
                                            },
                                            {
                                                "id": 627,
                                                "name": "Netherlands",
                                                "countryCode": "NL",
                                                "region": "Europe",
                                                "priority": 0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-country/{id}": {
            "get": {
                "tags": [
                    "Export Marketing"
                ],
                "summary": "Retrieve a single export country",
                "description": "An export country is a country for the export marketing resource. This endpoint shows a single export country.",
                "operationId": "export_country_show",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Country id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 634
                                                },
                                                "name": {
                                                    "type": "string",
                                                    "example": "Germany"
                                                },
                                                "countryCode": {
                                                    "type": "string",
                                                    "example": "DE"
                                                },
                                                "region": {
                                                    "type": "string",
                                                    "example": "Europe"
                                                },
                                                "priority": {
                                                    "type": "integer",
                                                    "example": 1
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 634,
                                                "name": "Germany",
                                                "countryCode": "DE",
                                                "region": "Europe",
                                                "priority": 1
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 634,
                                            "name": "Germany",
                                            "countryCode": "DE",
                                            "region": "Europe",
                                            "priority": 1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export Country with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Country with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Country with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export/{exportId}/export-custom-form-field": {
            "post": {
                "tags": [
                    "Export Custom Form Field"
                ],
                "summary": "Create an export custom form field",
                "description": "An export custom form field is a form field belonging to an export. Once created, the form field will be visible in the site channel settings in the productsup platform. This endpoint allows the creation of an export custom form field.",
                "operationId": "export_custom_form_field_create",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "description": "Export id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_custom_form_field_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 2587
                                                },
                                                "name": {
                                                    "type": "string",
                                                    "example": "type"
                                                },
                                                "caption": {
                                                    "type": "string",
                                                    "example": "Type"
                                                },
                                                "type": {
                                                    "type": "string",
                                                    "example": "select"
                                                },
                                                "placeholder": {
                                                    "type": "string",
                                                    "example": "example type"
                                                },
                                                "data": {
                                                    "type": "string",
                                                    "example": "{'options':[{'value':'yes','caption':'yes'},{'value':'no','caption':'no'}]}"
                                                },
                                                "trigger": {
                                                    "type": "string",
                                                    "example": "ADD_NAME_HEADER"
                                                },
                                                "order": {
                                                    "type": "integer",
                                                    "example": 1
                                                },
                                                "export": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 58786
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 58786
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 2587,
                                                "name": "type",
                                                "caption": "Type",
                                                "type": "select",
                                                "placeholder": "example type",
                                                "data": "{'options':[{'value':'yes','caption':'yes'},{'value':'no','caption':'no'}]}",
                                                "trigger": "ADD_NAME_HEADER",
                                                "order": 1,
                                                "export": {
                                                    "id": 58786
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 2587,
                                            "name": "type",
                                            "caption": "Type",
                                            "type": "select",
                                            "placeholder": "example type",
                                            "data": "{'options':[{'value':'yes','caption':'yes'},{'value':'no','caption':'no'}]}",
                                            "trigger": "ADD_NAME_HEADER",
                                            "order": 1,
                                            "export": {
                                                "id": 58786
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "name": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field is missing."
                                                            ]
                                                        },
                                                        "caption": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field is missing."
                                                            ]
                                                        },
                                                        "type": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field is missing."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "name": [
                                                            "This field is missing."
                                                        ],
                                                        "caption": [
                                                            "This field is missing."
                                                        ],
                                                        "type": [
                                                            "This field is missing."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "name": [
                                                        "This field is missing."
                                                    ],
                                                    "caption": [
                                                        "This field is missing."
                                                    ],
                                                    "type": [
                                                        "This field is missing."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "name": [
                                                    "This field is missing."
                                                ],
                                                "caption": [
                                                    "This field is missing."
                                                ],
                                                "type": [
                                                    "This field is missing."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "409": {
                        "description": "Conflict",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "An Export Custom Form Field with the same name already exists."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "An Export Custom Form Field with the same name already exists."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "An Export Custom Form Field with the same name already exists."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export/{exportId}/export-custom-form-field/{id}": {
            "get": {
                "tags": [
                    "Export Custom Form Field"
                ],
                "summary": "Retrieve a single export custom form field",
                "description": "An export custom form field is a form field belonging to an export. Once created, the form field will be visible in the site channel settings in the productsup platform. This endpoint shows a single export custom form field belonging to a single export.",
                "operationId": "export_custom_form_field_show",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "description": "Export id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Custom Form Field id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 2638
                                                },
                                                "name": {
                                                    "type": "string",
                                                    "example": "title"
                                                },
                                                "caption": {
                                                    "type": "string",
                                                    "example": "title"
                                                },
                                                "type": {
                                                    "type": "string",
                                                    "example": "text"
                                                },
                                                "placeholder": {
                                                    "type": "string",
                                                    "example": "some text"
                                                },
                                                "data": {
                                                    "type": "string",
                                                    "example": "",
                                                    "nullable": true
                                                },
                                                "trigger": {
                                                    "type": "string",
                                                    "example": "ADD_TITLE_HEADER"
                                                },
                                                "order": {
                                                    "type": "integer",
                                                    "example": 1
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 2638,
                                                "name": "title",
                                                "caption": "title",
                                                "type": "text",
                                                "placeholder": "some text",
                                                "data": "",
                                                "trigger": "ADD_TITLE_HEADER",
                                                "order": 1
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 2638,
                                            "name": "title",
                                            "caption": "title",
                                            "type": "text",
                                            "placeholder": "some text",
                                            "data": "",
                                            "trigger": "ADD_TITLE_HEADER",
                                            "order": 1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export Custom Form Field with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Custom Form Field with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Custom Form Field with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "delete": {
                "tags": [
                    "Export Custom Form Field"
                ],
                "summary": "Delete an export custom form field",
                "description": "An export custom form field is a form field belonging to an export. Once created, the form field will be visible in the site channel settings in the productsup platform. This endpoint allows the deletion of an existing export custom form field.",
                "operationId": "export_custom_form_field_delete",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "description": "Export id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Custom Form Field id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "204": {
                        "description": "No Content"
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export Custom Form Field with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Custom Form Field with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Custom Form Field with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "patch": {
                "tags": [
                    "Export Custom Form Field"
                ],
                "summary": "Update an export custom form field",
                "description": "An export custom form field is a form field belonging to an export. Once created, the form field will be visible in the site channel settings in the productsup platform. This endpoint allows the updating of an existing export custom form field.",
                "operationId": "export_custom_form_field_update",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "description": "Export id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Custom Form Field id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_custom_form_field_update_input"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 2654
                                                },
                                                "name": {
                                                    "type": "string",
                                                    "example": "type"
                                                },
                                                "caption": {
                                                    "type": "string",
                                                    "example": "Type"
                                                },
                                                "type": {
                                                    "type": "string",
                                                    "example": "select"
                                                },
                                                "placeholder": {
                                                    "type": "string",
                                                    "example": "example type"
                                                },
                                                "data": {
                                                    "type": "string",
                                                    "example": "{'options':[{'value':'yes','caption':'yes'},{'value':'no','caption':'no'}]}"
                                                },
                                                "trigger": {
                                                    "type": "string",
                                                    "example": "ADD_NAME_HEADER"
                                                },
                                                "order": {
                                                    "type": "integer",
                                                    "example": 1
                                                },
                                                "export": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 58852
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 58852
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 2654,
                                                "name": "type",
                                                "caption": "Type",
                                                "type": "select",
                                                "placeholder": "example type",
                                                "data": "{'options':[{'value':'yes','caption':'yes'},{'value':'no','caption':'no'}]}",
                                                "trigger": "ADD_NAME_HEADER",
                                                "order": 1,
                                                "export": {
                                                    "id": 58852
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 2654,
                                            "name": "type",
                                            "caption": "Type",
                                            "type": "select",
                                            "placeholder": "example type",
                                            "data": "{'options':[{'value':'yes','caption':'yes'},{'value':'no','caption':'no'}]}",
                                            "trigger": "ADD_NAME_HEADER",
                                            "order": 1,
                                            "export": {
                                                "id": 58852
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export Custom Form Field with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Custom Form Field with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Custom Form Field with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export/{exportId}/export-custom-form-fields": {
            "get": {
                "tags": [
                    "Export Custom Form Field"
                ],
                "summary": "Retrieve a list of custom form fields of an export",
                "description": "An export custom form field is a form field belonging to an export. Once created, the form field will be visible in the site channel settings in the productsup platform. This endpoint lists all existing export custom form fields that belong to a single export.",
                "operationId": "export_custom_form_fields_list",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "description": "Export id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {},
                                    "type": "object",
                                    "example": {
                                        "data": []
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{id}/attributes/bulk-create": {
            "post": {
                "tags": [
                    "Export Template Attribute"
                ],
                "summary": "Bulk create export template attributes",
                "description": "Same requirements as for the creation of a single export template attribute. Max 500 entries. requestKey must be a unique identifier for each entry.",
                "operationId": "export_fields_bulk_create",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_fields_bulk_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "202": {
                        "description": "Accepted",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "requestKey": {
                                                        "type": "string",
                                                        "example": "1"
                                                    },
                                                    "details": {
                                                        "properties": {
                                                            "entityId": {
                                                                "type": "integer",
                                                                "example": 995308
                                                            }
                                                        },
                                                        "type": "object",
                                                        "example": {
                                                            "entityId": 995308
                                                        }
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "errors": [],
                                                    "requestKey": "1",
                                                    "details": {
                                                        "entityId": 995308
                                                    }
                                                }
                                            },
                                            "example": [
                                                {
                                                    "errors": [],
                                                    "requestKey": "1",
                                                    "details": {
                                                        "entityId": 995308
                                                    }
                                                },
                                                {
                                                    "errors": [],
                                                    "requestKey": "2",
                                                    "details": {
                                                        "entityId": 995309
                                                    }
                                                },
                                                {
                                                    "errors": [],
                                                    "requestKey": "3",
                                                    "details": {
                                                        "entityId": 995310
                                                    }
                                                }
                                            ]
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "errors": [],
                                                "requestKey": "1",
                                                "details": {
                                                    "entityId": 995308
                                                }
                                            },
                                            {
                                                "errors": [],
                                                "requestKey": "2",
                                                "details": {
                                                    "entityId": 995309
                                                }
                                            },
                                            {
                                                "errors": [],
                                                "requestKey": "3",
                                                "details": {
                                                    "entityId": 995310
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "entries": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This collection should contain 500 elements or less."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "entries": [
                                                            "This collection should contain 500 elements or less."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "entries": [
                                                        "This collection should contain 500 elements or less."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "entries": [
                                                    "This collection should contain 500 elements or less."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{id}/attributes/bulk-update": {
            "patch": {
                "tags": [
                    "Export Template Attribute"
                ],
                "summary": "Bulk update export template attributes",
                "description": "Atomically update multiple export template attributes in a single operation. This endpoint allows for the simultaneous modification of up to 1000 fields, ensuring all changes are applied as a single unit. requestKey must be a unique identifier for each entry.",
                "operationId": "export_fields_bulk_update",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_fields_bulk_update_input"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "requestKey": {
                                                        "type": "string",
                                                        "example": "field1"
                                                    },
                                                    "details": {
                                                        "properties": {
                                                            "entityId": {
                                                                "type": "integer",
                                                                "example": 995817
                                                            }
                                                        },
                                                        "type": "object",
                                                        "example": {
                                                            "entityId": 995817
                                                        }
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "errors": [],
                                                    "requestKey": "field1",
                                                    "details": {
                                                        "entityId": 995817
                                                    }
                                                }
                                            },
                                            "example": [
                                                {
                                                    "errors": [],
                                                    "requestKey": "field1",
                                                    "details": {
                                                        "entityId": 995817
                                                    }
                                                },
                                                {
                                                    "errors": [],
                                                    "requestKey": "field2",
                                                    "details": {
                                                        "entityId": 995818
                                                    }
                                                },
                                                {
                                                    "errors": [],
                                                    "requestKey": "field3",
                                                    "details": {
                                                        "entityId": 995819
                                                    }
                                                }
                                            ]
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "errors": [],
                                                "requestKey": "field1",
                                                "details": {
                                                    "entityId": 995817
                                                }
                                            },
                                            {
                                                "errors": [],
                                                "requestKey": "field2",
                                                "details": {
                                                    "entityId": 995818
                                                }
                                            },
                                            {
                                                "errors": [],
                                                "requestKey": "field3",
                                                "details": {
                                                    "entityId": 995819
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Bulk update failed for one or more export template attributes"
                                                },
                                                "errors": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "string"
                                                    },
                                                    "example": [
                                                        "Export Template Attribute with id 99999 not found."
                                                    ]
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Bulk update failed for one or more export template attributes",
                                                "errors": [
                                                    "Export Template Attribute with id 99999 not found."
                                                ]
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Bulk update failed for one or more export template attributes",
                                            "errors": [
                                                "Export Template Attribute with id 99999 not found."
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{id}/attributes": {
            "get": {
                "tags": [
                    "Export Template Attribute"
                ],
                "summary": "Retrieves a list of export template attributes of an export template",
                "description": "An export template attribute is a field that belongs to an export template. Once created, the export template attribute will be added to every channel that is created from the export template in the productsup platform. This endpoint lists all export template attributes of an export template, including their V2 analyzer test template assignments.",
                "operationId": "export_template_attributes_list",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "firstResult",
                        "in": "query",
                        "description": "starting item",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    },
                    {
                        "name": "maxResults",
                        "in": "query",
                        "description": "items per page",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "example": {
                                                    "type": "string",
                                                    "nullable": true
                                                }
                                            },
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "integer",
                                                        "example": 995889
                                                    },
                                                    "alias": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": "title"
                                                    },
                                                    "mandatory": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "type": {
                                                        "type": "string",
                                                        "enum": [
                                                            "mandatory",
                                                            "conditionally_mandatory",
                                                            "optional"
                                                        ],
                                                        "example": "optional"
                                                    },
                                                    "conditions": {
                                                        "type": "array",
                                                        "items": {
                                                            "type": "object",
                                                            "properties": {
                                                                "triggerAttribute": {
                                                                    "type": "string"
                                                                },
                                                                "triggerValue": {
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "type": "string",
                                                                    "enum": [
                                                                        "equals",
                                                                        "not_equals"
                                                                    ]
                                                                },
                                                                "description": {
                                                                    "type": "string"
                                                                }
                                                            }
                                                        },
                                                        "example": []
                                                    },
                                                    "flag": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": "not hidden"
                                                    },
                                                    "isDefaultTrackingColumn": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "isUniqueColumn": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "order": {
                                                        "type": "integer",
                                                        "example": 1
                                                    },
                                                    "deltaIgnore": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "deltaKey": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "automapIgnore": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "description": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": "product title"
                                                    },
                                                    "example": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": "some example"
                                                    },
                                                    "format": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": "String"
                                                    },
                                                    "export": {
                                                        "properties": {
                                                            "id": {
                                                                "type": "integer",
                                                                "example": 58939
                                                            },
                                                            "unpublishedChanges": {
                                                                "type": "boolean",
                                                                "example": true
                                                            }
                                                        },
                                                        "type": "object",
                                                        "example": {
                                                            "id": 58939,
                                                            "unpublishedChanges": true
                                                        }
                                                    },
                                                    "fieldTags": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "integer",
                                                                    "example": 1247718
                                                                },
                                                                "key": {
                                                                    "type": "string",
                                                                    "example": "classification_field_code"
                                                                },
                                                                "value": {
                                                                    "type": "string",
                                                                    "example": "EF12345"
                                                                }
                                                            },
                                                            "type": "object",
                                                            "example": {
                                                                "id": 1247718,
                                                                "key": "classification_field_code",
                                                                "value": "EF12345"
                                                            }
                                                        },
                                                        "example": [
                                                            {
                                                                "id": 1247718,
                                                                "key": "classification_field_code",
                                                                "value": "EF12345"
                                                            },
                                                            {
                                                                "id": 1247719,
                                                                "key": "classification_field_sub_type",
                                                                "value": "details"
                                                            }
                                                        ]
                                                    },
                                                    "analyzerTestExports": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "integer",
                                                                    "example": 583585
                                                                },
                                                                "analyzerTest": {
                                                                    "properties": {
                                                                        "id": {
                                                                            "type": "integer",
                                                                            "example": 75120
                                                                        }
                                                                    },
                                                                    "type": "object",
                                                                    "example": {
                                                                        "id": 75120
                                                                    }
                                                                }
                                                            },
                                                            "type": "object",
                                                            "example": {
                                                                "id": 583585,
                                                                "analyzerTest": {
                                                                    "id": 75120
                                                                }
                                                            }
                                                        },
                                                        "example": [
                                                            {
                                                                "id": 583585,
                                                                "analyzerTest": {
                                                                    "id": 75120
                                                                }
                                                            },
                                                            {
                                                                "id": 583586,
                                                                "analyzerTest": {
                                                                    "id": 75121
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    "analyzerTests": {
                                                        "type": "array",
                                                        "description": "V2 Analyzer test template assignments for this export field",
                                                        "items": {
                                                            "type": "object",
                                                            "properties": {
                                                                "id": {
                                                                    "type": "integer",
                                                                    "example": 1
                                                                },
                                                                "templateId": {
                                                                    "type": "string",
                                                                    "example": "length_check"
                                                                },
                                                                "templateName": {
                                                                    "type": "string",
                                                                    "example": "Length Validation"
                                                                },
                                                                "configuration": {
                                                                    "type": "object",
                                                                    "example": {
                                                                        "value": 100,
                                                                        "operator": ">"
                                                                    }
                                                                },
                                                                "createdAt": {
                                                                    "type": "string",
                                                                    "format": "date-time",
                                                                    "example": "2024-06-10T14:00:00Z"
                                                                },
                                                                "updatedAt": {
                                                                    "type": "string",
                                                                    "format": "date-time",
                                                                    "example": "2024-06-10T14:00:00Z"
                                                                }
                                                            }
                                                        },
                                                        "example": [
                                                            {
                                                                "id": 1,
                                                                "templateId": "length_check",
                                                                "templateName": "Length Validation",
                                                                "configuration": {
                                                                    "value": 1,
                                                                    "operator": ">"
                                                                },
                                                                "createdAt": "2024-06-10T14:00:00Z",
                                                                "updatedAt": "2024-06-10T14:00:00Z"
                                                            },
                                                            {
                                                                "id": 2,
                                                                "templateId": "length_check",
                                                                "templateName": "Length Validation",
                                                                "configuration": {
                                                                    "value": 100,
                                                                    "operator": "<"
                                                                },
                                                                "createdAt": "2024-06-10T14:00:00Z",
                                                                "updatedAt": "2024-06-10T14:00:00Z"
                                                            }
                                                        ]
                                                    },
                                                    "fieldname": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "id": 995889,
                                                    "alias": "",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 0,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "",
                                                    "example": null,
                                                    "format": null,
                                                    "export": {
                                                        "id": 58939,
                                                        "unpublishedChanges": true
                                                    },
                                                    "fieldTags": [
                                                        {
                                                            "id": 1247718,
                                                            "key": "classification_field_code",
                                                            "value": "EF12345"
                                                        },
                                                        {
                                                            "id": 1247719,
                                                            "key": "classification_field_sub_type",
                                                            "value": "details"
                                                        }
                                                    ],
                                                    "analyzerTestExports": [
                                                        {
                                                            "id": 583585,
                                                            "analyzerTest": {
                                                                "id": 75120
                                                            }
                                                        },
                                                        {
                                                            "id": 583586,
                                                            "analyzerTest": {
                                                                "id": 75121
                                                            }
                                                        }
                                                    ],
                                                    "analyzerTests": [
                                                        {
                                                            "id": 1,
                                                            "templateId": "length_check",
                                                            "templateName": "Length Validation",
                                                            "configuration": {
                                                                "value": 1,
                                                                "operator": ">"
                                                            },
                                                            "createdAt": "2024-06-10T14:00:00Z",
                                                            "updatedAt": "2024-06-10T14:00:00Z"
                                                        }
                                                    ],
                                                    "fieldname": "name"
                                                }
                                            },
                                            "example": [
                                                {
                                                    "id": 995889,
                                                    "alias": "",
                                                    "mandatory": true,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 0,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "",
                                                    "example": null,
                                                    "format": null,
                                                    "export": {
                                                        "id": 58939,
                                                        "unpublishedChanges": true
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "name 2"
                                                },
                                                {
                                                    "id": 995890,
                                                    "alias": "",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 0,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "",
                                                    "example": null,
                                                    "format": null,
                                                    "export": {
                                                        "id": 58939,
                                                        "unpublishedChanges": true
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "name 3"
                                                },
                                                {
                                                    "id": 995892,
                                                    "alias": "01977d43-0391-753b-8f31-cd74ed9318dc",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0391-753b-8f31-cd74ed9318dc"
                                                },
                                                {
                                                    "id": 995893,
                                                    "alias": "01977d43-0392-78c5-8b44-2669ff6a66ff",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0392-78c5-8b44-2669ff6a66ff"
                                                },
                                                {
                                                    "id": 995894,
                                                    "alias": "01977d43-0394-727c-b375-a224d787edac",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0394-727c-b375-a224d787edac"
                                                },
                                                {
                                                    "id": 995895,
                                                    "alias": "01977d43-0395-79ca-8852-0a7f3b588631",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0395-79ca-8852-0a7f3b588631"
                                                },
                                                {
                                                    "id": 995896,
                                                    "alias": "01977d43-0397-7666-865c-605e7431ffc0",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0397-7666-865c-605e7431ffc0"
                                                },
                                                {
                                                    "id": 995897,
                                                    "alias": "01977d43-0399-736e-8d34-37e1cbc1ef6c",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0399-736e-8d34-37e1cbc1ef6c"
                                                },
                                                {
                                                    "id": 995898,
                                                    "alias": "01977d43-039b-776e-96a5-5c81da581f88",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-039b-776e-96a5-5c81da581f88"
                                                },
                                                {
                                                    "id": 995899,
                                                    "alias": "01977d43-039c-7665-b5f7-f8afd23cbc9e",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-039c-7665-b5f7-f8afd23cbc9e"
                                                },
                                                {
                                                    "id": 995900,
                                                    "alias": "01977d43-039e-73a1-a8f0-833437747861",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-039e-73a1-a8f0-833437747861"
                                                },
                                                {
                                                    "id": 995901,
                                                    "alias": "01977d43-03a0-79a7-a6e0-b5426dce9ef8",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03a0-79a7-a6e0-b5426dce9ef8"
                                                },
                                                {
                                                    "id": 995902,
                                                    "alias": "01977d43-03a2-7044-b900-c43c4e1b93e5",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03a2-7044-b900-c43c4e1b93e5"
                                                },
                                                {
                                                    "id": 995903,
                                                    "alias": "01977d43-03a4-7797-a974-b364f602f01f",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03a4-7797-a974-b364f602f01f"
                                                },
                                                {
                                                    "id": 995904,
                                                    "alias": "01977d43-03a6-704b-9f27-042a49aff222",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03a6-704b-9f27-042a49aff222"
                                                },
                                                {
                                                    "id": 995905,
                                                    "alias": "01977d43-03a8-78cf-a8e2-5e48b29fe53e",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03a8-78cf-a8e2-5e48b29fe53e"
                                                },
                                                {
                                                    "id": 995906,
                                                    "alias": "01977d43-03aa-79a5-b1a6-c20542cb862a",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03aa-79a5-b1a6-c20542cb862a"
                                                },
                                                {
                                                    "id": 995907,
                                                    "alias": "01977d43-03ac-78ad-8cbd-6c3559f7f894",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03ac-78ad-8cbd-6c3559f7f894"
                                                },
                                                {
                                                    "id": 995908,
                                                    "alias": "01977d43-03ae-7a29-bbe5-091ddb7c2427",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03ae-7a29-bbe5-091ddb7c2427"
                                                },
                                                {
                                                    "id": 995909,
                                                    "alias": "01977d43-03b0-7acb-9ac8-deb82620c851",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03b0-7acb-9ac8-deb82620c851"
                                                },
                                                {
                                                    "id": 995910,
                                                    "alias": "01977d43-03b2-7c09-af62-e3dace6637c3",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03b2-7c09-af62-e3dace6637c3"
                                                },
                                                {
                                                    "id": 995911,
                                                    "alias": "01977d43-03b5-7548-a51c-0566316d0008",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03b5-7548-a51c-0566316d0008"
                                                },
                                                {
                                                    "id": 995912,
                                                    "alias": "01977d43-03b7-74dc-9618-079bb2a78ffe",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03b7-74dc-9618-079bb2a78ffe"
                                                },
                                                {
                                                    "id": 995913,
                                                    "alias": "01977d43-03b9-7d2d-8889-def2e92c1313",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03b9-7d2d-8889-def2e92c1313"
                                                },
                                                {
                                                    "id": 995914,
                                                    "alias": "01977d43-03bc-7655-9df2-03647bd88c26",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03bc-7655-9df2-03647bd88c26"
                                                },
                                                {
                                                    "id": 995915,
                                                    "alias": "01977d43-03be-774a-802d-05633f581cfe",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03be-774a-802d-05633f581cfe"
                                                },
                                                {
                                                    "id": 995916,
                                                    "alias": "01977d43-03c0-7018-8269-95d2d88df31c",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03c0-7018-8269-95d2d88df31c"
                                                },
                                                {
                                                    "id": 995917,
                                                    "alias": "01977d43-03c3-7990-ae67-e9bff52da9d5",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03c3-7990-ae67-e9bff52da9d5"
                                                },
                                                {
                                                    "id": 995918,
                                                    "alias": "01977d43-03c5-7a24-a79e-dacbe6f303f2",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03c5-7a24-a79e-dacbe6f303f2"
                                                },
                                                {
                                                    "id": 995919,
                                                    "alias": "01977d43-03c8-72c1-80c3-12841af441a0",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03c8-72c1-80c3-12841af441a0"
                                                },
                                                {
                                                    "id": 995920,
                                                    "alias": "01977d43-03ca-7889-8791-c65c36c623c1",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03ca-7889-8791-c65c36c623c1"
                                                },
                                                {
                                                    "id": 995921,
                                                    "alias": "01977d43-03cd-745b-83db-7a67f2385c18",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03cd-745b-83db-7a67f2385c18"
                                                },
                                                {
                                                    "id": 995922,
                                                    "alias": "01977d43-03d0-7772-9023-81ad56d7e9be",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03d0-7772-9023-81ad56d7e9be"
                                                },
                                                {
                                                    "id": 995923,
                                                    "alias": "01977d43-03d2-7a06-9a5c-87d83fca494e",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03d2-7a06-9a5c-87d83fca494e"
                                                },
                                                {
                                                    "id": 995924,
                                                    "alias": "01977d43-03d5-7591-a745-c9ba48328997",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03d5-7591-a745-c9ba48328997"
                                                },
                                                {
                                                    "id": 995925,
                                                    "alias": "01977d43-03d8-74f2-b3bb-48d354072dee",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03d8-74f2-b3bb-48d354072dee"
                                                },
                                                {
                                                    "id": 995926,
                                                    "alias": "01977d43-03da-79be-84a5-57f42e986ffe",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03da-79be-84a5-57f42e986ffe"
                                                },
                                                {
                                                    "id": 995927,
                                                    "alias": "01977d43-03dd-7cc0-b676-34d41a2878f2",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03dd-7cc0-b676-34d41a2878f2"
                                                },
                                                {
                                                    "id": 995928,
                                                    "alias": "01977d43-03e0-7119-b495-5761fef82aa5",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03e0-7119-b495-5761fef82aa5"
                                                },
                                                {
                                                    "id": 995929,
                                                    "alias": "01977d43-03e3-7ec4-851c-7d47bc33f9b7",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03e3-7ec4-851c-7d47bc33f9b7"
                                                },
                                                {
                                                    "id": 995930,
                                                    "alias": "01977d43-03e6-7c1d-aece-8a0d6680fe8e",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03e6-7c1d-aece-8a0d6680fe8e"
                                                },
                                                {
                                                    "id": 995931,
                                                    "alias": "01977d43-03e9-775f-ac35-0cb66481dfb7",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03e9-775f-ac35-0cb66481dfb7"
                                                },
                                                {
                                                    "id": 995932,
                                                    "alias": "01977d43-03ec-75f6-88d0-52a2bf43931c",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03ec-75f6-88d0-52a2bf43931c"
                                                },
                                                {
                                                    "id": 995933,
                                                    "alias": "01977d43-03ef-7b49-ad82-6d2bd2c096ff",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03ef-7b49-ad82-6d2bd2c096ff"
                                                },
                                                {
                                                    "id": 995934,
                                                    "alias": "01977d43-03f2-77d8-8a54-2d6935d12b83",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03f2-77d8-8a54-2d6935d12b83"
                                                },
                                                {
                                                    "id": 995935,
                                                    "alias": "01977d43-03f5-7d72-b2e7-a4fc0014b72d",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03f5-7d72-b2e7-a4fc0014b72d"
                                                },
                                                {
                                                    "id": 995936,
                                                    "alias": "01977d43-03f8-746d-b9bb-e63d5113a6da",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03f8-746d-b9bb-e63d5113a6da"
                                                },
                                                {
                                                    "id": 995937,
                                                    "alias": "01977d43-03fb-72e1-98e7-4cfcba25a0c0",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03fb-72e1-98e7-4cfcba25a0c0"
                                                },
                                                {
                                                    "id": 995938,
                                                    "alias": "01977d43-0407-7492-a917-c81e5c28a8ec",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0407-7492-a917-c81e5c28a8ec"
                                                },
                                                {
                                                    "id": 995939,
                                                    "alias": "01977d43-040b-7d7c-96a9-4539fe6f1a29",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-040b-7d7c-96a9-4539fe6f1a29"
                                                },
                                                {
                                                    "id": 995940,
                                                    "alias": "01977d43-040e-747c-82f6-1ff0931e0364",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-040e-747c-82f6-1ff0931e0364"
                                                },
                                                {
                                                    "id": 995941,
                                                    "alias": "01977d43-0412-7a82-98db-5eef9bc9809d",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0412-7a82-98db-5eef9bc9809d"
                                                },
                                                {
                                                    "id": 995942,
                                                    "alias": "01977d43-0415-7f08-814c-978ab2d0c1d2",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0415-7f08-814c-978ab2d0c1d2"
                                                },
                                                {
                                                    "id": 995943,
                                                    "alias": "01977d43-0418-740f-a2f0-3b8db7ccbd30",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0418-740f-a2f0-3b8db7ccbd30"
                                                },
                                                {
                                                    "id": 995944,
                                                    "alias": "01977d43-041c-7167-87d1-a935bbf74414",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-041c-7167-87d1-a935bbf74414"
                                                },
                                                {
                                                    "id": 995945,
                                                    "alias": "01977d43-041f-7f77-9c50-e1c51e738fa6",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-041f-7f77-9c50-e1c51e738fa6"
                                                },
                                                {
                                                    "id": 995946,
                                                    "alias": "01977d43-0423-7bb7-85a7-a114589f229a",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0423-7bb7-85a7-a114589f229a"
                                                },
                                                {
                                                    "id": 995947,
                                                    "alias": "01977d43-0426-7394-a99f-f592af871e20",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0426-7394-a99f-f592af871e20"
                                                },
                                                {
                                                    "id": 995948,
                                                    "alias": "01977d43-042a-745b-a7fa-9454533cfc9a",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-042a-745b-a7fa-9454533cfc9a"
                                                },
                                                {
                                                    "id": 995949,
                                                    "alias": "01977d43-042d-7aea-b0a6-643308710486",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-042d-7aea-b0a6-643308710486"
                                                }
                                            ]
                                        },
                                        "pagination": {
                                            "properties": {
                                                "firstResult": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "maxResults": {
                                                    "type": "integer",
                                                    "example": 60
                                                },
                                                "count": {
                                                    "type": "integer",
                                                    "example": 60
                                                },
                                                "total": {
                                                    "type": "integer",
                                                    "example": 62
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "firstResult": 0,
                                                "maxResults": 60,
                                                "count": 60,
                                                "total": 62
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "id": 995889,
                                                "alias": "title",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [
                                                    {
                                                        "id": 1247718,
                                                        "key": "classification_field_code",
                                                        "value": "EF12345"
                                                    },
                                                    {
                                                        "id": 1247719,
                                                        "key": "classification_field_sub_type",
                                                        "value": "details"
                                                    }
                                                ],
                                                "analyzerTestExports": [
                                                    {
                                                        "id": 583585,
                                                        "analyzerTest": {
                                                            "id": 75120
                                                        }
                                                    },
                                                    {
                                                        "id": 583586,
                                                        "analyzerTest": {
                                                            "id": 75121
                                                        }
                                                    }
                                                ],
                                                "analyzerTests": [],
                                                "fieldname": "name"
                                            },
                                            {
                                                "id": 995890,
                                                "alias": "sku",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "identifier",
                                                "example": "1000",
                                                "format": "Integer",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "sku"
                                            },
                                            {
                                                "id": 995892,
                                                "alias": "01977d43-0391-753b-8f31-cd74ed9318dc",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0391-753b-8f31-cd74ed9318dc"
                                            },
                                            {
                                                "id": 995893,
                                                "alias": "01977d43-0392-78c5-8b44-2669ff6a66ff",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0392-78c5-8b44-2669ff6a66ff"
                                            },
                                            {
                                                "id": 995894,
                                                "alias": "01977d43-0394-727c-b375-a224d787edac",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0394-727c-b375-a224d787edac"
                                            },
                                            {
                                                "id": 995895,
                                                "alias": "01977d43-0395-79ca-8852-0a7f3b588631",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0395-79ca-8852-0a7f3b588631"
                                            },
                                            {
                                                "id": 995896,
                                                "alias": "01977d43-0397-7666-865c-605e7431ffc0",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0397-7666-865c-605e7431ffc0"
                                            },
                                            {
                                                "id": 995897,
                                                "alias": "01977d43-0399-736e-8d34-37e1cbc1ef6c",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0399-736e-8d34-37e1cbc1ef6c"
                                            },
                                            {
                                                "id": 995898,
                                                "alias": "01977d43-039b-776e-96a5-5c81da581f88",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-039b-776e-96a5-5c81da581f88"
                                            },
                                            {
                                                "id": 995899,
                                                "alias": "01977d43-039c-7665-b5f7-f8afd23cbc9e",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-039c-7665-b5f7-f8afd23cbc9e"
                                            },
                                            {
                                                "id": 995900,
                                                "alias": "01977d43-039e-73a1-a8f0-833437747861",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-039e-73a1-a8f0-833437747861"
                                            },
                                            {
                                                "id": 995901,
                                                "alias": "01977d43-03a0-79a7-a6e0-b5426dce9ef8",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03a0-79a7-a6e0-b5426dce9ef8"
                                            },
                                            {
                                                "id": 995902,
                                                "alias": "01977d43-03a2-7044-b900-c43c4e1b93e5",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03a2-7044-b900-c43c4e1b93e5"
                                            },
                                            {
                                                "id": 995903,
                                                "alias": "01977d43-03a4-7797-a974-b364f602f01f",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03a4-7797-a974-b364f602f01f"
                                            },
                                            {
                                                "id": 995904,
                                                "alias": "01977d43-03a6-704b-9f27-042a49aff222",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03a6-704b-9f27-042a49aff222"
                                            },
                                            {
                                                "id": 995905,
                                                "alias": "01977d43-03a8-78cf-a8e2-5e48b29fe53e",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03a8-78cf-a8e2-5e48b29fe53e"
                                            },
                                            {
                                                "id": 995906,
                                                "alias": "01977d43-03aa-79a5-b1a6-c20542cb862a",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03aa-79a5-b1a6-c20542cb862a"
                                            },
                                            {
                                                "id": 995907,
                                                "alias": "01977d43-03ac-78ad-8cbd-6c3559f7f894",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03ac-78ad-8cbd-6c3559f7f894"
                                            },
                                            {
                                                "id": 995908,
                                                "alias": "01977d43-03ae-7a29-bbe5-091ddb7c2427",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03ae-7a29-bbe5-091ddb7c2427"
                                            },
                                            {
                                                "id": 995909,
                                                "alias": "01977d43-03b0-7acb-9ac8-deb82620c851",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03b0-7acb-9ac8-deb82620c851"
                                            },
                                            {
                                                "id": 995910,
                                                "alias": "01977d43-03b2-7c09-af62-e3dace6637c3",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03b2-7c09-af62-e3dace6637c3"
                                            },
                                            {
                                                "id": 995911,
                                                "alias": "01977d43-03b5-7548-a51c-0566316d0008",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03b5-7548-a51c-0566316d0008"
                                            },
                                            {
                                                "id": 995912,
                                                "alias": "01977d43-03b7-74dc-9618-079bb2a78ffe",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03b7-74dc-9618-079bb2a78ffe"
                                            },
                                            {
                                                "id": 995913,
                                                "alias": "01977d43-03b9-7d2d-8889-def2e92c1313",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03b9-7d2d-8889-def2e92c1313"
                                            },
                                            {
                                                "id": 995914,
                                                "alias": "01977d43-03bc-7655-9df2-03647bd88c26",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03bc-7655-9df2-03647bd88c26"
                                            },
                                            {
                                                "id": 995915,
                                                "alias": "01977d43-03be-774a-802d-05633f581cfe",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03be-774a-802d-05633f581cfe"
                                            },
                                            {
                                                "id": 995916,
                                                "alias": "01977d43-03c0-7018-8269-95d2d88df31c",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03c0-7018-8269-95d2d88df31c"
                                            },
                                            {
                                                "id": 995917,
                                                "alias": "01977d43-03c3-7990-ae67-e9bff52da9d5",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03c3-7990-ae67-e9bff52da9d5"
                                            },
                                            {
                                                "id": 995918,
                                                "alias": "01977d43-03c5-7a24-a79e-dacbe6f303f2",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03c5-7a24-a79e-dacbe6f303f2"
                                            },
                                            {
                                                "id": 995919,
                                                "alias": "01977d43-03c8-72c1-80c3-12841af441a0",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03c8-72c1-80c3-12841af441a0"
                                            },
                                            {
                                                "id": 995920,
                                                "alias": "01977d43-03ca-7889-8791-c65c36c623c1",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03ca-7889-8791-c65c36c623c1"
                                            },
                                            {
                                                "id": 995921,
                                                "alias": "01977d43-03cd-745b-83db-7a67f2385c18",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03cd-745b-83db-7a67f2385c18"
                                            },
                                            {
                                                "id": 995922,
                                                "alias": "01977d43-03d0-7772-9023-81ad56d7e9be",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03d0-7772-9023-81ad56d7e9be"
                                            },
                                            {
                                                "id": 995923,
                                                "alias": "01977d43-03d2-7a06-9a5c-87d83fca494e",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03d2-7a06-9a5c-87d83fca494e"
                                            },
                                            {
                                                "id": 995924,
                                                "alias": "01977d43-03d5-7591-a745-c9ba48328997",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03d5-7591-a745-c9ba48328997"
                                            },
                                            {
                                                "id": 995925,
                                                "alias": "01977d43-03d8-74f2-b3bb-48d354072dee",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03d8-74f2-b3bb-48d354072dee"
                                            },
                                            {
                                                "id": 995926,
                                                "alias": "01977d43-03da-79be-84a5-57f42e986ffe",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03da-79be-84a5-57f42e986ffe"
                                            },
                                            {
                                                "id": 995927,
                                                "alias": "01977d43-03dd-7cc0-b676-34d41a2878f2",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03dd-7cc0-b676-34d41a2878f2"
                                            },
                                            {
                                                "id": 995928,
                                                "alias": "01977d43-03e0-7119-b495-5761fef82aa5",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03e0-7119-b495-5761fef82aa5"
                                            },
                                            {
                                                "id": 995929,
                                                "alias": "01977d43-03e3-7ec4-851c-7d47bc33f9b7",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03e3-7ec4-851c-7d47bc33f9b7"
                                            },
                                            {
                                                "id": 995930,
                                                "alias": "01977d43-03e6-7c1d-aece-8a0d6680fe8e",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03e6-7c1d-aece-8a0d6680fe8e"
                                            },
                                            {
                                                "id": 995931,
                                                "alias": "01977d43-03e9-775f-ac35-0cb66481dfb7",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03e9-775f-ac35-0cb66481dfb7"
                                            },
                                            {
                                                "id": 995932,
                                                "alias": "01977d43-03ec-75f6-88d0-52a2bf43931c",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03ec-75f6-88d0-52a2bf43931c"
                                            },
                                            {
                                                "id": 995933,
                                                "alias": "01977d43-03ef-7b49-ad82-6d2bd2c096ff",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03ef-7b49-ad82-6d2bd2c096ff"
                                            },
                                            {
                                                "id": 995934,
                                                "alias": "01977d43-03f2-77d8-8a54-2d6935d12b83",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03f2-77d8-8a54-2d6935d12b83"
                                            },
                                            {
                                                "id": 995935,
                                                "alias": "01977d43-03f5-7d72-b2e7-a4fc0014b72d",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03f5-7d72-b2e7-a4fc0014b72d"
                                            },
                                            {
                                                "id": 995936,
                                                "alias": "01977d43-03f8-746d-b9bb-e63d5113a6da",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03f8-746d-b9bb-e63d5113a6da"
                                            },
                                            {
                                                "id": 995937,
                                                "alias": "01977d43-03fb-72e1-98e7-4cfcba25a0c0",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03fb-72e1-98e7-4cfcba25a0c0"
                                            },
                                            {
                                                "id": 995938,
                                                "alias": "01977d43-0407-7492-a917-c81e5c28a8ec",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0407-7492-a917-c81e5c28a8ec"
                                            },
                                            {
                                                "id": 995939,
                                                "alias": "01977d43-040b-7d7c-96a9-4539fe6f1a29",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-040b-7d7c-96a9-4539fe6f1a29"
                                            },
                                            {
                                                "id": 995940,
                                                "alias": "01977d43-040e-747c-82f6-1ff0931e0364",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-040e-747c-82f6-1ff0931e0364"
                                            },
                                            {
                                                "id": 995941,
                                                "alias": "01977d43-0412-7a82-98db-5eef9bc9809d",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0412-7a82-98db-5eef9bc9809d"
                                            },
                                            {
                                                "id": 995942,
                                                "alias": "01977d43-0415-7f08-814c-978ab2d0c1d2",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0415-7f08-814c-978ab2d0c1d2"
                                            },
                                            {
                                                "id": 995943,
                                                "alias": "01977d43-0418-740f-a2f0-3b8db7ccbd30",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0418-740f-a2f0-3b8db7ccbd30"
                                            },
                                            {
                                                "id": 995944,
                                                "alias": "01977d43-041c-7167-87d1-a935bbf74414",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-041c-7167-87d1-a935bbf74414"
                                            },
                                            {
                                                "id": 995945,
                                                "alias": "01977d43-041f-7f77-9c50-e1c51e738fa6",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-041f-7f77-9c50-e1c51e738fa6"
                                            },
                                            {
                                                "id": 995946,
                                                "alias": "01977d43-0423-7bb7-85a7-a114589f229a",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0423-7bb7-85a7-a114589f229a"
                                            },
                                            {
                                                "id": 995947,
                                                "alias": "01977d43-0426-7394-a99f-f592af871e20",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0426-7394-a99f-f592af871e20"
                                            },
                                            {
                                                "id": 995948,
                                                "alias": "01977d43-042a-745b-a7fa-9454533cfc9a",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-042a-745b-a7fa-9454533cfc9a"
                                            },
                                            {
                                                "id": 995949,
                                                "alias": "01977d43-042d-7aea-b0a6-643308710486",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-042d-7aea-b0a6-643308710486"
                                            }
                                        ],
                                        "pagination": {
                                            "firstResult": 0,
                                            "maxResults": 60,
                                            "count": 60,
                                            "total": 62
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "post": {
                "tags": [
                    "Export Template Attribute"
                ],
                "summary": "Create export template attribute",
                "description": "An export template attribute is a field that belongs to an export template. Once created, the export template attribute will be added to every channel that is created from the export template in the productsup platform. This endpoint allows the creation of an export template attribute.",
                "operationId": "export_field_create",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_field_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 995842
                                                },
                                                "alias": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "some alias"
                                                },
                                                "mandatory": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "type": {
                                                    "type": "string",
                                                    "enum": [
                                                        "mandatory",
                                                        "conditionally_mandatory",
                                                        "optional"
                                                    ],
                                                    "example": "optional"
                                                },
                                                "conditions": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "object",
                                                        "properties": {
                                                            "triggerAttribute": {
                                                                "type": "string"
                                                            },
                                                            "triggerValue": {
                                                                "type": "string"
                                                            },
                                                            "operator": {
                                                                "type": "string",
                                                                "enum": [
                                                                    "equals",
                                                                    "not_equals"
                                                                ]
                                                            },
                                                            "description": {
                                                                "type": "string"
                                                            }
                                                        }
                                                    },
                                                    "example": []
                                                },
                                                "flag": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "colors"
                                                },
                                                "isDefaultTrackingColumn": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "isUniqueColumn": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "order": {
                                                    "type": "integer",
                                                    "example": 5
                                                },
                                                "deltaIgnore": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "deltaKey": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "automapIgnore": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "description": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "some description"
                                                },
                                                "example": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "some example"
                                                },
                                                "format": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "String (Unicode Characters)"
                                                },
                                                "export": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 58902
                                                        },
                                                        "unpublishedChanges": {
                                                            "type": "boolean",
                                                            "example": true
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 58902,
                                                        "unpublishedChanges": true
                                                    }
                                                },
                                                "fieldname": {
                                                    "type": "string",
                                                    "example": "color"
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 995842,
                                                "alias": "",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 0,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "",
                                                "example": null,
                                                "format": null,
                                                "export": {
                                                    "id": 58902,
                                                    "unpublishedChanges": true
                                                },
                                                "fieldname": "color"
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 995842,
                                            "alias": "",
                                            "mandatory": false,
                                            "type": "optional",
                                            "conditions": [],
                                            "flag": "",
                                            "isDefaultTrackingColumn": false,
                                            "isUniqueColumn": false,
                                            "order": 0,
                                            "deltaIgnore": false,
                                            "deltaKey": false,
                                            "automapIgnore": false,
                                            "description": "",
                                            "example": null,
                                            "format": null,
                                            "export": {
                                                "id": 58902,
                                                "unpublishedChanges": true
                                            },
                                            "fieldname": "color"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "fieldName": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This value should not be blank."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "fieldName": [
                                                            "This value should not be blank."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "fieldName": [
                                                        "This value should not be blank."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "fieldName": [
                                                    "This value should not be blank."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "409": {
                        "description": "Conflict",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "An Export Template Attribute with the same field name already exists."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "An Export Template Attribute with the same field name already exists."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "An Export Template Attribute with the same field name already exists."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "delete": {
                "tags": [
                    "Export Field"
                ],
                "summary": "Delete an export field",
                "description": "Delete an export field. Only if a field is non mandatory. Only internal users and admins can remove fields from global channels",
                "operationId": "export_field_delete",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "description": "Export id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Field id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "204": {
                        "description": "No Content"
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Unable to remove mandatory field."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Unable to remove mandatory field."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Unable to remove mandatory field."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export with id 456 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export with id 456 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export with id 456 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "patch": {
                "tags": [
                    "Export Field"
                ],
                "summary": "Update an export field",
                "description": "An export field is a field that belongs to an export. Once created, the export field will be added to every channel that is created from the export template in the productsup platform. This endpoint allows the updating of an existing export field.",
                "operationId": "export_field_update",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "description": "Export id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Field id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_field_update_input"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 995992
                                                },
                                                "alias": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "title"
                                                },
                                                "mandatory": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "type": {
                                                    "type": "string",
                                                    "enum": [
                                                        "mandatory",
                                                        "conditionally_mandatory",
                                                        "optional"
                                                    ],
                                                    "example": "optional"
                                                },
                                                "conditions": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "object",
                                                        "properties": {
                                                            "triggerAttribute": {
                                                                "type": "string"
                                                            },
                                                            "triggerValue": {
                                                                "type": "string"
                                                            },
                                                            "operator": {
                                                                "type": "string",
                                                                "enum": [
                                                                    "equals",
                                                                    "not_equals"
                                                                ]
                                                            },
                                                            "description": {
                                                                "type": "string"
                                                            }
                                                        }
                                                    },
                                                    "example": []
                                                },
                                                "flag": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "not hidden"
                                                },
                                                "isDefaultTrackingColumn": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "isUniqueColumn": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "order": {
                                                    "type": "integer",
                                                    "nullable": true,
                                                    "example": 10
                                                },
                                                "deltaIgnore": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "deltaKey": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "automapIgnore": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "description": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "a new product title"
                                                },
                                                "example": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "some example"
                                                },
                                                "format": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "String (Unicode Characters)"
                                                },
                                                "export": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 58965
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 58965
                                                    }
                                                },
                                                "fieldname": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "test"
                                                },
                                                "fieldTags": {
                                                    "type": "array",
                                                    "items": {},
                                                    "example": []
                                                },
                                                "analyzerTestExports": {
                                                    "type": "array",
                                                    "items": {},
                                                    "example": []
                                                },
                                                "analyzerTests": {
                                                    "type": "array",
                                                    "description": "V2 Analyzer test template assignments for this export field",
                                                    "items": {
                                                        "type": "object",
                                                        "properties": {
                                                            "id": {
                                                                "type": "integer",
                                                                "example": 1
                                                            },
                                                            "templateId": {
                                                                "type": "string",
                                                                "example": "length_check"
                                                            },
                                                            "templateName": {
                                                                "type": "string",
                                                                "example": "Length Validation"
                                                            },
                                                            "configuration": {
                                                                "type": "object",
                                                                "additionalProperties": true,
                                                                "example": {
                                                                    "value": 100,
                                                                    "operator": ">"
                                                                }
                                                            },
                                                            "mandatory": {
                                                                "type": "boolean",
                                                                "example": true
                                                            },
                                                            "createdAt": {
                                                                "type": "string",
                                                                "format": "date-time",
                                                                "example": "2024-06-10T14:00:00Z"
                                                            },
                                                            "updatedAt": {
                                                                "type": "string",
                                                                "format": "date-time",
                                                                "example": "2024-06-10T14:00:00Z"
                                                            }
                                                        }
                                                    },
                                                    "example": []
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 995992,
                                                "alias": "title",
                                                "mandatory": true,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": true,
                                                "isUniqueColumn": true,
                                                "order": 10,
                                                "deltaIgnore": true,
                                                "deltaKey": true,
                                                "automapIgnore": true,
                                                "description": "a new product title",
                                                "example": "some example",
                                                "format": "String (Unicode Characters)",
                                                "export": {
                                                    "id": 58965
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "test"
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 995992,
                                            "alias": "title",
                                            "mandatory": true,
                                            "type": "optional",
                                            "conditions": [],
                                            "flag": "not hidden",
                                            "isDefaultTrackingColumn": true,
                                            "isUniqueColumn": true,
                                            "order": 10,
                                            "deltaIgnore": true,
                                            "deltaKey": true,
                                            "automapIgnore": true,
                                            "description": "a new product title",
                                            "example": "some example",
                                            "format": "String (Unicode Characters)",
                                            "export": {
                                                "id": 58965
                                            },
                                            "fieldTags": [],
                                            "analyzerTestExports": [],
                                            "analyzerTests": [],
                                            "fieldname": "test"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "fieldName": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field was not expected."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "fieldName": [
                                                            "This field was not expected."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "fieldName": [
                                                        "This field was not expected."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "fieldName": [
                                                    "This field was not expected."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export/{exportId}/export-fields": {
            "get": {
                "tags": [
                    "Export Field"
                ],
                "summary": "Retrieves a list of export fields of an export",
                "description": "An export field is a field that belongs to an export. Once created, the export field will be added to every channel that is created from the export template in the productsup platform. This endpoint lists all export fields of an export, including their V2 analyzer test template assignments.",
                "operationId": "export_fields_list",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "firstResult",
                        "in": "query",
                        "description": "starting item",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    },
                    {
                        "name": "maxResults",
                        "in": "query",
                        "description": "items per page",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "example": {
                                                    "type": "string",
                                                    "nullable": true
                                                }
                                            },
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "integer",
                                                        "example": 995889
                                                    },
                                                    "alias": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": "title"
                                                    },
                                                    "mandatory": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "type": {
                                                        "type": "string",
                                                        "enum": [
                                                            "mandatory",
                                                            "conditionally_mandatory",
                                                            "optional"
                                                        ],
                                                        "example": "optional"
                                                    },
                                                    "conditions": {
                                                        "type": "array",
                                                        "items": {
                                                            "type": "object",
                                                            "properties": {
                                                                "triggerAttribute": {
                                                                    "type": "string"
                                                                },
                                                                "triggerValue": {
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "type": "string",
                                                                    "enum": [
                                                                        "equals",
                                                                        "not_equals"
                                                                    ]
                                                                },
                                                                "description": {
                                                                    "type": "string"
                                                                }
                                                            }
                                                        },
                                                        "example": []
                                                    },
                                                    "flag": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": "not hidden"
                                                    },
                                                    "isDefaultTrackingColumn": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "isUniqueColumn": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "order": {
                                                        "type": "integer",
                                                        "example": 1
                                                    },
                                                    "deltaIgnore": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "deltaKey": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "automapIgnore": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "description": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": "product title"
                                                    },
                                                    "example": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": "some example"
                                                    },
                                                    "format": {
                                                        "type": "string",
                                                        "nullable": true,
                                                        "example": "String"
                                                    },
                                                    "export": {
                                                        "properties": {
                                                            "id": {
                                                                "type": "integer",
                                                                "example": 58939
                                                            },
                                                            "unpublishedChanges": {
                                                                "type": "boolean",
                                                                "example": true
                                                            }
                                                        },
                                                        "type": "object",
                                                        "example": {
                                                            "id": 58939,
                                                            "unpublishedChanges": true
                                                        }
                                                    },
                                                    "fieldTags": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "integer",
                                                                    "example": 1247718
                                                                },
                                                                "key": {
                                                                    "type": "string",
                                                                    "example": "classification_field_code"
                                                                },
                                                                "value": {
                                                                    "type": "string",
                                                                    "example": "EF12345"
                                                                }
                                                            },
                                                            "type": "object",
                                                            "example": {
                                                                "id": 1247718,
                                                                "key": "classification_field_code",
                                                                "value": "EF12345"
                                                            }
                                                        },
                                                        "example": [
                                                            {
                                                                "id": 1247718,
                                                                "key": "classification_field_code",
                                                                "value": "EF12345"
                                                            },
                                                            {
                                                                "id": 1247719,
                                                                "key": "classification_field_sub_type",
                                                                "value": "details"
                                                            }
                                                        ]
                                                    },
                                                    "analyzerTestExports": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "integer",
                                                                    "example": 583585
                                                                },
                                                                "analyzerTest": {
                                                                    "properties": {
                                                                        "id": {
                                                                            "type": "integer",
                                                                            "example": 75120
                                                                        }
                                                                    },
                                                                    "type": "object",
                                                                    "example": {
                                                                        "id": 75120
                                                                    }
                                                                }
                                                            },
                                                            "type": "object",
                                                            "example": {
                                                                "id": 583585,
                                                                "analyzerTest": {
                                                                    "id": 75120
                                                                }
                                                            }
                                                        },
                                                        "example": [
                                                            {
                                                                "id": 583585,
                                                                "analyzerTest": {
                                                                    "id": 75120
                                                                }
                                                            },
                                                            {
                                                                "id": 583586,
                                                                "analyzerTest": {
                                                                    "id": 75121
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    "analyzerTests": {
                                                        "type": "array",
                                                        "description": "V2 Analyzer test template assignments for this export field",
                                                        "items": {
                                                            "type": "object",
                                                            "properties": {
                                                                "id": {
                                                                    "type": "integer",
                                                                    "example": 1
                                                                },
                                                                "templateId": {
                                                                    "type": "string",
                                                                    "example": "length_check"
                                                                },
                                                                "templateName": {
                                                                    "type": "string",
                                                                    "example": "Length Validation"
                                                                },
                                                                "configuration": {
                                                                    "type": "object",
                                                                    "example": {
                                                                        "value": 100,
                                                                        "operator": ">"
                                                                    }
                                                                },
                                                                "createdAt": {
                                                                    "type": "string",
                                                                    "format": "date-time",
                                                                    "example": "2024-06-10T14:00:00Z"
                                                                },
                                                                "updatedAt": {
                                                                    "type": "string",
                                                                    "format": "date-time",
                                                                    "example": "2024-06-10T14:00:00Z"
                                                                }
                                                            }
                                                        },
                                                        "example": [
                                                            {
                                                                "id": 1,
                                                                "templateId": "length_check",
                                                                "templateName": "Length Validation",
                                                                "configuration": {
                                                                    "value": 1,
                                                                    "operator": ">"
                                                                },
                                                                "mandatory": true,
                                                                "createdAt": "2024-06-10T14:00:00Z",
                                                                "updatedAt": "2024-06-10T14:00:00Z"
                                                            },
                                                            {
                                                                "id": 2,
                                                                "templateId": "length_check",
                                                                "templateName": "Length Validation",
                                                                "configuration": {
                                                                    "value": 100,
                                                                    "operator": "<"
                                                                },
                                                                "mandatory": false,
                                                                "createdAt": "2024-06-10T14:00:00Z",
                                                                "updatedAt": "2024-06-10T14:00:00Z"
                                                            }
                                                        ]
                                                    },
                                                    "fieldname": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "id": 995889,
                                                    "alias": "",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 0,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "",
                                                    "example": null,
                                                    "format": null,
                                                    "export": {
                                                        "id": 58939,
                                                        "unpublishedChanges": true
                                                    },
                                                    "fieldTags": [
                                                        {
                                                            "id": 1247718,
                                                            "key": "classification_field_code",
                                                            "value": "EF12345"
                                                        },
                                                        {
                                                            "id": 1247719,
                                                            "key": "classification_field_sub_type",
                                                            "value": "details"
                                                        }
                                                    ],
                                                    "analyzerTestExports": [
                                                        {
                                                            "id": 583585,
                                                            "analyzerTest": {
                                                                "id": 75120
                                                            }
                                                        },
                                                        {
                                                            "id": 583586,
                                                            "analyzerTest": {
                                                                "id": 75121
                                                            }
                                                        }
                                                    ],
                                                    "analyzerTests": [
                                                        {
                                                            "id": 1,
                                                            "templateId": "length_check",
                                                            "templateName": "Length Validation",
                                                            "configuration": {
                                                                "value": 1,
                                                                "operator": ">"
                                                            },
                                                            "mandatory": true,
                                                            "createdAt": "2024-06-10T14:00:00Z",
                                                            "updatedAt": "2024-06-10T14:00:00Z"
                                                        }
                                                    ],
                                                    "fieldname": "name"
                                                }
                                            },
                                            "example": [
                                                {
                                                    "id": 995889,
                                                    "alias": "",
                                                    "mandatory": true,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 0,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "",
                                                    "example": null,
                                                    "format": null,
                                                    "export": {
                                                        "id": 58939,
                                                        "unpublishedChanges": true
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "name 2"
                                                },
                                                {
                                                    "id": 995890,
                                                    "alias": "",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 0,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "",
                                                    "example": null,
                                                    "format": null,
                                                    "export": {
                                                        "id": 58939,
                                                        "unpublishedChanges": true
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "name 3"
                                                },
                                                {
                                                    "id": 995892,
                                                    "alias": "01977d43-0391-753b-8f31-cd74ed9318dc",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0391-753b-8f31-cd74ed9318dc"
                                                },
                                                {
                                                    "id": 995893,
                                                    "alias": "01977d43-0392-78c5-8b44-2669ff6a66ff",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0392-78c5-8b44-2669ff6a66ff"
                                                },
                                                {
                                                    "id": 995894,
                                                    "alias": "01977d43-0394-727c-b375-a224d787edac",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0394-727c-b375-a224d787edac"
                                                },
                                                {
                                                    "id": 995895,
                                                    "alias": "01977d43-0395-79ca-8852-0a7f3b588631",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0395-79ca-8852-0a7f3b588631"
                                                },
                                                {
                                                    "id": 995896,
                                                    "alias": "01977d43-0397-7666-865c-605e7431ffc0",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0397-7666-865c-605e7431ffc0"
                                                },
                                                {
                                                    "id": 995897,
                                                    "alias": "01977d43-0399-736e-8d34-37e1cbc1ef6c",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0399-736e-8d34-37e1cbc1ef6c"
                                                },
                                                {
                                                    "id": 995898,
                                                    "alias": "01977d43-039b-776e-96a5-5c81da581f88",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-039b-776e-96a5-5c81da581f88"
                                                },
                                                {
                                                    "id": 995899,
                                                    "alias": "01977d43-039c-7665-b5f7-f8afd23cbc9e",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-039c-7665-b5f7-f8afd23cbc9e"
                                                },
                                                {
                                                    "id": 995900,
                                                    "alias": "01977d43-039e-73a1-a8f0-833437747861",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-039e-73a1-a8f0-833437747861"
                                                },
                                                {
                                                    "id": 995901,
                                                    "alias": "01977d43-03a0-79a7-a6e0-b5426dce9ef8",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03a0-79a7-a6e0-b5426dce9ef8"
                                                },
                                                {
                                                    "id": 995902,
                                                    "alias": "01977d43-03a2-7044-b900-c43c4e1b93e5",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03a2-7044-b900-c43c4e1b93e5"
                                                },
                                                {
                                                    "id": 995903,
                                                    "alias": "01977d43-03a4-7797-a974-b364f602f01f",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03a4-7797-a974-b364f602f01f"
                                                },
                                                {
                                                    "id": 995904,
                                                    "alias": "01977d43-03a6-704b-9f27-042a49aff222",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03a6-704b-9f27-042a49aff222"
                                                },
                                                {
                                                    "id": 995905,
                                                    "alias": "01977d43-03a8-78cf-a8e2-5e48b29fe53e",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03a8-78cf-a8e2-5e48b29fe53e"
                                                },
                                                {
                                                    "id": 995906,
                                                    "alias": "01977d43-03aa-79a5-b1a6-c20542cb862a",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03aa-79a5-b1a6-c20542cb862a"
                                                },
                                                {
                                                    "id": 995907,
                                                    "alias": "01977d43-03ac-78ad-8cbd-6c3559f7f894",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03ac-78ad-8cbd-6c3559f7f894"
                                                },
                                                {
                                                    "id": 995908,
                                                    "alias": "01977d43-03ae-7a29-bbe5-091ddb7c2427",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03ae-7a29-bbe5-091ddb7c2427"
                                                },
                                                {
                                                    "id": 995909,
                                                    "alias": "01977d43-03b0-7acb-9ac8-deb82620c851",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03b0-7acb-9ac8-deb82620c851"
                                                },
                                                {
                                                    "id": 995910,
                                                    "alias": "01977d43-03b2-7c09-af62-e3dace6637c3",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03b2-7c09-af62-e3dace6637c3"
                                                },
                                                {
                                                    "id": 995911,
                                                    "alias": "01977d43-03b5-7548-a51c-0566316d0008",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03b5-7548-a51c-0566316d0008"
                                                },
                                                {
                                                    "id": 995912,
                                                    "alias": "01977d43-03b7-74dc-9618-079bb2a78ffe",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03b7-74dc-9618-079bb2a78ffe"
                                                },
                                                {
                                                    "id": 995913,
                                                    "alias": "01977d43-03b9-7d2d-8889-def2e92c1313",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03b9-7d2d-8889-def2e92c1313"
                                                },
                                                {
                                                    "id": 995914,
                                                    "alias": "01977d43-03bc-7655-9df2-03647bd88c26",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03bc-7655-9df2-03647bd88c26"
                                                },
                                                {
                                                    "id": 995915,
                                                    "alias": "01977d43-03be-774a-802d-05633f581cfe",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03be-774a-802d-05633f581cfe"
                                                },
                                                {
                                                    "id": 995916,
                                                    "alias": "01977d43-03c0-7018-8269-95d2d88df31c",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03c0-7018-8269-95d2d88df31c"
                                                },
                                                {
                                                    "id": 995917,
                                                    "alias": "01977d43-03c3-7990-ae67-e9bff52da9d5",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03c3-7990-ae67-e9bff52da9d5"
                                                },
                                                {
                                                    "id": 995918,
                                                    "alias": "01977d43-03c5-7a24-a79e-dacbe6f303f2",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03c5-7a24-a79e-dacbe6f303f2"
                                                },
                                                {
                                                    "id": 995919,
                                                    "alias": "01977d43-03c8-72c1-80c3-12841af441a0",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03c8-72c1-80c3-12841af441a0"
                                                },
                                                {
                                                    "id": 995920,
                                                    "alias": "01977d43-03ca-7889-8791-c65c36c623c1",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03ca-7889-8791-c65c36c623c1"
                                                },
                                                {
                                                    "id": 995921,
                                                    "alias": "01977d43-03cd-745b-83db-7a67f2385c18",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03cd-745b-83db-7a67f2385c18"
                                                },
                                                {
                                                    "id": 995922,
                                                    "alias": "01977d43-03d0-7772-9023-81ad56d7e9be",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03d0-7772-9023-81ad56d7e9be"
                                                },
                                                {
                                                    "id": 995923,
                                                    "alias": "01977d43-03d2-7a06-9a5c-87d83fca494e",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03d2-7a06-9a5c-87d83fca494e"
                                                },
                                                {
                                                    "id": 995924,
                                                    "alias": "01977d43-03d5-7591-a745-c9ba48328997",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03d5-7591-a745-c9ba48328997"
                                                },
                                                {
                                                    "id": 995925,
                                                    "alias": "01977d43-03d8-74f2-b3bb-48d354072dee",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03d8-74f2-b3bb-48d354072dee"
                                                },
                                                {
                                                    "id": 995926,
                                                    "alias": "01977d43-03da-79be-84a5-57f42e986ffe",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03da-79be-84a5-57f42e986ffe"
                                                },
                                                {
                                                    "id": 995927,
                                                    "alias": "01977d43-03dd-7cc0-b676-34d41a2878f2",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03dd-7cc0-b676-34d41a2878f2"
                                                },
                                                {
                                                    "id": 995928,
                                                    "alias": "01977d43-03e0-7119-b495-5761fef82aa5",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03e0-7119-b495-5761fef82aa5"
                                                },
                                                {
                                                    "id": 995929,
                                                    "alias": "01977d43-03e3-7ec4-851c-7d47bc33f9b7",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03e3-7ec4-851c-7d47bc33f9b7"
                                                },
                                                {
                                                    "id": 995930,
                                                    "alias": "01977d43-03e6-7c1d-aece-8a0d6680fe8e",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03e6-7c1d-aece-8a0d6680fe8e"
                                                },
                                                {
                                                    "id": 995931,
                                                    "alias": "01977d43-03e9-775f-ac35-0cb66481dfb7",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03e9-775f-ac35-0cb66481dfb7"
                                                },
                                                {
                                                    "id": 995932,
                                                    "alias": "01977d43-03ec-75f6-88d0-52a2bf43931c",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03ec-75f6-88d0-52a2bf43931c"
                                                },
                                                {
                                                    "id": 995933,
                                                    "alias": "01977d43-03ef-7b49-ad82-6d2bd2c096ff",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03ef-7b49-ad82-6d2bd2c096ff"
                                                },
                                                {
                                                    "id": 995934,
                                                    "alias": "01977d43-03f2-77d8-8a54-2d6935d12b83",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03f2-77d8-8a54-2d6935d12b83"
                                                },
                                                {
                                                    "id": 995935,
                                                    "alias": "01977d43-03f5-7d72-b2e7-a4fc0014b72d",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03f5-7d72-b2e7-a4fc0014b72d"
                                                },
                                                {
                                                    "id": 995936,
                                                    "alias": "01977d43-03f8-746d-b9bb-e63d5113a6da",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03f8-746d-b9bb-e63d5113a6da"
                                                },
                                                {
                                                    "id": 995937,
                                                    "alias": "01977d43-03fb-72e1-98e7-4cfcba25a0c0",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-03fb-72e1-98e7-4cfcba25a0c0"
                                                },
                                                {
                                                    "id": 995938,
                                                    "alias": "01977d43-0407-7492-a917-c81e5c28a8ec",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0407-7492-a917-c81e5c28a8ec"
                                                },
                                                {
                                                    "id": 995939,
                                                    "alias": "01977d43-040b-7d7c-96a9-4539fe6f1a29",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-040b-7d7c-96a9-4539fe6f1a29"
                                                },
                                                {
                                                    "id": 995940,
                                                    "alias": "01977d43-040e-747c-82f6-1ff0931e0364",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-040e-747c-82f6-1ff0931e0364"
                                                },
                                                {
                                                    "id": 995941,
                                                    "alias": "01977d43-0412-7a82-98db-5eef9bc9809d",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0412-7a82-98db-5eef9bc9809d"
                                                },
                                                {
                                                    "id": 995942,
                                                    "alias": "01977d43-0415-7f08-814c-978ab2d0c1d2",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0415-7f08-814c-978ab2d0c1d2"
                                                },
                                                {
                                                    "id": 995943,
                                                    "alias": "01977d43-0418-740f-a2f0-3b8db7ccbd30",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0418-740f-a2f0-3b8db7ccbd30"
                                                },
                                                {
                                                    "id": 995944,
                                                    "alias": "01977d43-041c-7167-87d1-a935bbf74414",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-041c-7167-87d1-a935bbf74414"
                                                },
                                                {
                                                    "id": 995945,
                                                    "alias": "01977d43-041f-7f77-9c50-e1c51e738fa6",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-041f-7f77-9c50-e1c51e738fa6"
                                                },
                                                {
                                                    "id": 995946,
                                                    "alias": "01977d43-0423-7bb7-85a7-a114589f229a",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0423-7bb7-85a7-a114589f229a"
                                                },
                                                {
                                                    "id": 995947,
                                                    "alias": "01977d43-0426-7394-a99f-f592af871e20",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-0426-7394-a99f-f592af871e20"
                                                },
                                                {
                                                    "id": 995948,
                                                    "alias": "01977d43-042a-745b-a7fa-9454533cfc9a",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-042a-745b-a7fa-9454533cfc9a"
                                                },
                                                {
                                                    "id": 995949,
                                                    "alias": "01977d43-042d-7aea-b0a6-643308710486",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flag": "not hidden",
                                                    "isDefaultTrackingColumn": false,
                                                    "isUniqueColumn": false,
                                                    "order": 1,
                                                    "deltaIgnore": false,
                                                    "deltaKey": false,
                                                    "automapIgnore": false,
                                                    "description": "product title",
                                                    "example": null,
                                                    "format": "String",
                                                    "export": {
                                                        "id": 58939
                                                    },
                                                    "fieldTags": [],
                                                    "analyzerTestExports": [],
                                                    "analyzerTests": [],
                                                    "fieldname": "01977d43-042d-7aea-b0a6-643308710486"
                                                }
                                            ]
                                        },
                                        "pagination": {
                                            "properties": {
                                                "firstResult": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "maxResults": {
                                                    "type": "integer",
                                                    "example": 60
                                                },
                                                "count": {
                                                    "type": "integer",
                                                    "example": 60
                                                },
                                                "total": {
                                                    "type": "integer",
                                                    "example": 62
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "firstResult": 0,
                                                "maxResults": 60,
                                                "count": 60,
                                                "total": 62
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "id": 995889,
                                                "alias": "title",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [
                                                    {
                                                        "id": 1247718,
                                                        "key": "classification_field_code",
                                                        "value": "EF12345"
                                                    },
                                                    {
                                                        "id": 1247719,
                                                        "key": "classification_field_sub_type",
                                                        "value": "details"
                                                    }
                                                ],
                                                "analyzerTestExports": [
                                                    {
                                                        "id": 583585,
                                                        "analyzerTest": {
                                                            "id": 75120
                                                        }
                                                    },
                                                    {
                                                        "id": 583586,
                                                        "analyzerTest": {
                                                            "id": 75121
                                                        }
                                                    }
                                                ],
                                                "analyzerTests": [],
                                                "fieldname": "name"
                                            },
                                            {
                                                "id": 995890,
                                                "alias": "sku",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "identifier",
                                                "example": "1000",
                                                "format": "Integer",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "sku"
                                            },
                                            {
                                                "id": 995892,
                                                "alias": "01977d43-0391-753b-8f31-cd74ed9318dc",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0391-753b-8f31-cd74ed9318dc"
                                            },
                                            {
                                                "id": 995893,
                                                "alias": "01977d43-0392-78c5-8b44-2669ff6a66ff",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0392-78c5-8b44-2669ff6a66ff"
                                            },
                                            {
                                                "id": 995894,
                                                "alias": "01977d43-0394-727c-b375-a224d787edac",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0394-727c-b375-a224d787edac"
                                            },
                                            {
                                                "id": 995895,
                                                "alias": "01977d43-0395-79ca-8852-0a7f3b588631",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0395-79ca-8852-0a7f3b588631"
                                            },
                                            {
                                                "id": 995896,
                                                "alias": "01977d43-0397-7666-865c-605e7431ffc0",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0397-7666-865c-605e7431ffc0"
                                            },
                                            {
                                                "id": 995897,
                                                "alias": "01977d43-0399-736e-8d34-37e1cbc1ef6c",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0399-736e-8d34-37e1cbc1ef6c"
                                            },
                                            {
                                                "id": 995898,
                                                "alias": "01977d43-039b-776e-96a5-5c81da581f88",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-039b-776e-96a5-5c81da581f88"
                                            },
                                            {
                                                "id": 995899,
                                                "alias": "01977d43-039c-7665-b5f7-f8afd23cbc9e",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-039c-7665-b5f7-f8afd23cbc9e"
                                            },
                                            {
                                                "id": 995900,
                                                "alias": "01977d43-039e-73a1-a8f0-833437747861",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-039e-73a1-a8f0-833437747861"
                                            },
                                            {
                                                "id": 995901,
                                                "alias": "01977d43-03a0-79a7-a6e0-b5426dce9ef8",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03a0-79a7-a6e0-b5426dce9ef8"
                                            },
                                            {
                                                "id": 995902,
                                                "alias": "01977d43-03a2-7044-b900-c43c4e1b93e5",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03a2-7044-b900-c43c4e1b93e5"
                                            },
                                            {
                                                "id": 995903,
                                                "alias": "01977d43-03a4-7797-a974-b364f602f01f",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03a4-7797-a974-b364f602f01f"
                                            },
                                            {
                                                "id": 995904,
                                                "alias": "01977d43-03a6-704b-9f27-042a49aff222",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03a6-704b-9f27-042a49aff222"
                                            },
                                            {
                                                "id": 995905,
                                                "alias": "01977d43-03a8-78cf-a8e2-5e48b29fe53e",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03a8-78cf-a8e2-5e48b29fe53e"
                                            },
                                            {
                                                "id": 995906,
                                                "alias": "01977d43-03aa-79a5-b1a6-c20542cb862a",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03aa-79a5-b1a6-c20542cb862a"
                                            },
                                            {
                                                "id": 995907,
                                                "alias": "01977d43-03ac-78ad-8cbd-6c3559f7f894",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03ac-78ad-8cbd-6c3559f7f894"
                                            },
                                            {
                                                "id": 995908,
                                                "alias": "01977d43-03ae-7a29-bbe5-091ddb7c2427",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03ae-7a29-bbe5-091ddb7c2427"
                                            },
                                            {
                                                "id": 995909,
                                                "alias": "01977d43-03b0-7acb-9ac8-deb82620c851",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03b0-7acb-9ac8-deb82620c851"
                                            },
                                            {
                                                "id": 995910,
                                                "alias": "01977d43-03b2-7c09-af62-e3dace6637c3",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03b2-7c09-af62-e3dace6637c3"
                                            },
                                            {
                                                "id": 995911,
                                                "alias": "01977d43-03b5-7548-a51c-0566316d0008",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03b5-7548-a51c-0566316d0008"
                                            },
                                            {
                                                "id": 995912,
                                                "alias": "01977d43-03b7-74dc-9618-079bb2a78ffe",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03b7-74dc-9618-079bb2a78ffe"
                                            },
                                            {
                                                "id": 995913,
                                                "alias": "01977d43-03b9-7d2d-8889-def2e92c1313",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03b9-7d2d-8889-def2e92c1313"
                                            },
                                            {
                                                "id": 995914,
                                                "alias": "01977d43-03bc-7655-9df2-03647bd88c26",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03bc-7655-9df2-03647bd88c26"
                                            },
                                            {
                                                "id": 995915,
                                                "alias": "01977d43-03be-774a-802d-05633f581cfe",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03be-774a-802d-05633f581cfe"
                                            },
                                            {
                                                "id": 995916,
                                                "alias": "01977d43-03c0-7018-8269-95d2d88df31c",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03c0-7018-8269-95d2d88df31c"
                                            },
                                            {
                                                "id": 995917,
                                                "alias": "01977d43-03c3-7990-ae67-e9bff52da9d5",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03c3-7990-ae67-e9bff52da9d5"
                                            },
                                            {
                                                "id": 995918,
                                                "alias": "01977d43-03c5-7a24-a79e-dacbe6f303f2",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03c5-7a24-a79e-dacbe6f303f2"
                                            },
                                            {
                                                "id": 995919,
                                                "alias": "01977d43-03c8-72c1-80c3-12841af441a0",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03c8-72c1-80c3-12841af441a0"
                                            },
                                            {
                                                "id": 995920,
                                                "alias": "01977d43-03ca-7889-8791-c65c36c623c1",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03ca-7889-8791-c65c36c623c1"
                                            },
                                            {
                                                "id": 995921,
                                                "alias": "01977d43-03cd-745b-83db-7a67f2385c18",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03cd-745b-83db-7a67f2385c18"
                                            },
                                            {
                                                "id": 995922,
                                                "alias": "01977d43-03d0-7772-9023-81ad56d7e9be",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03d0-7772-9023-81ad56d7e9be"
                                            },
                                            {
                                                "id": 995923,
                                                "alias": "01977d43-03d2-7a06-9a5c-87d83fca494e",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03d2-7a06-9a5c-87d83fca494e"
                                            },
                                            {
                                                "id": 995924,
                                                "alias": "01977d43-03d5-7591-a745-c9ba48328997",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03d5-7591-a745-c9ba48328997"
                                            },
                                            {
                                                "id": 995925,
                                                "alias": "01977d43-03d8-74f2-b3bb-48d354072dee",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03d8-74f2-b3bb-48d354072dee"
                                            },
                                            {
                                                "id": 995926,
                                                "alias": "01977d43-03da-79be-84a5-57f42e986ffe",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03da-79be-84a5-57f42e986ffe"
                                            },
                                            {
                                                "id": 995927,
                                                "alias": "01977d43-03dd-7cc0-b676-34d41a2878f2",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03dd-7cc0-b676-34d41a2878f2"
                                            },
                                            {
                                                "id": 995928,
                                                "alias": "01977d43-03e0-7119-b495-5761fef82aa5",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03e0-7119-b495-5761fef82aa5"
                                            },
                                            {
                                                "id": 995929,
                                                "alias": "01977d43-03e3-7ec4-851c-7d47bc33f9b7",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03e3-7ec4-851c-7d47bc33f9b7"
                                            },
                                            {
                                                "id": 995930,
                                                "alias": "01977d43-03e6-7c1d-aece-8a0d6680fe8e",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03e6-7c1d-aece-8a0d6680fe8e"
                                            },
                                            {
                                                "id": 995931,
                                                "alias": "01977d43-03e9-775f-ac35-0cb66481dfb7",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03e9-775f-ac35-0cb66481dfb7"
                                            },
                                            {
                                                "id": 995932,
                                                "alias": "01977d43-03ec-75f6-88d0-52a2bf43931c",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03ec-75f6-88d0-52a2bf43931c"
                                            },
                                            {
                                                "id": 995933,
                                                "alias": "01977d43-03ef-7b49-ad82-6d2bd2c096ff",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03ef-7b49-ad82-6d2bd2c096ff"
                                            },
                                            {
                                                "id": 995934,
                                                "alias": "01977d43-03f2-77d8-8a54-2d6935d12b83",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03f2-77d8-8a54-2d6935d12b83"
                                            },
                                            {
                                                "id": 995935,
                                                "alias": "01977d43-03f5-7d72-b2e7-a4fc0014b72d",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03f5-7d72-b2e7-a4fc0014b72d"
                                            },
                                            {
                                                "id": 995936,
                                                "alias": "01977d43-03f8-746d-b9bb-e63d5113a6da",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03f8-746d-b9bb-e63d5113a6da"
                                            },
                                            {
                                                "id": 995937,
                                                "alias": "01977d43-03fb-72e1-98e7-4cfcba25a0c0",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-03fb-72e1-98e7-4cfcba25a0c0"
                                            },
                                            {
                                                "id": 995938,
                                                "alias": "01977d43-0407-7492-a917-c81e5c28a8ec",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0407-7492-a917-c81e5c28a8ec"
                                            },
                                            {
                                                "id": 995939,
                                                "alias": "01977d43-040b-7d7c-96a9-4539fe6f1a29",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-040b-7d7c-96a9-4539fe6f1a29"
                                            },
                                            {
                                                "id": 995940,
                                                "alias": "01977d43-040e-747c-82f6-1ff0931e0364",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-040e-747c-82f6-1ff0931e0364"
                                            },
                                            {
                                                "id": 995941,
                                                "alias": "01977d43-0412-7a82-98db-5eef9bc9809d",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0412-7a82-98db-5eef9bc9809d"
                                            },
                                            {
                                                "id": 995942,
                                                "alias": "01977d43-0415-7f08-814c-978ab2d0c1d2",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0415-7f08-814c-978ab2d0c1d2"
                                            },
                                            {
                                                "id": 995943,
                                                "alias": "01977d43-0418-740f-a2f0-3b8db7ccbd30",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0418-740f-a2f0-3b8db7ccbd30"
                                            },
                                            {
                                                "id": 995944,
                                                "alias": "01977d43-041c-7167-87d1-a935bbf74414",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-041c-7167-87d1-a935bbf74414"
                                            },
                                            {
                                                "id": 995945,
                                                "alias": "01977d43-041f-7f77-9c50-e1c51e738fa6",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-041f-7f77-9c50-e1c51e738fa6"
                                            },
                                            {
                                                "id": 995946,
                                                "alias": "01977d43-0423-7bb7-85a7-a114589f229a",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0423-7bb7-85a7-a114589f229a"
                                            },
                                            {
                                                "id": 995947,
                                                "alias": "01977d43-0426-7394-a99f-f592af871e20",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-0426-7394-a99f-f592af871e20"
                                            },
                                            {
                                                "id": 995948,
                                                "alias": "01977d43-042a-745b-a7fa-9454533cfc9a",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-042a-745b-a7fa-9454533cfc9a"
                                            },
                                            {
                                                "id": 995949,
                                                "alias": "01977d43-042d-7aea-b0a6-643308710486",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 1,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "product title",
                                                "example": null,
                                                "format": "String",
                                                "export": {
                                                    "id": 58939
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "analyzerTests": [],
                                                "fieldname": "01977d43-042d-7aea-b0a6-643308710486"
                                            }
                                        ],
                                        "pagination": {
                                            "firstResult": 0,
                                            "maxResults": 60,
                                            "count": 60,
                                            "total": 62
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        },
        "/V1/export-templates/{templateId}/attributes/{id}": {
            "get": {
                "tags": [
                    " Export Template Attribute"
                ],
                "summary": "Retrieve a single export template attribute",
                "description": "An export template attribute is a field that belongs to an export template. Once created, the export template attribute will be added to every channel that is created from the export template in the productsup platform. This endpoint shows a single export template attribute.",
                "operationId": "export_field_show",
                "parameters": [
                    {
                        "name": "templateId",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Template Attribute id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 995976
                                                },
                                                "alias": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "title"
                                                },
                                                "mandatory": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "type": {
                                                    "type": "string",
                                                    "enum": [
                                                        "mandatory",
                                                        "conditionally_mandatory",
                                                        "optional"
                                                    ],
                                                    "example": "optional"
                                                },
                                                "conditions": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "object",
                                                        "properties": {
                                                            "triggerAttribute": {
                                                                "type": "string"
                                                            },
                                                            "triggerValue": {
                                                                "type": "string"
                                                            },
                                                            "operator": {
                                                                "type": "string",
                                                                "enum": [
                                                                    "equals",
                                                                    "not_equals"
                                                                ]
                                                            },
                                                            "description": {
                                                                "type": "string"
                                                            }
                                                        }
                                                    },
                                                    "example": []
                                                },
                                                "flag": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "not hidden"
                                                },
                                                "isDefaultTrackingColumn": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "isUniqueColumn": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "order": {
                                                    "type": "integer",
                                                    "example": 1
                                                },
                                                "deltaIgnore": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "deltaKey": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "automapIgnore": {
                                                    "type": "boolean",
                                                    "example": false,
                                                    "nullable": true
                                                },
                                                "description": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "product title"
                                                },
                                                "example": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "some example"
                                                },
                                                "format": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "String"
                                                },
                                                "export": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 58949
                                                        },
                                                        "unpublishedChanges": {
                                                            "type": "boolean",
                                                            "example": true
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 58949,
                                                        "unpublishedChanges": true
                                                    }
                                                },
                                                "fieldTags": {
                                                    "type": "array",
                                                    "items": {
                                                        "properties": {
                                                            "id": {
                                                                "type": "integer",
                                                                "example": 1247720
                                                            },
                                                            "key": {
                                                                "type": "string",
                                                                "example": "classification_field_code"
                                                            },
                                                            "value": {
                                                                "type": "string",
                                                                "example": "EF12345"
                                                            }
                                                        },
                                                        "type": "object",
                                                        "example": {
                                                            "id": 1247720,
                                                            "key": "classification_field_code",
                                                            "value": "EF12345"
                                                        }
                                                    },
                                                    "example": [
                                                        {
                                                            "id": 1247720,
                                                            "key": "classification_field_code",
                                                            "value": "EF12345"
                                                        },
                                                        {
                                                            "id": 1247721,
                                                            "key": "classification_field_sub_type",
                                                            "value": "details"
                                                        }
                                                    ]
                                                },
                                                "analyzerTestExports": {
                                                    "type": "array",
                                                    "items": {
                                                        "properties": {
                                                            "id": {
                                                                "type": "integer",
                                                                "example": 583587
                                                            },
                                                            "analyzerTest": {
                                                                "properties": {
                                                                    "id": {
                                                                        "type": "integer",
                                                                        "example": 75122
                                                                    }
                                                                },
                                                                "type": "object",
                                                                "example": {
                                                                    "id": 75122
                                                                }
                                                            }
                                                        },
                                                        "type": "object",
                                                        "example": {
                                                            "id": 583587,
                                                            "analyzerTest": {
                                                                "id": 75122
                                                            }
                                                        }
                                                    },
                                                    "example": [
                                                        {
                                                            "id": 583587,
                                                            "analyzerTest": {
                                                                "id": 75122
                                                            }
                                                        },
                                                        {
                                                            "id": 583588,
                                                            "analyzerTest": {
                                                                "id": 75123
                                                            }
                                                        }
                                                    ]
                                                },
                                                "fieldname": {
                                                    "type": "string",
                                                    "example": "name"
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 995976,
                                                "alias": "",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "",
                                                "isDefaultTrackingColumn": false,
                                                "isUniqueColumn": false,
                                                "order": 0,
                                                "deltaIgnore": false,
                                                "deltaKey": false,
                                                "automapIgnore": false,
                                                "description": "",
                                                "example": null,
                                                "format": null,
                                                "export": {
                                                    "id": 58949,
                                                    "unpublishedChanges": true
                                                },
                                                "fieldTags": [
                                                    {
                                                        "id": 1247720,
                                                        "key": "classification_field_code",
                                                        "value": "EF12345"
                                                    },
                                                    {
                                                        "id": 1247721,
                                                        "key": "classification_field_sub_type",
                                                        "value": "details"
                                                    }
                                                ],
                                                "analyzerTestExports": [
                                                    {
                                                        "id": 583587,
                                                        "analyzerTest": {
                                                            "id": 75122
                                                        }
                                                    },
                                                    {
                                                        "id": 583588,
                                                        "analyzerTest": {
                                                            "id": 75123
                                                        }
                                                    }
                                                ],
                                                "fieldname": "name"
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 995976,
                                            "alias": "",
                                            "mandatory": false,
                                            "type": "optional",
                                            "conditions": [],
                                            "flag": "",
                                            "isDefaultTrackingColumn": false,
                                            "isUniqueColumn": false,
                                            "order": 0,
                                            "deltaIgnore": false,
                                            "deltaKey": false,
                                            "automapIgnore": false,
                                            "description": "",
                                            "example": null,
                                            "format": null,
                                            "export": {
                                                "id": 58949,
                                                "unpublishedChanges": true
                                            },
                                            "fieldTags": [
                                                {
                                                    "id": 1247720,
                                                    "key": "classification_field_code",
                                                    "value": "EF12345"
                                                },
                                                {
                                                    "id": 1247721,
                                                    "key": "classification_field_sub_type",
                                                    "value": "details"
                                                }
                                            ],
                                            "analyzerTestExports": [
                                                {
                                                    "id": 583587,
                                                    "analyzerTest": {
                                                        "id": 75122
                                                    }
                                                },
                                                {
                                                    "id": 583588,
                                                    "analyzerTest": {
                                                        "id": 75123
                                                    }
                                                }
                                            ],
                                            "fieldname": "name"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export Template Attribute with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Template Attribute with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Template Attribute with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "delete": {
                "tags": [
                    "Export Template Attribute"
                ],
                "summary": "Delete an export template attribute",
                "description": "Delete an export template attribute. Only if a field is non mandatory. Only internal users and admins can remove fields from global channels",
                "operationId": "export_template_attribute_delete",
                "parameters": [
                    {
                        "name": "templateId",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Template Attribute id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "204": {
                        "description": "No Content"
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Unable to remove mandatory field."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Unable to remove mandatory field."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Unable to remove mandatory field."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 456 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 456 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 456 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "patch": {
                "tags": [
                    "Export Template Attribute"
                ],
                "summary": "Update an export template attribute",
                "description": "An export template attribute is a field that belongs to an export template. Once created, the export template attribute will be added to every channel that is created from the export template in the productsup platform. This endpoint allows the updating of an existing export template attribute.",
                "operationId": "export_template_attribute_update",
                "parameters": [
                    {
                        "name": "templateId",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Template Attribute id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_field_update_input"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 995992
                                                },
                                                "alias": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "title"
                                                },
                                                "mandatory": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "type": {
                                                    "type": "string",
                                                    "enum": [
                                                        "mandatory",
                                                        "conditionally_mandatory",
                                                        "optional"
                                                    ],
                                                    "example": "optional"
                                                },
                                                "conditions": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "object",
                                                        "properties": {
                                                            "triggerAttribute": {
                                                                "type": "string"
                                                            },
                                                            "triggerValue": {
                                                                "type": "string"
                                                            },
                                                            "operator": {
                                                                "type": "string",
                                                                "enum": [
                                                                    "equals",
                                                                    "not_equals"
                                                                ]
                                                            },
                                                            "description": {
                                                                "type": "string"
                                                            }
                                                        }
                                                    },
                                                    "example": []
                                                },
                                                "flag": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "not hidden"
                                                },
                                                "isDefaultTrackingColumn": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "isUniqueColumn": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "order": {
                                                    "type": "integer",
                                                    "nullable": true,
                                                    "example": 10
                                                },
                                                "deltaIgnore": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "deltaKey": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "automapIgnore": {
                                                    "type": "boolean",
                                                    "nullable": true,
                                                    "example": true
                                                },
                                                "description": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "a new product title"
                                                },
                                                "example": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "some example"
                                                },
                                                "format": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "String (Unicode Characters)"
                                                },
                                                "export": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 58965
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 58965
                                                    }
                                                },
                                                "fieldname": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "test"
                                                },
                                                "fieldTags": {
                                                    "type": "array",
                                                    "items": {},
                                                    "example": []
                                                },
                                                "analyzerTestExports": {
                                                    "type": "array",
                                                    "items": {},
                                                    "example": []
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 995992,
                                                "alias": "title",
                                                "mandatory": true,
                                                "type": "optional",
                                                "conditions": [],
                                                "flag": "not hidden",
                                                "isDefaultTrackingColumn": true,
                                                "isUniqueColumn": true,
                                                "order": 10,
                                                "deltaIgnore": true,
                                                "deltaKey": true,
                                                "automapIgnore": true,
                                                "description": "a new product title",
                                                "example": "some example",
                                                "format": "String (Unicode Characters)",
                                                "export": {
                                                    "id": 58965
                                                },
                                                "fieldTags": [],
                                                "analyzerTestExports": [],
                                                "fieldname": "test"
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 995992,
                                            "alias": "title",
                                            "mandatory": true,
                                            "type": "optional",
                                            "conditions": [],
                                            "flag": "not hidden",
                                            "isDefaultTrackingColumn": true,
                                            "isUniqueColumn": true,
                                            "order": 10,
                                            "deltaIgnore": true,
                                            "deltaKey": true,
                                            "automapIgnore": true,
                                            "description": "a new product title",
                                            "example": "some example",
                                            "format": "String (Unicode Characters)",
                                            "export": {
                                                "id": 58965
                                            },
                                            "fieldTags": [],
                                            "analyzerTestExports": [],
                                            "fieldname": "test"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "fieldName": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field was not expected."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "fieldName": [
                                                            "This field was not expected."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "fieldName": [
                                                        "This field was not expected."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "fieldName": [
                                                    "This field was not expected."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/attributes": {
            "get": {
                "tags": [
                    "Export Template Attribute"
                ],
                "summary": "Retrieves a list of export template attributes by given filter criteria",
                "operationId": "export_fields_filtered_list",
                "parameters": [
                    {
                        "name": "exportIds",
                        "in": "query",
                        "description": "Array of export template ids to filter for",
                        "required": false,
                        "style": "deepObject",
                        "explode": true,
                        "schema": {
                            "type": "array",
                            "items": {
                                "type": "integer"
                            }
                        }
                    },
                    {
                        "name": "exportFieldIds",
                        "in": "query",
                        "description": "Array of export template attribute ids to filter for",
                        "required": false,
                        "style": "deepObject",
                        "explode": true,
                        "schema": {
                            "type": "array",
                            "items": {
                                "type": "integer"
                            }
                        }
                    },
                    {
                        "name": "firstResult",
                        "in": "query",
                        "description": "starting item",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    },
                    {
                        "name": "maxResults",
                        "in": "query",
                        "description": "items per page",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "integer",
                                                        "example": 995954
                                                    },
                                                    "fieldName": {
                                                        "type": "string",
                                                        "example": "color"
                                                    },
                                                    "alias": {
                                                        "type": "string",
                                                        "example": "''"
                                                    },
                                                    "mandatory": {
                                                        "type": "boolean",
                                                        "example": false,
                                                        "nullable": true
                                                    },
                                                    "type": {
                                                        "type": "string",
                                                        "enum": [
                                                            "mandatory",
                                                            "conditionally_mandatory",
                                                            "optional"
                                                        ],
                                                        "example": "optional"
                                                    },
                                                    "conditions": {
                                                        "type": "array",
                                                        "items": {
                                                            "type": "object",
                                                            "properties": {
                                                                "triggerAttribute": {
                                                                    "type": "string"
                                                                },
                                                                "triggerValue": {
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "type": "string",
                                                                    "enum": [
                                                                        "equals",
                                                                        "not_equals"
                                                                    ]
                                                                },
                                                                "description": {
                                                                    "type": "string"
                                                                }
                                                            }
                                                        },
                                                        "example": []
                                                    },
                                                    "flags": {
                                                        "type": "string",
                                                        "example": "not hidden"
                                                    },
                                                    "exportId": {
                                                        "type": "integer",
                                                        "example": 58941
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "id": 995954,
                                                    "fieldName": "color",
                                                    "alias": "''",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flags": "not hidden",
                                                    "exportId": 58941
                                                }
                                            },
                                            "example": [
                                                {
                                                    "id": 995954,
                                                    "fieldName": "color",
                                                    "alias": "''",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flags": "not hidden",
                                                    "exportId": 58941
                                                },
                                                {
                                                    "id": 995953,
                                                    "fieldName": "sku",
                                                    "alias": "''",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flags": "not hidden",
                                                    "exportId": 58941
                                                },
                                                {
                                                    "id": 995952,
                                                    "fieldName": "name",
                                                    "alias": "title",
                                                    "mandatory": false,
                                                    "type": "optional",
                                                    "conditions": [],
                                                    "flags": "not hidden",
                                                    "exportId": 58941
                                                }
                                            ]
                                        },
                                        "pagination": {
                                            "properties": {
                                                "firstResult": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "maxResults": {
                                                    "type": "integer",
                                                    "example": 50
                                                },
                                                "count": {
                                                    "type": "integer",
                                                    "example": 3
                                                },
                                                "total": {
                                                    "type": "integer",
                                                    "example": 3
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "firstResult": 0,
                                                "maxResults": 50,
                                                "count": 3,
                                                "total": 3
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "id": 995954,
                                                "fieldName": "color",
                                                "alias": "''",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flags": "not hidden",
                                                "exportId": 58941
                                            },
                                            {
                                                "id": 995953,
                                                "fieldName": "sku",
                                                "alias": "''",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flags": "not hidden",
                                                "exportId": 58941
                                            },
                                            {
                                                "id": 995952,
                                                "fieldName": "name",
                                                "alias": "title",
                                                "mandatory": false,
                                                "type": "optional",
                                                "conditions": [],
                                                "flags": "not hidden",
                                                "exportId": 58941
                                            }
                                        ],
                                        "pagination": {
                                            "firstResult": 0,
                                            "maxResults": 50,
                                            "count": 3,
                                            "total": 3
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-template-attribute-alias": {
            "post": {
                "tags": [
                    "Export Template Attribute Alias"
                ],
                "summary": "Creates a new export template attribute alias.",
                "description": "An export template attribute alias is an alias of an export template attribute. Once created, it can be assigned to an export template attribute as an alias of the field. This endpoint allows the creation of an export template attribute alias.",
                "operationId": "export_field_alias_create",
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_field_alias_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 199
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 199
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 199
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "name": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field is missing."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "name": [
                                                            "This field is missing."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "name": [
                                                        "This field is missing."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "name": [
                                                    "This field is missing."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "get": {
                "tags": [
                    "Export Template Attribute Alias"
                ],
                "summary": "List all export template attribute aliases",
                "description": "An export template attribute alias is an alias of an export template attribute. Once created, it can be assigned to an export template attribute as an alias of the field. This endpoint retrieves a list of all export template attribute aliases.",
                "operationId": "export_field_aliases_list",
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "integer",
                                                        "example": 202
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name 2"
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "id": 202,
                                                    "name": "name 2"
                                                }
                                            },
                                            "example": [
                                                {
                                                    "id": 202,
                                                    "name": "name 2"
                                                },
                                                {
                                                    "id": 201,
                                                    "name": "name 1"
                                                }
                                            ]
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "id": 202,
                                                "name": "name 2"
                                            },
                                            {
                                                "id": 201,
                                                "name": "name 1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-template-attribute-aliases": {
            "post": {
                "tags": [
                    "Export Template Attribute Alias"
                ],
                "summary": "Creates a new export template attribute alias.",
                "description": "An export template attribute alias is an alias of an export template attribute. Once created, it can be assigned to an export template attribute as an alias of the field. This endpoint allows the creation of an export template attribute alias.",
                "operationId": "export_template_attribute_alias_create",
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_field_alias_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 199
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 199
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 199
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "name": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field is missing."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "name": [
                                                            "This field is missing."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "name": [
                                                        "This field is missing."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "name": [
                                                    "This field is missing."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "get": {
                "tags": [
                    "Export Template Attribute Alias"
                ],
                "summary": "List all export template attribute aliases",
                "description": "An export template attribute alias is an alias of an export template attribute. Once created, it can be assigned to an export template attribute as an alias of the field. This endpoint retrieves a list of all export template attribute aliases.",
                "operationId": "export_template_attribute_aliases_list",
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "integer",
                                                        "example": 202
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name 2"
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "id": 202,
                                                    "name": "name 2"
                                                }
                                            },
                                            "example": [
                                                {
                                                    "id": 202,
                                                    "name": "name 2"
                                                },
                                                {
                                                    "id": 201,
                                                    "name": "name 1"
                                                }
                                            ]
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "id": 202,
                                                "name": "name 2"
                                            },
                                            {
                                                "id": 201,
                                                "name": "name 1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{templateId}/attributes/{exportFieldId}/attribute-tags": {
            "post": {
                "tags": [
                    "Export Template Attribute Tag"
                ],
                "summary": "Create an export template attribute tag",
                "description": "An export template attribute tag is metadata of an export template attribute. This endpoint allows the creation of an export template attribute tag.",
                "operationId": "export_field_tag_create",
                "parameters": [
                    {
                        "name": "templateId",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "exportFieldId",
                        "in": "path",
                        "description": "Export Template Attribute id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_field_tag_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 1247744
                                                },
                                                "key": {
                                                    "type": "string",
                                                    "example": "some key"
                                                },
                                                "value": {
                                                    "type": "string",
                                                    "example": "some value"
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 1247744,
                                                "key": "some key",
                                                "value": "some value"
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 1247744,
                                            "key": "some key",
                                            "value": "some value"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "key": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field is missing."
                                                            ]
                                                        },
                                                        "value": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field is missing."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "key": [
                                                            "This field is missing."
                                                        ],
                                                        "value": [
                                                            "This field is missing."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "key": [
                                                        "This field is missing."
                                                    ],
                                                    "value": [
                                                        "This field is missing."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "key": [
                                                    "This field is missing."
                                                ],
                                                "value": [
                                                    "This field is missing."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "get": {
                "tags": [
                    "Export Template Attribute Tag"
                ],
                "summary": "Retrieve a list of all export template attribute tags of an export template attribute",
                "description": "An export template attribute tag is metadata of an export template attribute. This endpoint lists all export template attribute tags of an export template attribute.",
                "operationId": "export_field_tags_list",
                "parameters": [
                    {
                        "name": "templateId",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "exportFieldId",
                        "in": "path",
                        "description": "Export Template Attribute id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "integer",
                                                        "example": 1247758
                                                    },
                                                    "key": {
                                                        "type": "string",
                                                        "example": "classification_field_type"
                                                    },
                                                    "value": {
                                                        "type": "string",
                                                        "example": "Numeric"
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "id": 1247758,
                                                    "key": "classification_field_type",
                                                    "value": "Numeric"
                                                }
                                            },
                                            "example": [
                                                {
                                                    "id": 1247758,
                                                    "key": "classification_field_type",
                                                    "value": "Numeric"
                                                },
                                                {
                                                    "id": 1247759,
                                                    "key": "classification_field_sub_type",
                                                    "value": "details"
                                                }
                                            ]
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "id": 1247758,
                                                "key": "classification_field_type",
                                                "value": "Numeric"
                                            },
                                            {
                                                "id": 1247759,
                                                "key": "classification_field_sub_type",
                                                "value": "details"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{templateId}/attributes/{exportFieldId}/attribute-tags/{id}": {
            "get": {
                "tags": [
                    "Export Template Attribute Tag"
                ],
                "summary": "Retrieve a single export template attribute tag",
                "description": "An export template attribute tag is metadata of an export template attribute. This endpoint shows a single export template attribute tag.",
                "operationId": "export_field_tag_show",
                "parameters": [
                    {
                        "name": "templateId",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "exportFieldId",
                        "in": "path",
                        "description": "Export Template Tttribute id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Template Attribute Tag id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 1247774
                                                },
                                                "key": {
                                                    "type": "string",
                                                    "example": "classification_field_type"
                                                },
                                                "value": {
                                                    "type": "string",
                                                    "example": "Numeric"
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 1247774,
                                                "key": "classification_field_type",
                                                "value": "Numeric"
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 1247774,
                                            "key": "classification_field_type",
                                            "value": "Numeric"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export Template Attribute Tag with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Template Attribute Tag with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Template Attribute Tag with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "delete": {
                "tags": [
                    "Export Template Attribute Tag"
                ],
                "summary": "Delete an export template attribute tag",
                "description": "An export template attribute tag is metadata of an export template attribute. This endpoint allows the deletion of an export template attribute tag.",
                "operationId": "export_field_tag_delete",
                "parameters": [
                    {
                        "name": "templateId",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "exportFieldId",
                        "in": "path",
                        "description": "Export Template Attribute id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Template Attribute Tag id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "204": {
                        "description": "No Content"
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export Template Attribute Tag with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Template Attribute Tag with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Template Attribute Tag with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export/{exportId}/export-marketing": {
            "get": {
                "tags": [
                    "Export Marketing"
                ],
                "summary": "Retrieve an export marketing",
                "description": "Export marketing is the marketing information of an export. This endpoint shows an export marketing of an export.",
                "operationId": "export_marketing_show",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "description": "Export id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 40982
                                                },
                                                "export": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 59057
                                                        },
                                                        "unpublishedChanges": {
                                                            "type": "boolean"
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 59057,
                                                        "unpublishedChanges": true
                                                    }
                                                },
                                                "type": {
                                                    "type": "integer",
                                                    "nullable": true
                                                },
                                                "publish": {
                                                    "type": "boolean",
                                                    "nullable": true
                                                },
                                                "marketingTitle": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "websiteLink": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "landingPageLink": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "featured": {
                                                    "type": "boolean",
                                                    "nullable": true
                                                },
                                                "products": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "string"
                                                    },
                                                    "nullable": true
                                                },
                                                "description": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "priority": {
                                                    "type": "integer",
                                                    "example": 1
                                                },
                                                "helpLink": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "exportCategoryIds": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "string"
                                                    },
                                                    "example": [
                                                        "1",
                                                        "2",
                                                        "3"
                                                    ]
                                                },
                                                "exportCountryIds": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "string"
                                                    },
                                                    "nullable": true
                                                },
                                                "exportBrand": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer"
                                                        },
                                                        "name": {
                                                            "type": "string"
                                                        }
                                                    },
                                                    "type": "object",
                                                    "nullable": true
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 40982,
                                                "export": {
                                                    "id": 59057,
                                                    "unpublishedChanges": true
                                                },
                                                "type": 1,
                                                "publish": true,
                                                "marketingTitle": "Cool Title",
                                                "websiteLink": "https://www.website.com",
                                                "landingPageLink": "https://www.website.com/landing",
                                                "featured": false,
                                                "products": [
                                                    "shoes",
                                                    "clothes",
                                                    "hats"
                                                ],
                                                "description": "Very awesome marketing",
                                                "priority": 1,
                                                "helpLink": "1234",
                                                "exportCategoryIds": [
                                                    "1",
                                                    "2",
                                                    "3"
                                                ],
                                                "exportCountryIds": [
                                                    "DE",
                                                    "NL",
                                                    "BG"
                                                ],
                                                "exportBrand": {
                                                    "id": 2645,
                                                    "name": "brand name"
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 40982,
                                            "export": {
                                                "id": 59057,
                                                "unpublishedChanges": true
                                            },
                                            "type": 1,
                                            "publish": true,
                                            "marketingTitle": "Cool Title",
                                            "websiteLink": "https://www.website.com",
                                            "landingPageLink": "https://www.website.com/landing",
                                            "featured": false,
                                            "products": [
                                                "shoes",
                                                "clothes",
                                                "hats"
                                            ],
                                            "description": "Very awesome marketing",
                                            "priority": 1,
                                            "helpLink": "1234",
                                            "exportCategoryIds": [
                                                "1",
                                                "2",
                                                "3"
                                            ],
                                            "exportCountryIds": [
                                                "DE",
                                                "NL",
                                                "BG"
                                            ],
                                            "exportBrand": {
                                                "id": 2645,
                                                "name": "brand name"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "patch": {
                "tags": [
                    "Export Marketing"
                ],
                "summary": "Update an export marketing",
                "description": "Export marketing is the marketing information of an export. This endpoint allows the updating of an export marketing.",
                "operationId": "export_marketing_update",
                "parameters": [
                    {
                        "name": "exportId",
                        "in": "path",
                        "description": "Export id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_marketing_update_input"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 40996
                                                },
                                                "export": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 59071
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 59071
                                                    }
                                                },
                                                "type": {
                                                    "type": "integer",
                                                    "example": 2
                                                },
                                                "publish": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "marketingTitle": {
                                                    "type": "string",
                                                    "example": "A even cooler title"
                                                },
                                                "websiteLink": {
                                                    "type": "string",
                                                    "example": "https://www.example.com"
                                                },
                                                "landingPageLink": {
                                                    "type": "string",
                                                    "example": "https://www.example.com/welcome"
                                                },
                                                "featured": {
                                                    "type": "boolean",
                                                    "example": true
                                                },
                                                "products": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "string"
                                                    },
                                                    "example": [
                                                        "platform",
                                                        "travel",
                                                        "commerce"
                                                    ]
                                                },
                                                "description": {
                                                    "type": "string",
                                                    "example": "The export could be better"
                                                },
                                                "priority": {
                                                    "type": "integer",
                                                    "example": 6
                                                },
                                                "helpLink": {
                                                    "type": "string",
                                                    "example": "500"
                                                },
                                                "exportCategoryIds": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "integer"
                                                    },
                                                    "example": [
                                                        522
                                                    ]
                                                },
                                                "exportCountryIds": {
                                                    "type": "array",
                                                    "items": {
                                                        "type": "string"
                                                    },
                                                    "example": [
                                                        "NL"
                                                    ]
                                                },
                                                "exportBrand": {
                                                    "properties": {
                                                        "id": {
                                                            "type": "integer",
                                                            "example": 2653
                                                        },
                                                        "name": {
                                                            "type": "string",
                                                            "example": "nike"
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "id": 2653,
                                                        "name": "nike"
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 40996,
                                                "export": {
                                                    "id": 59071
                                                },
                                                "type": 2,
                                                "publish": true,
                                                "marketingTitle": "A even cooler title",
                                                "websiteLink": "https://www.example.com",
                                                "landingPageLink": "https://www.example.com/welcome",
                                                "featured": true,
                                                "products": [
                                                    "platform",
                                                    "travel",
                                                    "commerce"
                                                ],
                                                "description": "The export could be better",
                                                "priority": 6,
                                                "helpLink": "500",
                                                "exportCategoryIds": [
                                                    522
                                                ],
                                                "exportCountryIds": [
                                                    "NL"
                                                ],
                                                "exportBrand": {
                                                    "id": 2653,
                                                    "name": "nike"
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 40996,
                                            "export": {
                                                "id": 59071
                                            },
                                            "type": 2,
                                            "publish": true,
                                            "marketingTitle": "A even cooler title",
                                            "websiteLink": "https://www.example.com",
                                            "landingPageLink": "https://www.example.com/welcome",
                                            "featured": true,
                                            "products": [
                                                "platform",
                                                "travel",
                                                "commerce"
                                            ],
                                            "description": "The export could be better",
                                            "priority": 6,
                                            "helpLink": "500",
                                            "exportCategoryIds": [
                                                522
                                            ],
                                            "exportCountryIds": [
                                                "NL"
                                            ],
                                            "exportBrand": {
                                                "id": 2653,
                                                "name": "nike"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export Brand with id 99999 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Brand with id 99999 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Brand with id 99999 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{id}/metadata": {
            "get": {
                "tags": [
                    "Export Template Metadata"
                ],
                "summary": "Retrieve export template metadata",
                "description": "Export template metadata contains internal information about the channel including ownership, confidence level, and documentation links.",
                "operationId": "export_metadata_show",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "channelOwner": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "enum": [
                                                        "feature-team",
                                                        "dromund-kaas-team",
                                                        "channel-team",
                                                        "third-party",
                                                        "api-team"
                                                    ],
                                                    "example": "third-party"
                                                },
                                                "lastReviewedOn": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "2024-11-15T00:00:00+00:00"
                                                },
                                                "confidence": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "enum": [
                                                        "good-to-go",
                                                        "semi-confident",
                                                        "needs-checking"
                                                    ],
                                                    "example": "needs-checking"
                                                },
                                                "helpCenterLink": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "https://help.productsup.com/generic"
                                                },
                                                "internalDocLink": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "https://docs.internal.com/channel"
                                                },
                                                "specificationsLink": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "https://specs.productsup.com/channel"
                                                },
                                                "notes": {
                                                    "type": "string",
                                                    "nullable": true,
                                                    "example": "Third party integration requiring special attention"
                                                }
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 37195 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 37195 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 37195 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "put": {
                "tags": [
                    "Export Template Metadata"
                ],
                "summary": "Update export template metadata",
                "description": "Update internal metadata for an export template channel.",
                "operationId": "export_metadata_update",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_metadata_update_input"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "channelOwner": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "lastReviewedOn": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "confidence": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "helpCenterLink": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "internalDocLink": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "specificationsLink": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "notes": {
                                                    "type": "string",
                                                    "nullable": true
                                                }
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 99999 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 99999 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 99999 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "post": {
                "tags": [
                    "Export Template Metadata"
                ],
                "summary": "Create export template metadata",
                "description": "Create internal metadata for an export template channel.",
                "operationId": "export_metadata_create",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_metadata_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "channelOwner": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "lastReviewedOn": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "confidence": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "helpCenterLink": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "internalDocLink": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "specificationsLink": {
                                                    "type": "string",
                                                    "nullable": true
                                                },
                                                "notes": {
                                                    "type": "string",
                                                    "nullable": true
                                                }
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 99999 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 99999 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 99999 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-template-revisions": {
            "get": {
                "tags": [
                    "Export Template Revision"
                ],
                "summary": "Retrieve a list of export template revisions",
                "description": "An export template revision is a published version of an export template. This endpoint lists all export template revisions.",
                "operationId": "export_revisions_list",
                "parameters": [
                    {
                        "name": "fromDate",
                        "in": "query",
                        "description": "Only list revisions published from the provided date.",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "firstResult",
                        "in": "query",
                        "description": "starting item",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    },
                    {
                        "name": "maxResults",
                        "in": "query",
                        "description": "items per page",
                        "required": false,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "exportId": {
                                                        "type": "integer",
                                                        "example": 59084
                                                    },
                                                    "revisionId": {
                                                        "type": "string",
                                                        "example": "01977d43-24c7-7dec-b1f5-8e0c212bc3a6"
                                                    }
                                                },
                                                "type": "object",
                                                "example": {
                                                    "exportId": 59084,
                                                    "revisionId": "01977d43-24c7-7dec-b1f5-8e0c212bc3a6"
                                                }
                                            },
                                            "example": [
                                                {
                                                    "exportId": 59084,
                                                    "revisionId": "01977d43-24c7-7dec-b1f5-8e0c212bc3a6"
                                                },
                                                {
                                                    "exportId": 59083,
                                                    "revisionId": "01977d43-24bc-7d3f-8dc4-37f67b1c7216"
                                                }
                                            ]
                                        },
                                        "pagination": {
                                            "properties": {
                                                "firstResult": {
                                                    "type": "integer",
                                                    "example": 0,
                                                    "nullable": true
                                                },
                                                "maxResults": {
                                                    "type": "integer",
                                                    "example": 500
                                                },
                                                "count": {
                                                    "type": "integer",
                                                    "example": 2
                                                },
                                                "total": {
                                                    "type": "integer",
                                                    "example": 2
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "firstResult": 0,
                                                "maxResults": 500,
                                                "count": 2,
                                                "total": 2
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": [
                                            {
                                                "exportId": 59084,
                                                "revisionId": "01977d43-24c7-7dec-b1f5-8e0c212bc3a6"
                                            },
                                            {
                                                "exportId": 59083,
                                                "revisionId": "01977d43-24bc-7d3f-8dc4-37f67b1c7216"
                                            }
                                        ],
                                        "pagination": {
                                            "firstResult": 0,
                                            "maxResults": 500,
                                            "count": 2,
                                            "total": 2
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{id}/export-template-tags": {
            "post": {
                "tags": [
                    "Export Template Tag"
                ],
                "summary": "Create an export template tag",
                "description": "An export template tag is metadata of an export template. This endpoint allows the creation of an export template tag.",
                "operationId": "export_tag_create",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/export_tag_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "201": {
                        "description": "Created",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 56125
                                                },
                                                "key": {
                                                    "type": "string",
                                                    "example": "some key"
                                                },
                                                "value": {
                                                    "type": "string",
                                                    "example": "some value"
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 56125,
                                                "key": "some key",
                                                "value": "some value"
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 56125,
                                            "key": "some key",
                                            "value": "some value"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Request validation has encountered constraint violations."
                                                },
                                                "errors": {
                                                    "properties": {
                                                        "key": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "Invalid value provided. Expected type: string, actual type: null."
                                                            ]
                                                        },
                                                        "value": {
                                                            "type": "array",
                                                            "items": {
                                                                "type": "string"
                                                            },
                                                            "example": [
                                                                "This field is missing."
                                                            ]
                                                        }
                                                    },
                                                    "type": "object",
                                                    "example": {
                                                        "key": [
                                                            "Invalid value provided. Expected type: string, actual type: null."
                                                        ],
                                                        "value": [
                                                            "This field is missing."
                                                        ]
                                                    }
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Request validation has encountered constraint violations.",
                                                "errors": {
                                                    "key": [
                                                        "Invalid value provided. Expected type: string, actual type: null."
                                                    ],
                                                    "value": [
                                                        "This field is missing."
                                                    ]
                                                }
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Request validation has encountered constraint violations.",
                                            "errors": {
                                                "key": [
                                                    "Invalid value provided. Expected type: string, actual type: null."
                                                ],
                                                "value": [
                                                    "This field is missing."
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "get": {
                "tags": [
                    "Export Template Tag"
                ],
                "summary": "Retrieve a list of all export template tags of an export template",
                "description": "An export template tag is metadata of an export. This endpoint lists all export template tags of an export template.",
                "operationId": "export_tags_list",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {},
                                    "type": "object",
                                    "example": {
                                        "data": []
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export template with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export template with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export template with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V1/export-templates/{templateId}/export-template-tags/{id}": {
            "get": {
                "tags": [
                    "Export Template Tag"
                ],
                "summary": "Retrieve a single export template tag",
                "description": "An export template tag is metadata of an export template. This endpoint shows a single export template tag.",
                "operationId": "export_tag_show",
                "parameters": [
                    {
                        "name": "templateId",
                        "in": "path",
                        "description": "Export template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Template Tag id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "properties": {
                                                "id": {
                                                    "type": "integer",
                                                    "example": 56160
                                                },
                                                "key": {
                                                    "type": "string",
                                                    "example": "some key"
                                                },
                                                "value": {
                                                    "type": "string",
                                                    "example": "some value"
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "id": 56160,
                                                "key": "some key",
                                                "value": "some value"
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "data": {
                                            "id": 56160,
                                            "key": "some key",
                                            "value": "some value"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export Template Tag with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Template Tag with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Template Tag with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "delete": {
                "tags": [
                    "Export Template Tag"
                ],
                "summary": "Delete an export template tag",
                "description": "An export template tag is metadata of an export template. This endpoint allows the deletion of an export template tag.",
                "operationId": "export_tag_delete",
                "parameters": [
                    {
                        "name": "templateId",
                        "in": "path",
                        "description": "Export Template id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export Template Tag id.",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "204": {
                        "description": "No Content"
                    },
                    "404": {
                        "description": "Not Found",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Export TemplateTag with id 123 not found."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Export Tag with id 123 not found."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Export Tag with id 123 not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "errors": {
                                            "properties": {
                                                "message": {
                                                    "type": "string",
                                                    "example": "Resource access denied."
                                                }
                                            },
                                            "type": "object",
                                            "example": {
                                                "message": "Resource access denied."
                                            }
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "errors": {
                                            "message": "Resource access denied."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated": false,
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V2/export-templates/{id}": {
            "put": {
                "tags": [
                    "Export Template V2"
                ],
                "summary": "Replace export template (full replace)",
                "description": "Replaces an export template with full replace semantics: server state will match the payload exactly. Omitted attributes or analyzer tests are deleted. Attributes are matched by name (natural key). Analyzer tests are replaced per attribute (delete all, insert all). Executed asynchronously (inline in Phase 1). Returns 202 Accepted with Content-Location header pointing to the operation. If export template does not exist, returns 404 without creating an operation.",
                "operationId": "v2_export_template_replace",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template ID",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    }
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/v2_export_template_create_input"
                            }
                        }
                    }
                },
                "responses": {
                    "202": {
                        "description": "Accepted - Operation created. Poll GET /V2/operations/{operationId} for status and result.",
                        "headers": {
                            "Content-Location": {
                                "description": "URL of the created operation resource",
                                "schema": {
                                    "type": "string",
                                    "example": "/V2/operations/01980f10-5b04-7845-b0d5-66861c6cabb0"
                                }
                            }
                        },
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/v2_operation_accepted_response"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "Bad Request - Malformed JSON or structural validation failed. No operation is created.",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "oneOf": [
                                        {
                                            "$ref": "#/components/schemas/v2_invalid_payload_error"
                                        },
                                        {
                                            "$ref": "#/components/schemas/v2_validation_error"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found - Export template does not exist",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "code": {
                                            "type": "string",
                                            "example": "NOT_FOUND"
                                        },
                                        "message": {
                                            "type": "string",
                                            "example": "Export template with ID 12345 not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            },
            "delete": {
                "tags": [
                    "Export Template V2"
                ],
                "summary": "Delete export template (soft delete)",
                "description": "Marks the export template as deleted by setting soft_deleted to true. Executed asynchronously (inline in Phase 1). Returns 202 Accepted with Content-Location header pointing to the operation. If export template does not exist, returns 404 immediately without creating an operation.",
                "operationId": "v2_export_template_delete",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        },
                        "description": "Export template ID"
                    }
                ],
                "responses": {
                    "202": {
                        "description": "Accepted - Operation created. Poll GET /V2/operations/{operationId} for status and result.",
                        "headers": {
                            "Content-Location": {
                                "description": "URL of the operation resource",
                                "schema": {
                                    "type": "string",
                                    "example": "/V2/operations/01980f10-5b04-7845-b0d5-66861c6cabb0"
                                }
                            }
                        },
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/v2_operation_accepted_response"
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found - Export template does not exist or is already soft-deleted. No operation is created.",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "code": {
                                            "type": "string",
                                            "example": "NOT_FOUND"
                                        },
                                        "message": {
                                            "type": "string"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    }
                },
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        },
        "/V2/export-templates/{id}/sites": {
            "get": {
                "tags": [
                    "Export Template V2"
                ],
                "summary": "List sites using an export template",
                "description": "Returns a paginated list of site-export template connections. Each connection (site_channel_id) is returned as an individual row.",
                "operationId": "v2_export_template_sites_list",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "description": "Export template ID",
                        "required": true,
                        "schema": {
                            "type": "integer"
                        }
                    },
                    {
                        "name": "firstResult",
                        "in": "query",
                        "required": false,
                        "schema": {
                            "type": "integer",
                            "minimum": 0,
                            "default": 0
                        }
                    },
                    {
                        "name": "maxResults",
                        "in": "query",
                        "required": false,
                        "schema": {
                            "type": "integer",
                            "minimum": 1,
                            "default": 50
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "$ref": "#/components/schemas/v2_site_export_template_assignment"
                                            }
                                        },
                                        "pagination": {
                                            "$ref": "#/components/schemas/pagination"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Forbidden",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/error_response"
                                }
                            }
                        }
                    }
                },
                "security": [
                    {
                        "bearerAuth": []
                    }
                ]
            }
        }
    },
    "components": {
        "schemas": {
            "export_create_input": {
                "required": [
                    "name"
                ],
                "properties": {
                    "name": {
                        "description": "Name of the export. A non-unique value that can be up to 100 characters.",
                        "type": "string",
                        "example": "My cool export"
                    }
                },
                "type": "object",
                "example": {
                    "name": "My cool export"
                }
            },
            "v2_analyzer_test_template": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "string",
                        "description": "Unique template identifier",
                        "example": "length_check"
                    },
                    "name": {
                        "type": "string",
                        "description": "Human-readable template name",
                        "example": "Length Validation"
                    },
                    "description": {
                        "type": "string",
                        "description": "Template description explaining its purpose",
                        "example": "Validates text length with min/max bounds."
                    },
                    "deprecated": {
                        "type": "boolean",
                        "description": "Whether this template is deprecated and should not be used for new tests",
                        "example": false
                    },
                    "variables": {
                        "type": "object",
                        "description": "Configuration variables required by this template",
                        "additionalProperties": {
                            "type": "object"
                        },
                        "example": {
                            "value": {
                                "type": "integer",
                                "minimum": 0,
                                "description": "Length threshold value",
                                "required": true
                            },
                            "operator": {
                                "type": "string",
                                "enum": [
                                    ">",
                                    "<",
                                    ">=",
                                    "<=",
                                    "=",
                                    "!="
                                ],
                                "description": "Comparison operator",
                                "required": true
                            }
                        }
                    }
                }
            },
            "v2_analyzer_test_assignment_input": {
                "type": "object",
                "required": [
                    "templateId",
                    "configuration"
                ],
                "properties": {
                    "templateId": {
                        "type": "string",
                        "description": "Template identifier to assign",
                        "example": "length_check"
                    },
                    "configuration": {
                        "type": "object",
                        "description": "Template-specific configuration parameters. Schema varies by template.",
                        "additionalProperties": true,
                        "example": {
                            "value": 100,
                            "operator": ">"
                        }
                    },
                    "name": {
                        "type": "string",
                        "nullable": true,
                        "maxLength": 255,
                        "description": "Display name for this assignment",
                        "example": "Price must be positive"
                    },
                    "color": {
                        "type": "string",
                        "nullable": true,
                        "maxLength": 7,
                        "description": "Hex color code (e.g. #ff0000)",
                        "example": "#ff0000"
                    },
                    "caption": {
                        "type": "string",
                        "nullable": true,
                        "maxLength": 255,
                        "description": "Error caption shown when the test fails. Defaults to \"Invalid value\".",
                        "example": "Invalid price"
                    },
                    "group": {
                        "type": "string",
                        "nullable": true,
                        "maxLength": 30,
                        "description": "Grouping label for display purposes",
                        "example": "Pricing"
                    },
                    "hint": {
                        "type": "string",
                        "nullable": true,
                        "maxLength": 2000,
                        "description": "Hint text shown to the user when the test fails",
                        "example": "Check the price column for negative values"
                    },
                    "errorId": {
                        "type": "integer",
                        "nullable": true,
                        "description": "ID of the associated monitorable error from pds_error",
                        "example": 10059
                    },
                    "requiredColumns": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        },
                        "nullable": true,
                        "description": "List of column names required by this test",
                        "example": [
                            "price",
                            "currency"
                        ]
                    }
                }
            },
            "v2_analyzer_test_assignment_output": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer",
                        "description": "Assignment ID",
                        "example": 1
                    },
                    "attributeId": {
                        "type": "integer",
                        "description": "Attribute (export field) ID this test is assigned to",
                        "example": 123
                    },
                    "templateId": {
                        "type": "string",
                        "description": "Template identifier",
                        "example": "length_check"
                    },
                    "templateName": {
                        "type": "string",
                        "description": "Human-readable template name",
                        "example": "Length Validation"
                    },
                    "configuration": {
                        "type": "object",
                        "description": "Template configuration parameters",
                        "additionalProperties": true,
                        "example": {
                            "value": 100,
                            "operator": ">"
                        }
                    },
                    "createdAt": {
                        "type": "string",
                        "format": "date-time",
                        "description": "Assignment creation timestamp",
                        "example": "2024-06-10T14:00:00Z"
                    },
                    "updatedAt": {
                        "type": "string",
                        "format": "date-time",
                        "description": "Assignment last update timestamp",
                        "example": "2024-06-10T14:00:00Z"
                    },
                    "name": {
                        "type": "string",
                        "nullable": true,
                        "description": "Display name for this assignment",
                        "example": "Price must be positive"
                    },
                    "color": {
                        "type": "string",
                        "nullable": true,
                        "description": "Hex color code (e.g. #ff0000)",
                        "example": "#ff0000"
                    },
                    "caption": {
                        "type": "string",
                        "nullable": true,
                        "description": "Error caption shown when the test fails",
                        "example": "Invalid price"
                    },
                    "group": {
                        "type": "string",
                        "nullable": true,
                        "description": "Grouping label for display purposes",
                        "example": "Pricing"
                    },
                    "hint": {
                        "type": "string",
                        "nullable": true,
                        "description": "Hint text shown to the user when the test fails",
                        "example": "Check the price column for negative values"
                    },
                    "errorId": {
                        "type": "integer",
                        "nullable": true,
                        "description": "ID of the associated monitorable error from pds_error",
                        "example": 10059
                    },
                    "requiredColumns": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        },
                        "nullable": true,
                        "description": "List of column names required by this test",
                        "example": [
                            "price",
                            "currency"
                        ]
                    }
                }
            },
            "v2_export_template_create_input": {
                "type": "object",
                "required": [
                    "name"
                ],
                "properties": {
                    "name": {
                        "type": "string",
                        "description": "Name of the export template",
                        "example": "Google Shopping Feed"
                    },
                    "encoding": {
                        "type": "string",
                        "nullable": true,
                        "description": "Encoding for the export (e.g. UTF-8)",
                        "example": "UTF-8"
                    },
                    "tags": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "required": [
                                "key",
                                "value"
                            ],
                            "properties": {
                                "key": {
                                    "type": "string",
                                    "description": "Tag key",
                                    "example": "tag"
                                },
                                "value": {
                                    "type": "string",
                                    "description": "Tag value",
                                    "example": "google"
                                }
                            }
                        },
                        "description": "Export tags with key-value pairs"
                    },
                    "global": {
                        "type": "boolean",
                        "nullable": true,
                        "description": "Whether this is a global export"
                    },
                    "accountId": {
                        "type": "integer",
                        "nullable": true,
                        "description": "Account ID (populated from token if not provided)"
                    },
                    "projectId": {
                        "type": "integer",
                        "nullable": true,
                        "description": "Project ID"
                    },
                    "siteId": {
                        "type": "integer",
                        "nullable": true,
                        "description": "Site ID"
                    },
                    "attributes": {
                        "type": "array",
                        "items": {
                            "$ref": "#/components/schemas/v2_export_template_attribute_input"
                        },
                        "description": "Attributes (export fields) with optional analyzer tests"
                    },
                    "pseudo": {
                        "type": "boolean",
                        "nullable": true,
                        "description": "Whether this is a pseudo export"
                    },
                    "allowXml": {
                        "type": "boolean",
                        "nullable": true,
                        "description": "Whether XML is allowed"
                    },
                    "validDelimiter": {
                        "type": "string",
                        "nullable": true,
                        "description": "Allowed delimiters (e.g. TAB,COMMA,PIPE)"
                    },
                    "roiOptions": {
                        "type": "string",
                        "nullable": true,
                        "description": "ROI options"
                    },
                    "logoUrl": {
                        "type": "string",
                        "format": "uri",
                        "nullable": true,
                        "description": "URL of the channel logo"
                    },
                    "createDelta": {
                        "type": "boolean",
                        "nullable": true,
                        "description": "Whether to create delta export"
                    },
                    "deltaKeyUnique": {
                        "type": "boolean",
                        "nullable": true,
                        "description": "Whether delta key is unique"
                    },
                    "deltaNewFilename": {
                        "type": "string",
                        "nullable": true
                    },
                    "deltaChangedFilename": {
                        "type": "string",
                        "nullable": true
                    },
                    "deltaDeletedFilename": {
                        "type": "string",
                        "nullable": true
                    },
                    "deltaUnchangedFilename": {
                        "type": "string",
                        "nullable": true
                    },
                    "deltaSkippedFilename": {
                        "type": "string",
                        "nullable": true
                    },
                    "deltaSingleFile": {
                        "type": "boolean",
                        "nullable": true
                    },
                    "customClassName": {
                        "type": "string",
                        "nullable": true
                    },
                    "defaultFilename": {
                        "type": "string",
                        "nullable": true,
                        "description": "Default export filename",
                        "example": "pdsfeed.csv"
                    },
                    "exportType": {
                        "type": "object",
                        "nullable": true,
                        "description": "Export type (standard, main, sub, classification)",
                        "properties": {
                            "type": {
                                "type": "string",
                                "enum": [
                                    "standard",
                                    "main",
                                    "sub",
                                    "classification"
                                ]
                            },
                            "mainExportId": {
                                "type": "integer",
                                "nullable": true,
                                "description": "Required when type is sub"
                            }
                        }
                    },
                    "context": {
                        "type": "array",
                        "description": "Context items for channel template"
                    },
                    "exportMarketing": {
                        "type": "object",
                        "nullable": true,
                        "description": "Optional marketing settings (type, publish, marketingTitle, websiteLink, landingPageLink, featured, products, description, priority, helpLink, exportCategoryIds, exportCountryIds, exportBrandId)",
                        "properties": {
                            "type": {
                                "type": "integer",
                                "nullable": true
                            },
                            "publish": {
                                "type": "boolean",
                                "nullable": true
                            },
                            "marketingTitle": {
                                "type": "string",
                                "nullable": true
                            },
                            "websiteLink": {
                                "type": "string",
                                "nullable": true
                            },
                            "landingPageLink": {
                                "type": "string",
                                "nullable": true
                            },
                            "featured": {
                                "type": "boolean",
                                "nullable": true
                            },
                            "products": {
                                "type": "array",
                                "items": {
                                    "type": "string"
                                },
                                "nullable": true
                            },
                            "description": {
                                "type": "string",
                                "nullable": true
                            },
                            "priority": {
                                "type": "integer",
                                "nullable": true
                            },
                            "helpLink": {
                                "type": "string",
                                "nullable": true
                            },
                            "exportCategoryIds": {
                                "type": "array",
                                "items": {
                                    "type": "string"
                                },
                                "nullable": true
                            },
                            "exportCountryIds": {
                                "type": "array",
                                "items": {
                                    "type": "string"
                                },
                                "nullable": true
                            },
                            "exportBrandId": {
                                "type": "integer",
                                "nullable": true
                            }
                        }
                    },
                    "customFormFields": {
                        "type": "array",
                        "description": "Optional custom form fields",
                        "items": {
                            "type": "object",
                            "required": [
                                "name",
                                "caption",
                                "type",
                                "trigger",
                                "order"
                            ],
                            "properties": {
                                "name": {
                                    "type": "string"
                                },
                                "caption": {
                                    "type": "string"
                                },
                                "type": {
                                    "type": "string",
                                    "enum": [
                                        "text",
                                        "textarea",
                                        "select"
                                    ]
                                },
                                "placeholder": {
                                    "type": "string",
                                    "nullable": true
                                },
                                "data": {
                                    "type": "string",
                                    "nullable": true
                                },
                                "trigger": {
                                    "type": "string"
                                },
                                "order": {
                                    "type": "integer",
                                    "minimum": 0
                                }
                            }
                        }
                    },
                    "metadata": {
                        "type": "object",
                        "nullable": true,
                        "description": "Optional export metadata (channelOwner, lastReviewedOn, confidence, helpCenterLink, internalDocLink, specificationsLink, notes)",
                        "properties": {
                            "channelOwner": {
                                "type": "string",
                                "enum": [
                                    "feature-team",
                                    "dromund-kaas-team",
                                    "channel-team",
                                    "third-party",
                                    "api-team"
                                ],
                                "nullable": true
                            },
                            "lastReviewedOn": {
                                "type": "string",
                                "format": "date-time",
                                "nullable": true
                            },
                            "confidence": {
                                "type": "string",
                                "enum": [
                                    "good-to-go",
                                    "semi-confident",
                                    "needs-checking"
                                ],
                                "nullable": true
                            },
                            "helpCenterLink": {
                                "type": "string",
                                "format": "uri",
                                "nullable": true
                            },
                            "internalDocLink": {
                                "type": "string",
                                "format": "uri",
                                "nullable": true
                            },
                            "specificationsLink": {
                                "type": "string",
                                "format": "uri",
                                "nullable": true
                            },
                            "notes": {
                                "type": "string",
                                "nullable": true,
                                "maxLength": 10000
                            }
                        }
                    }
                }
            },
            "v2_export_template_attribute_input": {
                "type": "object",
                "required": [
                    "name"
                ],
                "properties": {
                    "name": {
                        "type": "string",
                        "description": "Unique field name within the export template",
                        "example": "title"
                    },
                    "alias": {
                        "type": "string",
                        "description": "Optional alias for the field",
                        "example": "product_title"
                    },
                    "tags": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "required": [
                                "key",
                                "value"
                            ],
                            "properties": {
                                "key": {
                                    "type": "string",
                                    "description": "Tag key"
                                },
                                "value": {
                                    "type": "string",
                                    "description": "Tag value"
                                }
                            }
                        },
                        "description": "Field tags (key-value pairs)"
                    },
                    "analyzerTests": {
                        "type": "array",
                        "items": {
                            "$ref": "#/components/schemas/v2_analyzer_test_assignment_input"
                        },
                        "description": "Analyzer test assignments for this attribute"
                    },
                    "mandatory": {
                        "type": "boolean",
                        "nullable": true,
                        "description": "Whether this field is mandatory"
                    },
                    "type": {
                        "description": "Attribute type. When set, takes precedence over mandatory boolean. Use 'conditionally_mandatory' with conditions to define conditional requirements.",
                        "type": "string",
                        "enum": [
                            "mandatory",
                            "conditionally_mandatory",
                            "optional"
                        ],
                        "nullable": true,
                        "example": "optional"
                    },
                    "conditions": {
                        "description": "Conditions for conditionally mandatory attributes. Required when type is 'conditionally_mandatory', must be empty/absent otherwise.",
                        "type": "array",
                        "nullable": true,
                        "items": {
                            "type": "object",
                            "required": [
                                "triggerAttribute",
                                "triggerValue"
                            ],
                            "properties": {
                                "triggerAttribute": {
                                    "type": "string",
                                    "description": "The attribute name whose value activates this condition",
                                    "example": "batteries_required"
                                },
                                "triggerValue": {
                                    "type": "string",
                                    "description": "The value that triggers the requirement",
                                    "example": "true"
                                },
                                "operator": {
                                    "type": "string",
                                    "enum": [
                                        "equals",
                                        "not_equals"
                                    ],
                                    "description": "Comparison operator",
                                    "example": "equals"
                                },
                                "description": {
                                    "type": "string",
                                    "description": "Human-readable breadcrumb for where to find/set the trigger attribute",
                                    "example": "Product > Compliance > Batteries Required"
                                }
                            }
                        }
                    },
                    "flag": {
                        "type": "string",
                        "nullable": true
                    },
                    "isDefaultTrackingColumn": {
                        "type": "boolean",
                        "nullable": true
                    },
                    "isUniqueColumn": {
                        "type": "boolean",
                        "nullable": true
                    },
                    "order": {
                        "type": "integer",
                        "nullable": true
                    },
                    "deltaIgnore": {
                        "type": "boolean",
                        "nullable": true
                    },
                    "deltaKey": {
                        "type": "boolean",
                        "nullable": true
                    },
                    "automapIgnore": {
                        "type": "boolean",
                        "nullable": true
                    },
                    "description": {
                        "type": "string",
                        "nullable": true
                    },
                    "example": {
                        "type": "string",
                        "nullable": true
                    },
                    "format": {
                        "type": "string",
                        "nullable": true
                    }
                }
            },
            "v2_site_export_template_assignment": {
                "type": "object",
                "properties": {
                    "siteId": {
                        "type": "integer",
                        "description": "Platform site ID"
                    },
                    "exportTemplateId": {
                        "type": "integer",
                        "description": "Export template ID"
                    },
                    "name": {
                        "type": "string",
                        "description": "Name of the export in Platform (can be overridden per site)"
                    },
                    "logoUrl": {
                        "type": "string",
                        "nullable": true,
                        "description": "Export template logo URL"
                    },
                    "exportTemplateSiteId": {
                        "type": "integer",
                        "description": "Unique site-export template relationship ID"
                    }
                }
            },
            "v2_operation_accepted_response": {
                "type": "object",
                "properties": {
                    "operationId": {
                        "type": "string",
                        "format": "uuid",
                        "description": "ID of the created operation; use GET /V2/operations/{operationId} to poll for result",
                        "example": "01980f10-5b04-7845-b0d5-66861c6cabb0"
                    },
                    "status": {
                        "type": "string",
                        "enum": [
                            "queued",
                            "running",
                            "succeeded",
                            "failed"
                        ],
                        "description": "Operation status. For inline execution (Phase 1) this is typically succeeded or failed."
                    }
                }
            },
            "v2_operation": {
                "type": "object",
                "properties": {
                    "operationId": {
                        "type": "string",
                        "format": "uuid",
                        "description": "Operation UUID"
                    },
                    "status": {
                        "type": "string",
                        "enum": [
                            "queued",
                            "running",
                            "succeeded",
                            "failed"
                        ],
                        "description": "Current operation status"
                    },
                    "createdAt": {
                        "type": "string",
                        "format": "date-time",
                        "description": "When the operation was created"
                    },
                    "updatedAt": {
                        "type": "string",
                        "format": "date-time",
                        "description": "When the operation was last updated"
                    },
                    "result": {
                        "type": "object",
                        "description": "Present when status is succeeded",
                        "properties": {
                            "resourceId": {
                                "type": "integer",
                                "description": "ID of the created or affected resource"
                            }
                        }
                    },
                    "error": {
                        "$ref": "#/components/schemas/v2_operation_error",
                        "description": "Present when status is failed"
                    }
                }
            },
            "v2_operation_error": {
                "type": "object",
                "properties": {
                    "message": {
                        "type": "string",
                        "description": "Human-readable error message",
                        "example": "Export with id 123 not found."
                    }
                }
            },
            "v2_invalid_payload_error": {
                "type": "object",
                "properties": {
                    "message": {
                        "type": "string",
                        "example": "Invalid JSON payload"
                    }
                },
                "description": "Returned when request body is not valid JSON"
            },
            "v2_validation_error": {
                "type": "object",
                "properties": {
                    "errors": {
                        "type": "object",
                        "properties": {
                            "code": {
                                "type": "string",
                                "example": "VALIDATION_ERROR"
                            },
                            "message": {
                                "type": "string",
                                "example": "Request validation has encountered constraint violations."
                            },
                            "details": {
                                "type": "array",
                                "items": {
                                    "type": "object",
                                    "properties": {
                                        "path": {
                                            "type": "string"
                                        },
                                        "message": {
                                            "type": "string"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "description": "Returned when structural validation fails (e.g. missing required fields, invalid structure)"
            },
            "v2_operation_not_found_error": {
                "type": "object",
                "properties": {
                    "message": {
                        "type": "string",
                        "example": "Operation \"01980f10-5b04-7845-b0d5-66861c6cabb0\" not found"
                    }
                }
            },
            "error_response": {
                "type": "object",
                "properties": {
                    "errors": {
                        "type": "object",
                        "properties": {
                            "message": {
                                "type": "string",
                                "example": "Resource access denied."
                            }
                        }
                    }
                }
            },
            "validation_error_response": {
                "type": "object",
                "properties": {
                    "errors": {
                        "type": "object",
                        "properties": {
                            "message": {
                                "type": "string",
                                "example": "Request validation has encountered constraint violations."
                            },
                            "errors": {
                                "type": "object",
                                "additionalProperties": {
                                    "type": "array",
                                    "items": {
                                        "type": "string"
                                    }
                                },
                                "example": {
                                    "templateId": [
                                        "This field is missing."
                                    ],
                                    "configuration": [
                                        "This field is missing."
                                    ]
                                }
                            }
                        }
                    }
                }
            },
            "pagination": {
                "type": "object",
                "properties": {
                    "firstResult": {
                        "type": "integer",
                        "description": "Pagination offset (starting item)",
                        "example": 0
                    },
                    "maxResults": {
                        "type": "integer",
                        "description": "Maximum items per page",
                        "example": 50
                    },
                    "count": {
                        "type": "integer",
                        "description": "Number of items in current page",
                        "example": 5
                    },
                    "total": {
                        "type": "integer",
                        "description": "Total number of items",
                        "example": 5
                    }
                }
            },
            "export_update_input": {
                "properties": {
                    "name": {
                        "description": "Name of the export. It can be up to 255 characters.",
                        "type": "string",
                        "example": "Facebook Dynamic Ads"
                    },
                    "encoding": {
                        "description": "Encoding format for the export.",
                        "type": "string",
                        "nullable": true,
                        "example": "UTF-16"
                    },
                    "global": {
                        "description": "Determines if the export is globally accessible.",
                        "type": "boolean",
                        "nullable": true,
                        "example": false
                    },
                    "pseudo": {
                        "description": "Determines if this is a pseudo export.",
                        "type": "boolean",
                        "nullable": true,
                        "example": false
                    },
                    "allowXml": {
                        "description": "Determines if XML format is allowed.",
                        "type": "boolean",
                        "nullable": true,
                        "example": true
                    },
                    "validDelimiter": {
                        "description": "Valid delimiter for the export.",
                        "type": "string",
                        "nullable": true,
                        "example": "COMMA"
                    },
                    "roiOptions": {
                        "description": "ROI options for the export.",
                        "type": "string",
                        "nullable": true,
                        "example": "PAUSE"
                    },
                    "accountId": {
                        "description": "Account ID associated with the export.",
                        "type": "integer",
                        "nullable": true,
                        "example": 0
                    },
                    "projectId": {
                        "description": "Project ID associated with the export.",
                        "type": "integer",
                        "nullable": true,
                        "example": 0
                    },
                    "siteId": {
                        "description": "Site ID associated with the export.",
                        "type": "integer",
                        "nullable": true,
                        "example": 0
                    },
                    "logoUrl": {
                        "description": "URL for the export logo.",
                        "type": "string",
                        "nullable": true,
                        "example": "https://www.image.com/image.png"
                    },
                    "createDelta": {
                        "description": "Enables delta for this export.",
                        "type": "boolean",
                        "nullable": true,
                        "example": true
                    },
                    "deltaKeyUnique": {
                        "description": "Determines if delta key should be unique.",
                        "type": "boolean",
                        "nullable": true,
                        "example": true
                    },
                    "deltaNewFilename": {
                        "description": "Filename for new delta records.",
                        "type": "string",
                        "nullable": true,
                        "example": "newFile.csv"
                    },
                    "deltaChangedFilename": {
                        "description": "Filename for changed delta records.",
                        "type": "string",
                        "nullable": true,
                        "example": "changedFile.csv"
                    },
                    "deltaDeletedFilename": {
                        "description": "Filename for deleted delta records.",
                        "type": "string",
                        "nullable": true,
                        "example": "deletedFile.csv"
                    },
                    "deltaUnchangedFilename": {
                        "description": "Filename for unchanged delta records.",
                        "type": "string",
                        "nullable": true,
                        "example": "unchangedFile.csv"
                    },
                    "deltaSkippedFilename": {
                        "description": "Filename for skipped delta records.",
                        "type": "string",
                        "nullable": true,
                        "example": "skippedFile.csv"
                    },
                    "deltaSingleFile": {
                        "description": "Determines if delta should use a single file.",
                        "nullable": true,
                        "example": true
                    },
                    "customClassName": {
                        "description": "Custom class name for the export.",
                        "type": "string",
                        "nullable": true,
                        "example": "Blank"
                    },
                    "defaultFilename": {
                        "description": "Default filename for the export.",
                        "type": "string",
                        "nullable": true,
                        "example": "foo.csv"
                    },
                    "exportType": {
                        "description": "Export type configuration.",
                        "type": "object",
                        "properties": {
                            "type": {
                                "type": "string",
                                "example": "sub"
                            },
                            "mainExportId": {
                                "type": "integer",
                                "nullable": true,
                                "example": 321
                            }
                        }
                    },
                    "context": {
                        "description": "Context configuration with account, project, and site IDs.",
                        "type": "object",
                        "properties": {
                            "accountIds": {
                                "type": "array",
                                "items": {
                                    "type": "integer"
                                },
                                "example": [
                                    1000,
                                    2000
                                ]
                            },
                            "projectIds": {
                                "type": "array",
                                "items": {
                                    "type": "integer"
                                },
                                "example": [
                                    100,
                                    200
                                ]
                            },
                            "siteIds": {
                                "type": "array",
                                "items": {
                                    "type": "integer"
                                },
                                "example": [
                                    3000
                                ]
                            }
                        }
                    }
                },
                "type": "object",
                "example": {
                    "name": "a new export name 2",
                    "encoding": "UTF-16",
                    "pseudo": false,
                    "allowXml": true,
                    "validDelimiter": "COMMA",
                    "roiOptions": "PAUSE",
                    "logoUrl": "https://www.image.com/image.png",
                    "createDelta": true,
                    "deltaKeyUnique": true,
                    "deltaNewFilename": "newFile.csv",
                    "deltaChangedFilename": "changedFile.csv",
                    "deltaDeletedFilename": "deletedFile.csv",
                    "deltaUnchangedFilename": "unchangedFile.csv",
                    "deltaSkippedFilename": "skippedFile.csv",
                    "deltaSingleFile": true,
                    "customClassName": "Blank",
                    "defaultFilename": "foo.csv",
                    "exportType": {
                        "type": "sub",
                        "mainExportId": 321
                    },
                    "context": {
                        "accountIds": [
                            1000,
                            2000
                        ],
                        "projectIds": [
                            100,
                            200
                        ],
                        "siteIds": [
                            3000
                        ]
                    }
                }
            },
            "export_brand_create_input": {
                "properties": {
                    "name": {
                        "type": "string",
                        "example": "My brand"
                    }
                },
                "type": "object",
                "example": {
                    "name": "My brand"
                }
            },
            "export_custom_form_field_create_input": {
                "required": [
                    "name",
                    "caption",
                    "type"
                ],
                "properties": {
                    "name": {
                        "description": "Name of the custom form field element. It can be up to 255 characters.",
                        "type": "string",
                        "example": "type"
                    },
                    "caption": {
                        "description": "The text above the custom form field which describes what the field is. It can be up to 255 characters.",
                        "type": "string",
                        "example": "Type"
                    },
                    "type": {
                        "description": "The type of the custom form field. It can be one of the above types.",
                        "type": "string",
                        "enum": [
                            "text",
                            "textarea",
                            "select"
                        ],
                        "example": "select"
                    },
                    "placeholder": {
                        "description": "The placeholder that will be shown on the channel custom form field. It can be up to 255 characters.",
                        "type": "string",
                        "example": "example type"
                    },
                    "data": {
                        "description": "Used for specifying select options for custom form field of type select.",
                        "type": "string",
                        "example": "{'options':[{'value':'yes','caption':'yes'},{'value':'no','caption':'no'}]}"
                    },
                    "trigger": {
                        "description": "Specify an event name that will be triggered on submission of the custom form field. It can be up to 255 characters.",
                        "type": "string",
                        "example": "ADD_NAME_HEADER"
                    },
                    "order": {
                        "description": "The order in which the custom form fields will be displayed.",
                        "type": "integer",
                        "example": 1
                    }
                },
                "type": "object",
                "example": {
                    "name": "type",
                    "caption": "Type",
                    "type": "select",
                    "placeholder": "example type",
                    "data": "{'options':[{'value':'yes','caption':'yes'},{'value':'no','caption':'no'}]}",
                    "trigger": "ADD_NAME_HEADER",
                    "order": 1
                }
            },
            "export_custom_form_field_update_input": {
                "properties": {
                    "name": {
                        "description": "Name of the custom form field element. It can be up to 255 characters.",
                        "type": "string",
                        "example": "type"
                    },
                    "caption": {
                        "description": "The text above the custom form field which describes what the field is. It can be up to 255 characters.",
                        "type": "string",
                        "example": "Type"
                    },
                    "type": {
                        "description": "The type of the custom form field. It can be one of the above types.",
                        "type": "string",
                        "enum": [
                            "text",
                            "textarea",
                            "select"
                        ],
                        "example": "select"
                    },
                    "placeholder": {
                        "description": "The placeholder that will be shown on the channel custom form field. It can be up to 255 characters.",
                        "type": "string",
                        "example": "example type"
                    },
                    "data": {
                        "description": "Used for specifying select options for custom form field of type select.",
                        "type": "string",
                        "example": "{'options':[{'value':'yes','caption':'yes'},{'value':'no','caption':'no'}]}"
                    },
                    "trigger": {
                        "description": "Specify an event name that will be triggered on submission of the custom form field. It can be up to 255 characters.",
                        "type": "string",
                        "example": "ADD_NAME_HEADER"
                    },
                    "order": {
                        "description": "The order in which the custom form fields will be displayed.",
                        "type": "integer",
                        "example": 1
                    }
                },
                "type": "object",
                "example": {
                    "name": "type",
                    "caption": "Type",
                    "type": "select",
                    "placeholder": "example type",
                    "data": "{'options':[{'value':'yes','caption':'yes'},{'value':'no','caption':'no'}]}",
                    "trigger": "ADD_NAME_HEADER",
                    "order": 1
                }
            },
            "export_fields_bulk_create_input": {
                "properties": {
                    "entries": {
                        "type": "array",
                        "items": {
                            "properties": {
                                "requestKey": {
                                    "type": "string",
                                    "example": "1"
                                },
                                "exportField": {
                                    "properties": {
                                        "fieldName": {
                                            "type": "string",
                                            "example": "color"
                                        },
                                        "alias": {
                                            "type": "string",
                                            "example": "some alias"
                                        },
                                        "mandatory": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "flag": {
                                            "type": "string",
                                            "example": "colors"
                                        },
                                        "isDefaultTrackingColumn": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "isUniqueColumn": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "order": {
                                            "type": "integer",
                                            "example": 5
                                        },
                                        "deltaIgnore": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "deltaKey": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "automapIgnore": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "description": {
                                            "type": "string",
                                            "example": "some description"
                                        },
                                        "example": {
                                            "type": "string",
                                            "example": "some example"
                                        },
                                        "format": {
                                            "type": "string",
                                            "example": "String (Unicode Characters)"
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "fieldName": "color",
                                        "alias": "some alias",
                                        "mandatory": true,
                                        "flag": "colors",
                                        "isDefaultTrackingColumn": true,
                                        "isUniqueColumn": true,
                                        "order": 5,
                                        "deltaIgnore": true,
                                        "deltaKey": true,
                                        "automapIgnore": true,
                                        "description": "some description",
                                        "example": "some example",
                                        "format": "String (Unicode Characters)"
                                    }
                                }
                            },
                            "type": "object",
                            "example": {
                                "requestKey": "1",
                                "exportField": {
                                    "fieldName": "color",
                                    "alias": "some alias",
                                    "mandatory": true,
                                    "flag": "colors",
                                    "isDefaultTrackingColumn": true,
                                    "isUniqueColumn": true,
                                    "order": 5,
                                    "deltaIgnore": true,
                                    "deltaKey": true,
                                    "automapIgnore": true,
                                    "description": "some description",
                                    "example": "some example",
                                    "format": "String (Unicode Characters)"
                                }
                            }
                        },
                        "example": [
                            {
                                "requestKey": "1",
                                "exportField": {
                                    "fieldName": "color",
                                    "alias": "some alias",
                                    "mandatory": true,
                                    "flag": "colors",
                                    "isDefaultTrackingColumn": true,
                                    "isUniqueColumn": true,
                                    "order": 5,
                                    "deltaIgnore": true,
                                    "deltaKey": true,
                                    "automapIgnore": true,
                                    "description": "some description",
                                    "example": "some example",
                                    "format": "String (Unicode Characters)"
                                }
                            },
                            {
                                "requestKey": "2",
                                "exportField": {
                                    "fieldName": "brand",
                                    "mandatory": false,
                                    "order": 2
                                }
                            },
                            {
                                "requestKey": "3",
                                "exportField": {
                                    "fieldName": "size",
                                    "order": 3
                                }
                            }
                        ]
                    }
                },
                "type": "object",
                "example": {
                    "entries": [
                        {
                            "requestKey": "1",
                            "exportField": {
                                "fieldName": "color",
                                "alias": "some alias",
                                "mandatory": true,
                                "flag": "colors",
                                "isDefaultTrackingColumn": true,
                                "isUniqueColumn": true,
                                "order": 5,
                                "deltaIgnore": true,
                                "deltaKey": true,
                                "automapIgnore": true,
                                "description": "some description",
                                "example": "some example",
                                "format": "String (Unicode Characters)"
                            }
                        },
                        {
                            "requestKey": "2",
                            "exportField": {
                                "fieldName": "brand",
                                "mandatory": false,
                                "order": 2
                            }
                        },
                        {
                            "requestKey": "3",
                            "exportField": {
                                "fieldName": "size",
                                "order": 3
                            }
                        }
                    ]
                }
            },
            "export_fields_bulk_update_input": {
                "properties": {
                    "entries": {
                        "type": "array",
                        "items": {
                            "properties": {
                                "requestKey": {
                                    "type": "string",
                                    "example": "field1"
                                },
                                "exportField": {
                                    "properties": {
                                        "id": {
                                            "type": "integer",
                                            "example": 995817
                                        },
                                        "order": {
                                            "type": "integer",
                                            "example": 5
                                        },
                                        "alias": {
                                            "type": "string",
                                            "example": "Product Color"
                                        },
                                        "flag": {
                                            "type": "string",
                                            "example": "colors"
                                        },
                                        "isDefaultTrackingColumn": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "isUniqueColumn": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "deltaIgnore": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "deltaKey": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "automapIgnore": {
                                            "type": "boolean",
                                            "example": true
                                        },
                                        "description": {
                                            "type": "string",
                                            "example": "some description"
                                        },
                                        "example": {
                                            "type": "string",
                                            "example": "some example"
                                        },
                                        "format": {
                                            "type": "string",
                                            "example": "String (Unicode Characters)"
                                        }
                                    },
                                    "type": "object",
                                    "example": {
                                        "id": 995817,
                                        "order": 5,
                                        "alias": "Product Color",
                                        "flag": "colors",
                                        "isDefaultTrackingColumn": true,
                                        "isUniqueColumn": true,
                                        "deltaIgnore": true,
                                        "deltaKey": true,
                                        "automapIgnore": true,
                                        "description": "some description",
                                        "example": "some example",
                                        "format": "String (Unicode Characters)"
                                    }
                                }
                            },
                            "type": "object",
                            "example": {
                                "requestKey": "field1",
                                "exportField": {
                                    "id": 995817,
                                    "order": 5,
                                    "alias": "Product Color",
                                    "flag": "colors",
                                    "isDefaultTrackingColumn": true,
                                    "isUniqueColumn": true,
                                    "deltaIgnore": true,
                                    "deltaKey": true,
                                    "automapIgnore": true,
                                    "description": "some description",
                                    "example": "some example",
                                    "format": "String (Unicode Characters)"
                                }
                            }
                        },
                        "example": [
                            {
                                "requestKey": "field1",
                                "exportField": {
                                    "id": 995817,
                                    "order": 5,
                                    "alias": "Product Color",
                                    "flag": "colors",
                                    "isDefaultTrackingColumn": true,
                                    "isUniqueColumn": true,
                                    "deltaIgnore": true,
                                    "deltaKey": true,
                                    "automapIgnore": true,
                                    "description": "some description",
                                    "example": "some example",
                                    "format": "String (Unicode Characters)"
                                }
                            },
                            {
                                "requestKey": "field2",
                                "exportField": {
                                    "id": 995818,
                                    "order": 1,
                                    "mandatory": false
                                }
                            },
                            {
                                "requestKey": "field3",
                                "exportField": {
                                    "id": 995819,
                                    "order": 2,
                                    "description": "Product size information"
                                }
                            }
                        ]
                    }
                },
                "type": "object",
                "example": {
                    "entries": [
                        {
                            "requestKey": "field1",
                            "exportField": {
                                "id": 995817,
                                "order": 5,
                                "alias": "Product Color",
                                "flag": "colors",
                                "isDefaultTrackingColumn": true,
                                "isUniqueColumn": true,
                                "deltaIgnore": true,
                                "deltaKey": true,
                                "automapIgnore": true,
                                "description": "some description",
                                "example": "some example",
                                "format": "String (Unicode Characters)"
                            }
                        },
                        {
                            "requestKey": "field2",
                            "exportField": {
                                "id": 995818,
                                "order": 1,
                                "mandatory": false
                            }
                        },
                        {
                            "requestKey": "field3",
                            "exportField": {
                                "id": 995819,
                                "order": 2,
                                "description": "Product size information"
                            }
                        }
                    ]
                }
            },
            "export_field_create_input": {
                "required": [
                    "fieldName"
                ],
                "properties": {
                    "fieldName": {
                        "description": "Name of the export field which is unique within an export. It can be up to 255 characters",
                        "type": "string",
                        "example": "color"
                    },
                    "alias": {
                        "description": "Alias of the export field.",
                        "type": "string",
                        "example": "some alias"
                    },
                    "mandatory": {
                        "description": "Determines whether the field is mandatory. Product rows within the productsup platform cannot be export if mandatory fields are empty.",
                        "type": "boolean",
                        "example": true
                    },
                    "type": {
                        "description": "Attribute type. When set, takes precedence over mandatory boolean. Use 'conditionally_mandatory' with conditions to define conditional requirements.",
                        "type": "string",
                        "enum": [
                            "mandatory",
                            "conditionally_mandatory",
                            "optional"
                        ],
                        "nullable": true,
                        "example": "optional"
                    },
                    "conditions": {
                        "description": "Conditions for conditionally mandatory attributes. Required when type is 'conditionally_mandatory', must be empty/absent otherwise.",
                        "type": "array",
                        "nullable": true,
                        "items": {
                            "type": "object",
                            "required": [
                                "triggerAttribute",
                                "triggerValue"
                            ],
                            "properties": {
                                "triggerAttribute": {
                                    "type": "string",
                                    "description": "The attribute name whose value activates this condition",
                                    "example": "batteries_required"
                                },
                                "triggerValue": {
                                    "type": "string",
                                    "description": "The value that triggers the requirement",
                                    "example": "true"
                                },
                                "operator": {
                                    "type": "string",
                                    "enum": [
                                        "equals",
                                        "not_equals"
                                    ],
                                    "description": "Comparison operator",
                                    "example": "equals"
                                },
                                "description": {
                                    "type": "string",
                                    "description": "Human-readable breadcrumb for where to find/set the trigger attribute",
                                    "example": "Product > Compliance > Batteries Required"
                                }
                            }
                        }
                    },
                    "flag": {
                        "description": "",
                        "type": "string",
                        "example": "colors"
                    },
                    "isDefaultTrackingColumn": {
                        "description": "",
                        "type": "boolean",
                        "example": true
                    },
                    "isUniqueColumn": {
                        "description": "Determines whether the field should contain unique values.",
                        "type": "boolean",
                        "example": true
                    },
                    "order": {
                        "description": "The order in which the fields will be displayed. Fields can be re-arranged in the productsup platform.",
                        "type": "integer",
                        "example": 5
                    },
                    "deltaIgnore": {
                        "description": "Determines whether this field should be ignored by deltas.",
                        "type": "boolean",
                        "example": true
                    },
                    "deltaKey": {
                        "description": "Determines whether this field is used as a delta key.",
                        "type": "boolean",
                        "example": true
                    },
                    "automapIgnore": {
                        "description": "Determines whether automapping will ignore this field.",
                        "type": "boolean",
                        "example": true
                    },
                    "description": {
                        "description": "Description of the field. It can be up to 1000 characters.",
                        "type": "string",
                        "example": "some description"
                    },
                    "example": {
                        "description": "Example of the field. It can be up to 1000 characters.",
                        "type": "string",
                        "example": "some example"
                    },
                    "format": {
                        "description": "Format of the field. It can be up to 1000 characters.",
                        "type": "string",
                        "example": "String (Unicode Characters)"
                    }
                },
                "type": "object",
                "example": {
                    "fieldName": "color",
                    "alias": "some alias",
                    "mandatory": true,
                    "type": "optional",
                    "conditions": [],
                    "flag": "colors",
                    "isDefaultTrackingColumn": true,
                    "isUniqueColumn": true,
                    "order": 5,
                    "deltaIgnore": true,
                    "deltaKey": true,
                    "automapIgnore": true,
                    "description": "some description",
                    "example": "some example",
                    "format": "String (Unicode Characters)"
                }
            },
            "export_field_update_input": {
                "properties": {
                    "alias": {
                        "description": "Alias of the export field.",
                        "type": "string",
                        "nullable": true,
                        "example": "title"
                    },
                    "mandatory": {
                        "description": "Determines whether the field is mandatory. Product rows within the productsup platform cannot be export if mandatory fields are empty.",
                        "type": "boolean",
                        "nullable": true,
                        "example": true
                    },
                    "type": {
                        "description": "Attribute type. When set, takes precedence over mandatory boolean. Use 'conditionally_mandatory' with conditions to define conditional requirements.",
                        "type": "string",
                        "enum": [
                            "mandatory",
                            "conditionally_mandatory",
                            "optional"
                        ],
                        "nullable": true,
                        "example": "optional"
                    },
                    "conditions": {
                        "description": "Conditions for conditionally mandatory attributes. Required when type is 'conditionally_mandatory', must be empty/absent otherwise.",
                        "type": "array",
                        "nullable": true,
                        "items": {
                            "type": "object",
                            "required": [
                                "triggerAttribute",
                                "triggerValue"
                            ],
                            "properties": {
                                "triggerAttribute": {
                                    "type": "string",
                                    "description": "The attribute name whose value activates this condition",
                                    "example": "batteries_required"
                                },
                                "triggerValue": {
                                    "type": "string",
                                    "description": "The value that triggers the requirement",
                                    "example": "true"
                                },
                                "operator": {
                                    "type": "string",
                                    "enum": [
                                        "equals",
                                        "not_equals"
                                    ],
                                    "description": "Comparison operator",
                                    "example": "equals"
                                },
                                "description": {
                                    "type": "string",
                                    "description": "Human-readable breadcrumb for where to find/set the trigger attribute",
                                    "example": "Product > Compliance > Batteries Required"
                                }
                            }
                        }
                    },
                    "flag": {
                        "description": "Flag for the export field.",
                        "type": "string",
                        "nullable": true,
                        "example": "not hidden"
                    },
                    "isDefaultTrackingColumn": {
                        "description": "Determines if this is a default tracking column.",
                        "type": "boolean",
                        "nullable": true,
                        "example": true
                    },
                    "isUniqueColumn": {
                        "description": "Determines whether the field should contain unique values.",
                        "type": "boolean",
                        "nullable": true,
                        "example": true
                    },
                    "order": {
                        "description": "The order in which the fields will be displayed. Fields can be re-arranged in the productsup platform.",
                        "type": "integer",
                        "nullable": true,
                        "example": 10
                    },
                    "deltaIgnore": {
                        "description": "Determines whether this field should be ignored by deltas.",
                        "type": "boolean",
                        "nullable": true,
                        "example": true
                    },
                    "deltaKey": {
                        "description": "Determines whether this field is used as a delta key.",
                        "type": "boolean",
                        "nullable": true,
                        "example": true
                    },
                    "automapIgnore": {
                        "description": "Determines whether automapping will ignore this field.",
                        "type": "boolean",
                        "nullable": true,
                        "example": true
                    },
                    "description": {
                        "description": "Description of the field. It can be up to 1000 characters.",
                        "type": "string",
                        "nullable": true,
                        "example": "a new product title"
                    },
                    "example": {
                        "description": "Example of the field. It can be up to 1000 characters.",
                        "type": "string",
                        "nullable": true,
                        "example": "some example"
                    },
                    "format": {
                        "description": "Format of the field. It can be up to 1000 characters.",
                        "type": "string",
                        "nullable": true,
                        "example": "String (Unicode Characters)"
                    }
                },
                "type": "object",
                "example": {
                    "alias": "title",
                    "mandatory": true,
                    "type": "optional",
                    "conditions": [],
                    "flag": "not hidden",
                    "isDefaultTrackingColumn": true,
                    "isUniqueColumn": true,
                    "order": 10,
                    "deltaIgnore": true,
                    "deltaKey": true,
                    "automapIgnore": true,
                    "description": "a new product title",
                    "example": "some example",
                    "format": "String (Unicode Characters)"
                }
            },
            "export_field_alias_create_input": {
                "required": [
                    "name"
                ],
                "properties": {
                    "name": {
                        "description": "Name of the export export field alias. It can be up to 250 characters.",
                        "type": "string",
                        "example": "My field alias"
                    }
                },
                "type": "object",
                "example": {
                    "name": "My field alias"
                }
            },
            "export_field_tag_create_input": {
                "required": [
                    "key",
                    "value"
                ],
                "properties": {
                    "key": {
                        "description": "Metadata key that can be used for reference to the value. It can be up to 255 characters.",
                        "type": "string",
                        "example": "some key"
                    },
                    "value": {
                        "description": "Value of the metadata.",
                        "type": "string",
                        "example": "some value"
                    }
                },
                "type": "object",
                "example": {
                    "key": "some key",
                    "value": "some value"
                }
            },
            "export_marketing_update_input": {
                "properties": {
                    "type": {
                        "description": "The type of export marketing. It can be one of the above values.",
                        "type": "integer",
                        "enum": [
                            1,
                            2
                        ],
                        "example": 2
                    },
                    "publish": {
                        "description": "Determines whether the custom website will be published.",
                        "type": "boolean",
                        "example": true
                    },
                    "marketingTitle": {
                        "description": "Title of the export marketing. It can be up to 255 characters.",
                        "type": "string",
                        "example": "A even cooler title"
                    },
                    "websiteLink": {
                        "description": "Custom link to a website. It can be up to 255 characters.",
                        "type": "string",
                        "example": "https://www.example.com"
                    },
                    "landingPageLink": {
                        "description": "Landing page of the custom website. It can be up to 255 characters.",
                        "type": "string",
                        "example": "https://www.example.com/welcome"
                    },
                    "featured": {
                        "description": "Determines whether the custom website will be recommended.",
                        "type": "boolean",
                        "example": true
                    },
                    "products": {
                        "description": "List of product types for the export marketing. It can be one of the above values.",
                        "type": "array",
                        "items": {
                            "type": "string",
                            "enum": [
                                "commerce",
                                "platform",
                                "travel",
                                "data_pipe"
                            ]
                        },
                        "example": [
                            "platform",
                            "travel",
                            "commerce"
                        ]
                    },
                    "description": {
                        "description": "Description of the export marketing.",
                        "type": "string",
                        "example": "The export could be better"
                    },
                    "priority": {
                        "type": "integer",
                        "example": 6
                    },
                    "helpLink": {
                        "type": "string",
                        "example": "500"
                    },
                    "exportCategoryIds": {
                        "description": "List of category ids for the export marketing.",
                        "type": "array",
                        "items": {
                            "type": "integer"
                        },
                        "example": [
                            522
                        ]
                    },
                    "exportCountryIds": {
                        "description": "List of country codes for the export marketing.",
                        "type": "array",
                        "items": {
                            "type": "string"
                        },
                        "example": [
                            "NL"
                        ]
                    },
                    "exportBrandId": {
                        "description": "Brand of the export marketing.",
                        "type": "integer",
                        "example": 2653
                    }
                },
                "type": "object",
                "example": {
                    "type": 2,
                    "publish": true,
                    "marketingTitle": "A even cooler title",
                    "websiteLink": "https://www.example.com",
                    "landingPageLink": "https://www.example.com/welcome",
                    "featured": true,
                    "products": [
                        "platform",
                        "travel",
                        "commerce"
                    ],
                    "description": "The export could be better",
                    "priority": 6,
                    "helpLink": "500",
                    "exportCategoryIds": [
                        522
                    ],
                    "exportCountryIds": [
                        "NL"
                    ],
                    "exportBrandId": 2653
                }
            },
            "export_tag_create_input": {
                "required": [
                    "key",
                    "value"
                ],
                "properties": {
                    "key": {
                        "description": "Metadata key that can be used for reference to the value. It can be up to 255 characters.",
                        "type": "string",
                        "example": "some key"
                    },
                    "value": {
                        "description": "Value of the metadata.",
                        "type": "string",
                        "example": "some value"
                    }
                },
                "type": "object",
                "example": {
                    "key": "some key",
                    "value": "some value"
                }
            },
            "export_metadata_create_input": {
                "properties": {
                    "channelOwner": {
                        "description": "The owner of the channel.",
                        "type": "string",
                        "nullable": true,
                        "enum": [
                            "feature-team",
                            "dromund-kaas-team",
                            "channel-team",
                            "third-party",
                            "api-team"
                        ],
                        "example": "third-party"
                    },
                    "confidence": {
                        "description": "Confidence level in the channel.",
                        "type": "string",
                        "nullable": true,
                        "enum": [
                            "good-to-go",
                            "semi-confident",
                            "needs-checking"
                        ],
                        "example": "needs-checking"
                    },
                    "lastReviewedOn": {
                        "description": "Date when the channel was last reviewed (ISO 8601 format: YYYY-MM-DDTHH:MM:SS+00:00).",
                        "type": "string",
                        "nullable": true,
                        "example": "2024-11-15T00:00:00+00:00"
                    },
                    "helpCenterLink": {
                        "description": "URL to help center documentation.",
                        "type": "string",
                        "nullable": true,
                        "example": "https://help.productsup.com/generic"
                    },
                    "internalDocLink": {
                        "description": "URL to internal documentation.",
                        "type": "string",
                        "nullable": true,
                        "example": "https://docs.internal.com/channel"
                    },
                    "specificationsLink": {
                        "description": "URL to product specifications documentation.",
                        "type": "string",
                        "nullable": true,
                        "example": "https://specs.productsup.com/channel"
                    },
                    "notes": {
                        "description": "Additional notes about the channel.",
                        "type": "string",
                        "nullable": true,
                        "example": "Third party integration requiring special attention"
                    }
                },
                "type": "object",
                "example": {
                    "channelOwner": "third-party",
                    "confidence": "needs-checking",
                    "lastReviewedOn": "2024-11-15T00:00:00+00:00",
                    "helpCenterLink": "https://help.productsup.com/generic",
                    "internalDocLink": "https://docs.internal.com/channel",
                    "specificationsLink": "https://specs.productsup.com/channel",
                    "notes": "Third party integration requiring special attention"
                }
            },
            "export_metadata_update_input": {
                "properties": {
                    "channelOwner": {
                        "description": "The owner of the channel.",
                        "type": "string",
                        "nullable": true,
                        "enum": [
                            "feature-team",
                            "dromund-kaas-team",
                            "channel-team",
                            "third-party",
                            "api-team"
                        ],
                        "example": "api-team"
                    },
                    "confidence": {
                        "description": "Confidence level in the channel.",
                        "type": "string",
                        "nullable": true,
                        "enum": [
                            "good-to-go",
                            "semi-confident",
                            "needs-checking"
                        ],
                        "example": "good-to-go"
                    },
                    "lastReviewedOn": {
                        "description": "Date when the channel was last reviewed (ISO 8601 format: YYYY-MM-DDTHH:MM:SS+00:00).",
                        "type": "string",
                        "nullable": true,
                        "example": "2024-12-01T00:00:00+00:00"
                    },
                    "helpCenterLink": {
                        "description": "URL to help center documentation.",
                        "type": "string",
                        "nullable": true,
                        "example": "https://help.productsup.com/updated"
                    },
                    "internalDocLink": {
                        "description": "URL to internal documentation.",
                        "type": "string",
                        "nullable": true,
                        "example": "https://docs.internal.com/channel/updated"
                    },
                    "specificationsLink": {
                        "description": "URL to product specifications documentation.",
                        "type": "string",
                        "nullable": true,
                        "example": "https://specs.productsup.com/channel/updated"
                    },
                    "notes": {
                        "description": "Additional notes about the channel.",
                        "type": "string",
                        "nullable": true,
                        "example": "Updated notes with additional information"
                    }
                },
                "type": "object",
                "example": {
                    "channelOwner": "api-team",
                    "confidence": "good-to-go",
                    "lastReviewedOn": "2024-12-01T00:00:00+00:00",
                    "helpCenterLink": "https://help.productsup.com/updated",
                    "internalDocLink": "https://docs.internal.com/channel/updated",
                    "specificationsLink": "https://specs.productsup.com/channel/updated",
                    "notes": "Updated notes with additional information"
                }
            }
        },
        "securitySchemes": {
            "bearerAuth": {
                "type": "http",
                "scheme": "bearer",
                "bearerFormat": "JWT",
                "description": "Productsup Keycloak JWT bearer token."
            }
        }
    },
    "tags": [
        {
            "name": "Export Template",
            "description": "Export Template"
        },
        {
            "name": "Analyzer Tests",
            "description": "Template-based validation system for export attributes."
        }
    ],
    "servers": [
        {
            "url": "https://export-template-api.productsup.com",
            "description": "Production"
        }
    ]
}