[SSE-F] Example incorrect for delivery object in stream configuration update

Issue #21 new
Tim Cappalli created an issue

Feedback from Cisco/Duo

This is a non-normative example update: Update section 7.1.2.2 example to match section 11.2.1.1

old

  {
    "iss": "https://tr.example.com",
    "aud": [
      "http://receiver.example.com/web",
      "http://receiver.example.com/mobile"
    ],
    "delivery": {
      "delivery_method":
        "https://schemas.openid.net/secevent/risc/delivery-method/push",
        "url": "https://receiver.example.com/events"
    },
    "events_requested": [
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3",
      "urn:example:secevent:events:type_4"
    ]
  }

new

  {
    "iss": "https://tr.example.com",
    "aud": [
      "http://receiver.example.com/web",
      "http://receiver.example.com/mobile"
    ],
    "delivery": {
      "method": "https://schemas.openid.net/secevent/risc/delivery-method/push",
        "endpoint_url": "https://receiver.example.com/events"
    },
    "events_requested": [
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3",
      "urn:example:secevent:events:type_4"
    ]
  }