Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

CM Handle Registration Request Payload


JSON Viewer
width450500
height350400
{
  "dmiPlugin": "my-dmi-plugin",
  "dmiDataPlugin": "my-dmi-data-plugin",
  "dmiModelPlugin": "my-dmi-model-plugin",
  "createdCmHandles": [
    {
      "cmHandle": "my-cm-handle",
      "cmHandleProperties": {
        "additionalProp1": "my-property",
        "additionalProp2": "my-property",
        "additionalProp3": "my-property"
      },
      "publicCmHandleProperties": {
        "additionalProp1": "my-property",
        "additionalProp2": "my-property",
        "additionalProp3": "my-property"
      }
    }
  ],
  "updatedCmHandles": {
    "cmHandle": "my-cm-handle",
    "cmHandleProperties": {
      "add-my-property": "add-property",
      "update-my-property": "updated-property",
      "delete-my-property": null
    },
    "publicCmHandleProperties": {
      "add-my-property": "add-property",
      "update-my-property": "updated-property",
      "delete-my-property": null
    }
  },
  "removedCmHandles": [
    "[\"my-cm-handle1\",\"my-cm-handle2\",\"my-cm-handle3\"]"
  ]
}

...