South Connectors

Create south connector

Creates a new south connector with the provided configuration

post/api/south

Query parameters

duplicatestring required

Request body

OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR

Example request

{
  "name": "Production Data Files",
  "type": "folder-scanner",
  "description": "Scans production data CSV files",
  "enabled": true,
  "items": [
    {
      "enabled": true,
      "name": "Temperature Logs",
      "scanModeId": "periodic-5min",
      "groupId": "group-123",
      "groupName": "Production Line A",
      "syncWithGroup": true,
      "maxReadInterval": 3600,
      "readDelay": 200,
      "startTimeOffset": -1000
    }
  ],
  "groups": [
    {
      "standardSettings": {
        "scanModeId": "periodic-5min",
        "name": "Production Line A"
      },
      "historySettings": {
        "readDelay": 200,
        "maxReadInterval": 3600,
        "startTimeOffset": -1000
      }
    }
  ]
}

Response

Created

OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR

Example response

{
  "id": "entity123",
  "createdBy": {
    "id": "abc123",
    "friendlyName": "John Doe (john.doe)"
  },
  "updatedBy": {
    "id": "abc123",
    "friendlyName": "John Doe (john.doe)"
  },
  "createdAt": "2023-10-31T12:34:56.789Z",
  "updatedAt": "2023-10-31T12:34:56.789Z",
  "name": "Production Data Files",
  "type": "folder-scanner",
  "description": "Scans production data CSV files",
  "enabled": true,
  "items": [
    {
      "id": "entity123",
      "createdBy": {
        "id": "abc123",
        "friendlyName": "John Doe (john.doe)"
      },
      "updatedBy": {
        "id": "abc123",
        "friendlyName": "John Doe (john.doe)"
      },
      "createdAt": "2023-10-31T12:34:56.789Z",
      "updatedAt": "2023-10-31T12:34:56.789Z",
      "name": "Temperature Logs",
      "enabled": true,
      "scanMode": {
        "id": "entity123",
        "createdBy": {
          "id": "abc123",
          "friendlyName": "John Doe (john.doe)"
        },
        "updatedBy": {
          "id": "abc123",
          "friendlyName": "John Doe (john.doe)"
        },
        "createdAt": "2023-10-31T12:34:56.789Z",
        "updatedAt": "2023-10-31T12:34:56.789Z",
        "name": "Daily Backup Scan",
        "description": "Scans for new backup data every day at midnight",
        "cron": "0 0 * * *"
      },
      "group": {
        "id": "entity123",
        "createdBy": {
          "id": "abc123",
          "friendlyName": "John Doe (john.doe)"
        },
        "updatedBy": {
          "id": "abc123",
          "friendlyName": "John Doe (john.doe)"
        },
        "createdAt": "2023-10-31T12:34:56.789Z",
        "updatedAt": "2023-10-31T12:34:56.789Z",
        "standardSettings": {
          "scanMode": {
            "id": "entity123",
            "createdBy": {
              "id": "abc123",
              "friendlyName": "John Doe (john.doe)"
            },
            "updatedBy": {
              "id": "abc123",
              "friendlyName": "John Doe (john.doe)"
            },
            "createdAt": "2023-10-31T12:34:56.789Z",
            "updatedAt": "2023-10-31T12:34:56.789Z",
            "name": "Daily Backup Scan",
            "description": "Scans for new backup data every day at midnight",
            "cron": "0 0 * * *"
          },
          "name": "Production Line A"
        },
        "historySettings": {
          "readDelay": 200,
          "maxReadInterval": 3600,
          "startTimeOffset": -1000
        }
      },
      "syncWithGroup": true,
      "maxReadInterval": 3600,
      "readDelay": 200,
      "startTimeOffset": -1000
    }
  ],
  "groups": [
    {
      "id": "entity123",
      "createdBy": {
        "id": "abc123",
        "friendlyName": "John Doe (john.doe)"
      },
      "updatedBy": {
        "id": "abc123",
        "friendlyName": "John Doe (john.doe)"
      },
      "createdAt": "2023-10-31T12:34:56.789Z",
      "updatedAt": "2023-10-31T12:34:56.789Z",
      "standardSettings": {
        "scanMode": {
          "id": "entity123",
          "createdBy": {
            "id": "abc123",
            "friendlyName": "John Doe (john.doe)"
          },
          "updatedBy": {
            "id": "abc123",
            "friendlyName": "John Doe (john.doe)"
          },
          "createdAt": "2023-10-31T12:34:56.789Z",
          "updatedAt": "2023-10-31T12:34:56.789Z",
          "name": "Daily Backup Scan",
          "description": "Scans for new backup data every day at midnight",
          "cron": "0 0 * * *"
        },
        "name": "Production Line A"
      },
      "historySettings": {
        "readDelay": 200,
        "maxReadInterval": 3600,
        "startTimeOffset": -1000
      }
    }
  ]
}

