Transformers

Create transformer

Creates a new data transformer with the provided configuration

post/api/transformers

Request body

type'custom' required

The type of the transformer (always 'custom' for this interface).

inputTypestring required

The input data type that the transformer accepts.

outputTypestring required

The output data type that the transformer produces.

namestring required

The name of the custom transformer.

descriptionstring required

A description of what the custom transformer does.

customCodestring required

The custom JavaScript code that implements the transformation logic.

languagestring required
timeoutnumber double required

The maximum execution time for the custom code in milliseconds.

Example request

{
  "inputType": "string",
  "outputType": "number",
  "name": "String to Number",
  "description": "Converts string input to numeric output",
  "customCode": "function transform(input) { return parseFloat(input); }",
  "customManifest": {
    "key": "serverUrl",
    "translationKey": "connection.serverUrl",
    "validators": [
      {
        "arguments": []
      }
    ],
    "attributes": [
      {
        "key": "serverUrl",
        "translationKey": "connection.serverUrl",
        "validators": [
          {
            "arguments": []
          }
        ],
        "displayProperties": {
          "row": 1,
          "columns": 6,
          "displayInViewMode": true
        },
        "defaultValue": "oibus-client"
      }
    ],
    "enablingConditions": [
      {
        "targetPathFromRoot": "protocol",
        "referralPathFromRoot": "connection.type",
        "values": [
          "MQTT"
        ],
        "operator": "EQUALS"
      }
    ],
    "displayProperties": {
      "visible": true,
      "wrapInBox": true
    }
  },
  "timeout": 2000
}

Response

Transformer created successfully

idstring required

The unique identifier of the transformer.

type'custom' required

The type of the transformer (always 'custom' for this interface).

inputTypestring required
outputTypestring required
namestring required

The name of the custom transformer.

descriptionstring required

A description of what the custom transformer does.

customCodestring required

The custom JavaScript code that implements the transformation logic.

languagestring required
timeoutnumber double required

The maximum execution time for the custom code in milliseconds.

createdAtstring required

Represents an instant in time as an ISO 8601 string.

updatedAtstring required

Represents an instant in time as an ISO 8601 string.

Example response

{
  "id": "transformer123",
  "manifest": {
    "key": "serverUrl",
    "translationKey": "connection.serverUrl",
    "validators": [
      {
        "arguments": []
      }
    ],
    "attributes": [
      {
        "key": "serverUrl",
        "translationKey": "connection.serverUrl",
        "validators": [
          {
            "arguments": []
          }
        ],
        "displayProperties": {
          "row": 1,
          "columns": 6,
          "displayInViewMode": true
        },
        "defaultValue": "oibus-client"
      }
    ],
    "enablingConditions": [
      {
        "targetPathFromRoot": "protocol",
        "referralPathFromRoot": "connection.type",
        "values": [
          "MQTT"
        ],
        "operator": "EQUALS"
      }
    ],
    "displayProperties": {
      "visible": true,
      "wrapInBox": true
    }
  },
  "name": "String to Number",
  "description": "Converts string input to numeric output",
  "customCode": "function transform(input) { return parseFloat(input); }",
  "timeout": 2000,
  "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"
}

Changes

Changed in 19 of the 73 revisions of this API.394881

  • 9a6250881fa71212See the full diff
    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusArrayAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusBooleanAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusCertificateAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusCodeAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusInstantAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusNumberAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusScanModeAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusSecretAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusStringAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusStringSelectAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusTimezoneAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusArrayAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusBooleanAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusCertificateAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusCodeAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusInstantAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusNumberAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusScanModeAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusSecretAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusStringAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusStringSelectAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusTimezoneAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/validators/items/type

      request-property-enum-value-added

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

  • ea1c80cb9c691212See the full diff
    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusArrayAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusBooleanAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusCertificateAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusCodeAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusInstantAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusNumberAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusScanModeAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusSecretAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusStringAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusStringSelectAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusTimezoneAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/validators/items/type

      request-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusArrayAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusBooleanAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusCertificateAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusCodeAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusInstantAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusNumberAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusScanModeAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusSecretAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusStringAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusStringSelectAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusTimezoneAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/validators/items/type response property for the response status 201

      response-property-enum-value-removed

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

  • 6a232346b1581212See the full diff
    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusArrayAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusBooleanAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusCertificateAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusCodeAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusInstantAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusNumberAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusScanModeAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusSecretAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusStringAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusStringSelectAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusTimezoneAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusArrayAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusBooleanAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusCertificateAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusCodeAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusInstantAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusNumberAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusScanModeAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusSecretAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusStringAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusStringSelectAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusTimezoneAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/validators/items/type

      request-property-enum-value-added

  • 57cbe043ec5a1212See the full diff
    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusArrayAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusBooleanAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusCertificateAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusCodeAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusInstantAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusNumberAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusScanModeAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusSecretAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusStringAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusStringSelectAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/attributes/items/anyOf[OIBusTimezoneAttribute]/validators/items/type

      request-property-enum-value-removed

    • removed the enum value PLATFORM of the request property customManifest/validators/items/type

      request-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusArrayAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusBooleanAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusCertificateAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusCodeAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusInstantAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusNumberAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusScanModeAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusSecretAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusStringAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusStringSelectAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/attributes/items/anyOf[OIBusTimezoneAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-removed

    • removed the PLATFORM enum value from the manifest/validators/items/type response property for the response status 201

      response-property-enum-value-removed

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

  • 4c50d4a73f661212See the full diff
    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusArrayAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusBooleanAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusCertificateAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusCodeAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusInstantAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusNumberAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusScanModeAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusSecretAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusStringAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusStringSelectAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/attributes/items/anyOf[OIBusTimezoneAttribute]/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the manifest/validators/items/type response property for the response status 201

      response-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusArrayAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusBooleanAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusCertificateAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusCodeAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusInstantAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusNumberAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusScanModeAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusSecretAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusStringAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusStringSelectAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/attributes/items/anyOf[OIBusTimezoneAttribute]/validators/items/type

      request-property-enum-value-added

    • added the new PLATFORM enum value to the request property customManifest/validators/items/type

      request-property-enum-value-added

    • added the new NOT_EQUAL enum value to the manifest/enablingConditions/items/operator response property for the response status 201

      response-property-enum-value-added

    • added the new NOT_EQUAL enum value to the request property customManifest/enablingConditions/items/operator

      request-property-enum-value-added

    • added the required property createdAt to the response with the 201 status

      response-required-property-added

    • added the required property createdBy to the response with the 201 status

      response-required-property-added

    • added the required property updatedAt to the response with the 201 status

      response-required-property-added

    • added the required property updatedBy 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

    • removed the required property createdAt from the response with the 201 status

      response-required-property-removed

    • removed the required property createdBy from the response with the 201 status

      response-required-property-removed

    • removed the required property updatedAt from the response with the 201 status

      response-required-property-removed

    • removed the required property updatedBy from the response with the 201 status

      response-required-property-removed

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

    • added the required property createdAt to the response with the 201 status

      response-required-property-added

    • added the required property createdBy to the response with the 201 status

      response-required-property-added

    • added the required property updatedAt to the response with the 201 status

      response-required-property-added

    • added the required property updatedBy to the response with the 201 status

      response-required-property-added

    • removed the optional property createdAt from the response with the 201 status

      response-optional-property-removed

    • removed the optional property createdBy from the response with the 201 status

      response-optional-property-removed

    • removed the optional property updatedAt from the response with the 201 status

      response-optional-property-removed

    • removed the optional property updatedBy from the response with the 201 status

      response-optional-property-removed

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