Versions Compared

Key

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

...

Code Block
languagexml
titlerequest body
{
  “operation”: “<operation>”,         // Valid operations are: “create”, “read”, “update” and “delete”.
                                      // For update, replace and patch is distinguished by the HTTP method (PUT or PATCH).

  “data-type”“dataType”: “<mime-type>”,         // Indicates format for the embedded data.
                                      // Shall use MIME type syntax, e g “application/yang-data+json”.
                                      // required for create and update operations. Optional filter-data for read-operations

  “data”: {                           // Embedded data. Must be valid JSON object.
    <data>                            // required for create and update operations. Optional filter-data for read-operations
  },

  “additional-properties”“additionaProperties”: {           // Additional properties for CM handle previously added by DMI plugin and stored in NCMP.
    <properties>
  }
}

...