Changes

Changed in 43 of the 73 revisions of this API.366521073373

  • 87fa588c6b1b22See the full diff
    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/settings/retryInterval

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/settings/retryInterval

      new-required-request-property

    • added the required property anyOf[SouthConnectorFTPDTO]/settings/retryInterval to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/settings/retryInterval to the response with the 201 status

      response-required-property-added

  • 9a6250881fa716336171See the full diff
    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/settings/maxParallelRun

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/overlap

      request-property-removed

    • added the new optional request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/domain

      new-optional-request-property

    • added the new optional request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/password

      new-optional-request-property

    • added the new optional request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/username

      new-optional-request-property

    • added SouthConnectorInfluxDBCommandDTO to the request body anyOf list

      request-body-any-of-added

    • added SouthConnectorInfluxDBDTO to the response body anyOf list for the response status 201

      response-body-any-of-added

    • added the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/domain to the response with the 201 status

      response-optional-property-added

    • added the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/password to the response with the 201 status

      response-optional-property-added

    • added the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/username to the response with the 201 status

      response-optional-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/settings/maxParallelRun to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • ea1c80cb9c6919911455See the full diff
    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/overlap

      new-required-request-property

    • removed SouthConnectorInfluxDBCommandDTO from the request body anyOf list

      request-body-any-of-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/domain

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/password

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/username

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/domain from the response with the 201 status

      response-optional-property-removed

    • removed the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/password from the response with the 201 status

      response-optional-property-removed

    • removed the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/username from the response with the 201 status

      response-optional-property-removed

    • removed SouthConnectorInfluxDBDTO from the response body anyOf list for the response status 201

      response-body-any-of-removed

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    This revision also has 29 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 6a232346b15816236170See the full diff
    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/overlap

      request-property-removed

    • added the new optional request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/domain

      new-optional-request-property

    • added the new optional request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/password

      new-optional-request-property

    • added the new optional request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/username

      new-optional-request-property

    • added SouthConnectorInfluxDBCommandDTO to the request body anyOf list

      request-body-any-of-added

    • added SouthConnectorInfluxDBDTO to the response body anyOf list for the response status 201

      response-body-any-of-added

    • added the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/domain to the response with the 201 status

      response-optional-property-added

    • added the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/password to the response with the 201 status

      response-optional-property-added

    • added the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/username to the response with the 201 status

      response-optional-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

  • 57cbe043ec5a19911455See the full diff
    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/overlap

      new-required-request-property

    • removed SouthConnectorInfluxDBCommandDTO from the request body anyOf list

      request-body-any-of-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/domain

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/password

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/username

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/domain from the response with the 201 status

      response-optional-property-removed

    • removed the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/password from the response with the 201 status

      response-optional-property-removed

    • removed the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/username from the response with the 201 status

      response-optional-property-removed

    • removed SouthConnectorInfluxDBDTO from the response body anyOf list for the response status 201

      response-body-any-of-removed

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    This revision also has 23 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 4c50d4a73f6616236170See the full diff
    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/overlap

      request-property-removed

    • added the new optional request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/domain

      new-optional-request-property

    • added the new optional request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/password

      new-optional-request-property

    • added the new optional request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/username

      new-optional-request-property

    • added SouthConnectorInfluxDBCommandDTO to the request body anyOf list

      request-body-any-of-added

    • added SouthConnectorInfluxDBDTO to the response body anyOf list for the response status 201

      response-body-any-of-added

    • added the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/domain to the response with the 201 status

      response-optional-property-added

    • added the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/password to the response with the 201 status

      response-optional-property-added

    • added the optional property anyOf[SouthConnectorFolderScannerDTO]/settings/username to the response with the 201 status

      response-optional-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

  • a460443e789e19910855See the full diff
    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/overlap

      new-required-request-property

    • removed SouthConnectorInfluxDBCommandDTO from the request body anyOf list

      request-body-any-of-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed SouthConnectorInfluxDBDTO from the response body anyOf list for the response status 201

      response-body-any-of-removed

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    This revision also has 23 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • c5a35475739f13338114See the full diff
    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorInfluxDBCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorInfluxDBCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorInfluxDBCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorInfluxDBCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/startTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/endTimeOffset

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/startTimeOffset

      new-required-request-property

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorInfluxDBDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorInfluxDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorInfluxDBDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/overlap from the response with the 201 status

      response-required-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorInfluxDBCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorInfluxDBCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/overlap

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/overlap

      request-property-removed

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorInfluxDBDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorInfluxDBDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorInfluxDBDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorInfluxDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorInfluxDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorInfluxDBDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/startTimeOffset to the response with the 201 status

      response-required-property-added

  • ea736a81a9313656See the full diff
    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/recoveryStrategy

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/recoveryStrategy

      new-required-request-property

    • added SouthConnectorInfluxDBCommandDTO to the request body anyOf list

      request-body-any-of-added

    • added SouthConnectorInfluxDBDTO to the response body anyOf list for the response status 201

      response-body-any-of-added

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/recoveryStrategy to the response with the 201 status

      response-required-property-added

  • 2c78cb2da64720211155See the full diff
    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorADSCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFTPCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorModbusCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorODBCCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOracleCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorRESTCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/overlap

      new-required-request-property

    • added the new required request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/overlap

      new-required-request-property

    • removed SouthConnectorInfluxDBCommandDTO from the request body anyOf list

      request-body-any-of-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorADSDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFTPDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/settings/domain from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/settings/password from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorFolderScannerDTO]/settings/username from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMQTTDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMSSQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorModbusDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorMySQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorODBCDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOLEDBDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOPCUADTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOracleDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorRESTDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSFTPDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/endTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/recoveryStrategy from the response with the 201 status

      response-required-property-removed

    • removed the required property anyOf[SouthConnectorSQLiteDTO]/items/items/startTimeOffset from the response with the 201 status

      response-required-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorADSCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFTPCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/domain

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/password

      request-property-removed

    • removed the request property anyOf[SouthConnectorFolderScannerCommandDTO]/settings/username

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMQTTCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMSSQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorModbusCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorMySQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorODBCCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOIAnalyticsCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOLEDBCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOPCUACommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOracleCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorOsisoftPICommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorPostgreSQLCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorRESTCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSFTPCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/groups/items/historySettings/startTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/endTimeOffset

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/recoveryStrategy

      request-property-removed

    • removed the request property anyOf[SouthConnectorSQLiteCommandDTO]/items/items/startTimeOffset

      request-property-removed

    • removed SouthConnectorInfluxDBDTO from the response body anyOf list for the response status 201

      response-body-any-of-removed

    • added the required property anyOf[SouthConnectorADSDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorADSDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFTPDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorFolderScannerDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMQTTDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMSSQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorModbusDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorMySQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorODBCDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOIAnalyticsDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOLEDBDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOPCUADTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOracleDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorOsisoftPIDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorPostgreSQLDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorRESTDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSFTPDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/groups/items/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/group/allOf[SouthItemGroupDTO]/historySettings/overlap to the response with the 201 status

      response-required-property-added

    • added the required property anyOf[SouthConnectorSQLiteDTO]/items/items/overlap to the response with the 201 status

      response-required-property-added

    This revision also has 23 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog