openapi: 3.1.0
info:
  title: Webhook Callback SAMPLE
  version: 1.0.0
paths: {}
webhooks:
  orderCreated:
    post:
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required: [order_id, status]
              properties:
                order_id: {type: string}
                status: {type: string}
      responses:
        '200':
          description: Acknowledged
