Schema Notification

Schema Notifications

Schema service triggers a notification event whenever there is a create or update operation performed. In other words, these notifications are triggered whenever POST or PUT end-points are called.

Subscribers can register themselves via registration service to a newly created topic and start receiving notification on their push-end-point via notification-service.

The event message body will have the below structure:

  • Create event
[
	{
        "kind": "osdu:wks:wellbore:2.0.0",
        "op": "create"
      }
]
  • Update event
[
	{
        "kind": "osdu:wks:wellbore:1.0.0",
        "op": "update"
      }
]
Edited by Abhishek Kumar (SLB)