SharedSignals October 2023
Tulshibagwale, et al. Standards Track [Page]
Workgroup:
Shared Signals
Published:
Authors:
A. Tulshibagwale
SGNL
T. Cappalli
Microsoft
M. Scurtescu
Coinbase
A. Backman
Amazon
J. Bradley
Yubico
S. Miel
Cisco

OpenID Shared Signals Framework Specification 1.0 - draft 02

Abstract

This Shared Signals Framework (SSF) enables sharing of signals and events between cooperating peers. It enables multiple applications such as Risk Incident Sharing and Coordination (RISC) and the Continuous Access Evaluation Profile ([CAEP])

This specification defines:

This spec also directly profiles several IETF Security Events drafts:

Table of Contents

1. Introduction

1.1. Notational Conventions

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.

2. Subject Principals

This Shared Signals Framework specification defines a Subject Principal to be the entities about which an event can be sent by Transmitters and received by Receivers using the Shared Signals Framework.

Subject Principals are the managed entities in an SSF Transmitter or Receiver. These include human or robotic principals, devices, customer tenants in a multi-tenanted service, organizational units within a tenant, groups of subject principals, or other entities that are managed by Transmitters and Receivers. There may be other actors or resources that can be treated as Subject Principals, and event-type definitions SHOULD specify the range of principals addressed by the event.

Subject Principals are identified by Subject Members defined below.

3. Subject Members in SSF Events

3.1. Subject Members

A Subject Member of an SSF event describes a subject of the event. A top-level claim named sub_id MUST be used to describe the primary subject of the event.

3.1.1. Existing CAEP and RISC Events

Event types already defined in the CAEP ([CAEP]) and RISC ([RISC]) specifications MAY use a subject field within the events claim of the SSF event to describe the primary Subject Principal of the event. SSF Transmitters MUST include the top-level sub_id claim even for these existing event types.

3.1.2. New Event Types

New event types MUST use the top-level sub_id claim and MUST NOT use the subject field in the events claim to describe the primary Subject Principal.

3.1.3. Additional Subject Members

Specific event types MAY define additional Subject Members if required to describe additional subjects of that event type (e.g. a Transferee). These additional subject fields MAY have any field name.

3.1.4. Subject Member Values

Each Subject Member MUST refer to exactly one Subject Principal. The value of a Subject Member MAY be a "simple subject" or a "complex subject".

3.2. Simple Subject Members

A Simple Subject Member has a claim name and a value that is a "Subject Identifier" as defined in the Subject Identifiers for Security Event Tokens [SUBIDS]. Below is a non-normative example of a Simple Subject Member in an SSF event.

"sub_id": {
  "format": "email",
  "email": "foo@example.com"
}
Figure 1: Example: Simple Subject

3.3. Complex Subject Members

A Complex Subject Member has a name and a value that is a JSON [RFC7159] object that has a format field, and one or more Simple Subject Members. The name of the format field is "format", and its value is "complex". The name of each Simple Subject Member in this value MAY be one of the following:

user

  • OPTIONAL. A Subject Identifier that identifies a user.

device

  • OPTIONAL. A Subject Identifier that identifies a device.

session

  • OPTIONAL. A Subject Identifier that identifies a session.

application

  • OPTIONAL. A Subject Identifier that identifies an application.

tenant

  • OPTIONAL. A Subject Identifier that identifies a tenant.

org_unit

  • OPTIONAL. A Subject Identifier that identifies an organizational unit.

group

  • OPTIONAL. A Subject Identifier that identifies a group.

Additional Subject Member names MAY be used in Complex Subjects. Each member name MAY appear at most once in the Complex Subject value.

Below is a non-normative example of a Complex Subject claim in an SSF event.

"sub_id": {
  "format": "complex",
  "user" : {
    "format": "email",
    "email": "bar@example.com"
  },
  "tenant" : {
    "format": "iss_sub",
    "iss" : "http://example.com/idp1",
    "sub" : "1234"
  }
}
Figure 2: Example: Complex Subject

3.3.1. Complex Subject Interpretation

All members within a Complex Subject MUST represent attributes of the same Subject Principal. As a whole, the Complex Subject MUST refer to exactly one Subject Principal.

3.4. Subject Identifiers in SSF Events

A Subject Identifier in an SSF event MUST have an identifier format that is any one of:

  • Defined in the IANA Registry defined in Subject Identifiers for Security Event Tokens [SUBIDS]

  • An identifier format defined in the Additional Subject Identifier Formats (Section 3.5) section below, OR

  • A proprietary subject identifier format that is agreed to between parties. Members within a subject identifier that has a proprietary subject identifier format are agreed to between the parties and such agreement is outside the scope of this specification.

3.5. Additional Subject Identifier Formats

The following new subject identifier formats are defined:

3.5.1. JWT ID Subject Identifier Format

The "JWT ID" Subject Identifier Format specifies a JSON Web Token (JWT) identifier, defined in [RFC7519]. Subject Identifiers of this type MUST contain the following members:

iss

  • REQUIRED. The "iss" (issuer) claim of the JWT being identified, defined in [RFC7519]

jti

  • REQUIRED. The "jti" (JWT token ID) claim of the JWT being identified, defined in [RFC7519]

The "JWT ID" Subject Identifier Format is identified by the name "jwt_id".

Below is a non-normative example of Subject Identifier for the "jwt_id" Subject Identifier Format.

{
    "format": "jwt_id",
    "iss": "https://idp.example.com/123456789/",
    "jti": "B70BA622-9515-4353-A866-823539EECBC8"
}
Figure 3: Example: 'jwt_id' Subject Identifier

3.5.2. SAML Assertion ID Subject Identifier Format

The "SAML Assertion ID" Subject Identifier Format specifies a SAML 2.0 [OASIS.saml-core-2.0-os] assertion identifier. Subject Identifiers of this format MUST contain the following members:

issuer

assertion_id

The "SAML Assertion ID" Subject Identifier Format is identified by the name "saml_assertion_id".

Below is a non-normative example Subject Identifier for the "saml_assertion_id" Subject Identifier Format.

{
    "format": "saml_assertion_id",
    "issuer": "https://idp.example.com/123456789/",
    "assertion_id": "_8e8dc5f69a98cc4c1ff3427e5ce34606fd672f91e6"
}

Figure 4: Example: 'saml_assertion_id' Subject Identifier

3.6. Receiver Subject Processing

A SSF Receiver MUST make a best effort to process all members from a Subject in an SSF event. The Transmitter Configuration Metadata (Section 6.1) defined below MAY define certain members within a Complex Subject to be Critical. A SSF Receiver MUST discard any event that contains a Subject with a Critical member that it is unable to process.

4. Event Properties

Additional members about an event may be included in the "events" claim. Some of these members are required and specified as such in the respective event types specs. If a Transmitter determines that it needs to include additional members that are not specified in the event types spec, then the name of such members MUST be a URI. The discoverability of all additional members is specified in the Discovery section (Section 6).

5. Example SETs that conform to the Shared Signals Framework

The following are hypothetical examples of SETs that conform to the Shared Signals Framework.

{
  "iss": "https://idp.example.com/",
  "jti": "756E69717565206964656E746966696572",
  "iat": 1520364019,
  "aud": "636C69656E745F6964",
  "sub_id": {
    "format": "email",
    "email": "foo@example.com"
  },
  "events": {
    "https://schemas.openid.net/secevent/risc/event-type/account-enabled": {
      "subject": {
        "format": "email",
        "email": "foo@example.com"
      }
    }
  }
}
Figure 5: Example: SET Containing an SSF Event with a Simple Subject Member
{
  "iss": "https://idp.example.com/",
  "jti": "756E69717565206964656E746966696572",
  "iat": 1520364019,
  "aud": "636C69656E745F6964",
  "sub_id": {
      "format": "complex",
      "user": {
          "format": "iss_sub",
          "iss": "https://idp.example.com/3957ea72-1b66-44d6-a044-d805712b9288/",
          "sub": "jane.smith@example.com"
      },
      "device": {
          "format": "iss_sub",
          "iss": "https://idp.example.com/3957ea72-1b66-44d6-a044-d805712b9288/",
          "sub": "e9297990-14d2-42ec-a4a9-4036db86509a"
      }
  },
  "events": {
    "https://schemas.openid.net/secevent/caep/event-type/session-revoked": {
      "subject": {
          "format": "complex",
          "user": {
              "format": "iss_sub",
              "iss": "https://idp.example.com/3957ea72-1b66-44d6-a044-d805712b9288/",
              "sub": "jane.smith@example.com"
          },
          "device": {
              "format": "iss_sub",
              "iss": "https://idp.example.com/3957ea72-1b66-44d6-a044-d805712b9288/",
              "sub": "e9297990-14d2-42ec-a4a9-4036db86509a"
          }
      },
      "initiating_entity": "policy",
      "reason_admin": "Policy Violation: C076E82F",
      "reason_user": "Landspeed violation.",
      "event_timestamp": 1600975810
    }
  }
}
Figure 6: Example: SET Containing an SSF Event with a Complex Subject Member
{
  "iss": "https://sp.example2.com/",
  "jti": "756E69717565206964656E746966696572",
  "iat": 1520364019,
  "aud": "636C69656E745F6964",
  "sub_id": {
    "format": "email",
    "email": "foo@example2.com"
  },
  "events": {
    "https://schemas.openid.net/secevent/caep/event-type/token-claims-change": {
      "subject": {
        "format": "email",
        "email": "foo@example2.com"
      },
      "event_timestamp": 1600975810,
      "claims": {
         "role": "ro-admin"
      }
    }
  }
}
Figure 7: Example: SET Containing an SSF Event with a Simple Subject and a Property Member
{
  "iss": "https://myservice.example3.com/",
  "jti": "756E69717565206964656E746966696534",
  "iat": 15203800012,
  "aud": "636C69656E745F6324",
  "sub_id": {
      "format": "catalog_item",
      "catalog_id": "c0384/winter/2354122"
  },
  "events": {
    "https://schemas.openid.net/secevent/caep/event-type/token-claims-change": {
    "subject": {
        "format": "catalog_item",
        "catalog_id": "c0384/winter/2354122"
      },
      "event_timestamp": 1600975810,
      "claims": {
         "role": "ro-admin"
      }
    }
  }
}
Figure 8: Example: SET Containing an SSF Event with a Proprietary Subject Identifier Format

6. Transmitter Configuration Discovery

This section defines a mechanism for Receivers to obtain Transmitter configuration information.

6.1. Transmitter Configuration Metadata

Transmitters have metadata describing their configuration:

spec_version

  • OPTIONAL. A version idenitfying the implementer's draft or final specification implemented by the Transmitter. This includes the numerical portion of the spec version as described in the document [NAMINGCONVENTION]. If absent, the Transmitter is assumed to conform to "1_0-ID1" version of the specification (this document).

  • The following is a non-normative example of Transmitter that implements the second implementer's draft of the Shared Signals Framework specification 1_0.

  • The following is a non-normative example of a Transmitter that implements the final specification of the Shared Signals Framework 1_0.

issuer

  • REQUIRED. URL using the https scheme with no query or fragment component that the Transmitter asserts as its Issuer Identifier. This MUST be identical to the iss claim value in Security Event Tokens issued from this Transmitter.

jwks_uri

  • OPTIONAL. URL of the Transmitter's JSON Web Key Set [RFC7517] document. This contains the signing key(s) the Receiver uses to validate signatures from the Transmitter. This value MUST be specified if the Transmitter intends to generate signed JWTs.

delivery_methods_supported

  • RECOMMENDED. List of supported delivery method URIs.

configuration_endpoint

  • OPTIONAL. The URL of the Configuration Endpoint.

status_endpoint

  • OPTIONAL. The URL of the Status Endpoint.

add_subject_endpoint

  • OPTIONAL. The URL of the Add Subject Endpoint.

remove_subject_endpoint

  • OPTIONAL. The URL of the Remove Subject Endpoint.

verification_endpoint

  • OPTIONAL. The URL of the Verification Endpoint.

critical_subject_members

  • OPTIONAL. An array of member names in a Complex Subject which, if present in a Subject Member in an event, MUST be interpreted by a Receiver.

authorization_schemes

  • OPTIONAL. An array of JSON objects that specify the supported authorization scheme properties defined in Section 6.1.1. To enable seamless discovery of configurations, the service provider SHOULD, with the appropriate security considerations, make the authorization_schemes attribute publicly accessible without prior authentication.

TODO: consider adding a IANA Registry for metadata, similar to Section 7.1.1 of [RFC8414]. This would allow other specs to add to the metadata.

6.1.1. Authorization scheme

SSF is an HTTP based signals sharing framework and is agnostic to the authentication and authorization schemes used to secure stream configuration APIs. It does not provide any SSF-specific authentication and authorization schemes but relies on the cooperating parties' mutual security considerations. The authorization scheme section of the metadata provides discovery information related to the Transmitter's stream management APIs.

spec_urn

  • REQUIRED. A URN that describes the specification of the protocol being used.

The Receiver will call the Transmitter APIs by providing appropriate credentials as per the spec_urn.

The following is a non-normative example of the spec_urn

In this case, the receiver may obtain an access token using the Client Credentials Grant [CLIENTCRED], or any other method suitable for the Receiver and the Transmitter.

6.2. Obtaining Transmitter Configuration Information

Using the Issuer as documented by the Transmitter, the Transmitter Configuration Information can be retrieved.

Transmitters supporting Discovery MUST make a JSON document available at the path formed by inserting the string "/.well-known/ssf-configuration" into the Issuer between the host component and the path component, if any. The syntax and semantics of ".well-known" are defined in [RFC5785]. "ssf-configuration" MUST point to a JSON document compliant with this specification, and that document MUST be returned using the "application/json" content type.

6.2.1. Transmitter Configuration Request

A Transmitter Configuration Document MUST be queried using an HTTP "GET" request at the previously specified path.

The Receiver would make the following request to the Issuer "https://tr.example.com" to obtain its Configuration information, since the Issuer contains no path component:

GET /.well-known/ssf-configuration HTTP/1.1
Host: tr.example.com
Figure 12: Example: Transmitter Configuration Request (without path)

If the Issuer value contains a path component, any terminating "/" MUST be removed before inserting "/.well-known/ssf-configuration" between the host component and the path component. The Receiver would make the following request to the Issuer "https://tr.example.com/issuer1" to obtain its Configuration information, since the Issuer contains a path component:

GET /.well-known/ssf-configuration/issuer1 HTTP/1.1
Host: tr.example.com
Figure 13: Example: Transmitter Configuration Request (with path)

Using path components enables supporting multiple issuers per host. This is required in some multi-tenant hosting configurations. This use of ".well-known" is for supporting multiple issuers per host; unlike its use in [RFC5785], it does not provide general information about the host.

6.2.2. Backward Compatibility for RISC Transmitters

Existing RISC Transmitters MAY continue to use the path component "/risc-configuration" instead of the path component "/ssf-configuration" in the path for the Transmitter Configuration Metadata. New services supporting the Shared Signals Framework SHOULD NOT use this location for publishing the Transmitter Configuration Metadata. For example, the Transmitter Configuration Metadata for the Transmitter "https://risc-tr.example.com" MAY be obtained by making the following request:

GET /.well-known/risc-configuration HTTP/1.1
Host: risc-tr.example.com
Figure 14: Example: Transmitter Configuration Request for RISC Transmitters

6.2.3. Transmitter Configuration Response

The response is a set of Claims about the Transmitter's configuration, including all necessary endpoints and public key location information. A successful response MUST use the 200 OK HTTP status code and return a JSON object using the "application/json" content type that contains a set of Claims as its members that are a subset of the Metadata values defined in Section 6.1. Other Claims MAY also be returned.

Claims that return multiple values are represented as JSON arrays. Claims with zero elements MUST be omitted from the response.

An error response uses the applicable HTTP status code value.

The following is a non-normative example of a Transmitter Configuration Response

HTTP/1.1 200 OK
Content-Type: application/json

{
  "spec_version": "1_0-ID2",
  "issuer":
    "https://tr.example.com",
  "jwks_uri":
    "https://tr.example.com/jwks.json",
  "delivery_methods_supported": [
    "urn:ietf:rfc:8935",
    "urn:ietf:rfc:8936"],
  "configuration_endpoint":
    "https://tr.example.com/ssf/mgmt/stream",
  "status_endpoint":
    "https://tr.example.com/ssf/mgmt/status",
  "add_subject_endpoint":
    "https://tr.example.com/ssf/mgmt/subject:add",
  "remove_subject_endpoint":
    "https://tr.example.com/ssf/mgmt/subject:remove",
  "verification_endpoint":
    "https://tr.example.com/ssf/mgmt/verification",
  "critical_subject_members": [ "tenant", "user" ],
  "authorization_schemes":[
      {
        "spec_urn": "urn:ietf:rfc:6749"
      },
      {
        "spec_urn": "urn:ietf:rfc:8705"
      }
    ]
}
Figure 15: Example: Transmitter Configuration Response

6.2.4. Transmitter Configuration Validation

If any of the validation procedures defined in this specification fail, any operations requiring the information that failed to correctly validate MUST be aborted and the information that failed to validate MUST NOT be used.

The "issuer" value returned MUST be identical to the Issuer URL that was directly used to retrieve the configuration information. This MUST also be identical to the "iss" Claim value in Security Event Tokens issued from this Transmitter.

7. Management API for SET Event Streams

An Event Stream is an abstraction for how events are communicated from a Transmitter to a Receiver. The Event Stream's configuration, which is jointly managed by the Transmitter and Receiver, holds information about what types of events will be sent from the Transmitter, as well as the mechanism by which the Receiver can expect to receive the events. The Event Stream also keeps track of what Subjects are of interest to the Receiver, and only events with those Subjects are transmitted on the stream.

This section defines an HTTP API to be implemented by Event Transmitters which can be used by Event Receivers to create and delete one or more Event Streams. The API can also be used to query and update the Event Stream's configuration and status, add and remove Subjects, and trigger verification for those streams.

+------------+                +------------+
|            | Stream Config  |            |
| Event      <----------------+ Event      |
| Stream     |                | Receiver   |
| Management | Stream Status  |            |
| API        <----------------+            |
|            |                |            |
|            | Add Subject    |            |
|            <----------------+            |
|            |                |            |
|            | Remove Subject |            |
|            <----------------+            |
|            |                |            |
|            | Stream Updated |            |
|            +---------------->            |
|            |                |            |
|            | Verification   |            |
|            <----------------+            |
|            |                |            |
+------------+                +------------+
Figure 16: Event Stream Management API

It is OPTIONAL for Transmitters to implement a Management API, but it is RECOMMENDED that they implement it, especially the endpoints for querying the Stream Status and for triggering Verification.

7.1. Event Stream Management

Event Receivers manage how they receive events, and the subjects about which they want to receive events over an Event Stream by making HTTP requests to endpoints in the Event Stream Management API.

A Transmitter and Receiver MAY use the same Event Stream for updates about multiple Subject Principals. The status of the Event Stream MAY be queried and managed independently for each Subject Principal by Transmitters and Receivers.

The Event Stream Management API is implemented by the Event Transmitter and consists of the following endpoints:

Configuration Endpoint

  • An endpoint used to create and delete Event Streams, as well as read and update an Event Stream's current configuration.

Status Endpoint

  • An endpoint used to read and update an Event Stream's current status.

Add Subject Endpoint

  • An endpoint used to add subjects to an Event Stream.

Remove Subject Endpoint

  • An endpoint used to remove subjects from an Event Stream.

Verification Endpoint

  • An endpoint used to request the Event Transmitter transmit a Verification Event over an Event Stream.

An Event Transmitter MAY use the same URLs as endpoints for multiple Event Receivers, provided that the Event Transmitter has some mechanism through which they can identify the applicable set of Event Streams for any given request, e.g. from authentication credentials. The definition of such mechanisms is outside the scope of this specification.

7.1.1. Stream Configuration

An Event Stream's configuration is a collection of data, provided by both the Transmitter and the Receiver, that describes the information being sent over the Event Stream. It is represented as a JSON [RFC7159] object with the following properties:

stream_id

  • Transmitter-Supplied, A string that uniquely identifies the stream. A transmitter MUST generate a unique ID for each of its non-deleted streams at the time of stream creation.

iss

  • Transmitter-Supplied, A URL using the https scheme with no query or fragment component that the Transmitter asserts as its Issuer Identifier. This MUST be identical to the "iss" Claim value in Security Event Tokens issued from this Transmitter.

aud

  • Transmitter-Supplied, A string or an array of strings containing an audience claim as defined in JSON Web Token (JWT)[RFC7519] that identifies the Event Receiver(s) for the Event Stream. This property cannot be updated. If multiple Receivers are specified then the Transmitter SHOULD know that these Receivers are the same entity.

events_supported

  • Transmitter-Supplied, An array of URIs identifying the set of events supported by the Transmitter for this Receiver. If omitted, Event Transmitters SHOULD make this set available to the Event Receiver via some other means (e.g. publishing it in online documentation).

events_requested

  • Receiver-Supplied, An array of URIs identifying the set of events that the Receiver requested. A Receiver SHOULD request only the events that it understands and it can act on. This is configurable by the Receiver. A Transmitter MUST ignore any array values that it does not understand. This array SHOULD NOT be empty.

events_delivered

  • Transmitter-Supplied, An array of URIs identifying the set of events that the Transmitter MUST include in the stream. This is a subset (not necessarily a proper subset) of the intersection of "events_supported" and "events_requested". A Receiver MUST rely on the values received in this field to understand which event types it can expect from the Transmitter.

delivery

  • A JSON object containing a set of name/value pairs specifying configuration parameters for the SET delivery method. The actual delivery method is identified by the special key "method" with the value being a URI as defined in Section 10.2.1. The value of the "delivery" field contains two sub-fields:

  • method

    • Receiver-Supplied, the specific delivery method to be used. This can be any one of "urn:ietf:rfc:8935" (push) or "urn:ietf:rfc:8936" (poll), but not both.

  • endpoint_url

    • The location at which the push or poll delivery will take place. If the method value is "urn:ietf:rfc:8935" (push), then this value MUST be supplied by the Receiver. If the method value is "urn:ietf:rfc:8936" (poll), then this value MUST be supplied by the Transmitter.

min_verification_interval

  • Transmitter-Supplied, An integer indicating the minimum amount of time in seconds that must pass in between verification requests. If an Event Receiver submits verification requests more frequently than this, the Event Transmitter MAY respond with a 429 status code. An Event Transmitter SHOULD NOT respond with a 429 status code if an Event Receiver is not exceeding this frequency.

description

  • Receiver-Supplied, An optinal string to describe the properties of the stream. This is useful in multi stream systems to identify the stream for human actors. The transmitter may truncate the string beyond allowed max length.

TODO: consider adding a IANA Registry for stream configuration metadata, similar to Section 7.1.1 of [RFC8414]. This would allow other specs to add to the stream configuration.

7.1.1.1. Creating a Stream

In order to communicate events from a Transmitter to a Receiver, a Receiver MUST first create an Event Stream. An Event Receiver creates a stream by making an HTTP POST request to the Configuration Endpoint. On receiving a valid request the Event Transmitter responds with a "201 Created" response containing a JSON [RFC7159] representation of the stream's configuration in the body.

If a stream already exists, and the Transmitter allows multiple streams with the same Receiver, the Event Transmitter MUST respond with a new stream ID. If the Transmitter does not allow multiple streams with the same Receiver, it MUST respond respond with HTTP status code "409 Conflict". The Receiver MAY then GET the existing stream configuration and, if desired, use PATCH or PUT to update or replace the existing stream configuration.

The HTTP POST request MAY contain the Receiver-Supplied values of the Stream Configuration (Section 7.1.1) object:

  • events_requested

  • delivery : Note that in the case of the POLL method, the endpoint_url value is supplied by the Transmitter.

If the request does not contain the delivery property, then the Transmitter MUST assume that the method is "urn:ietf:rfc:8936" (poll). The Transmitter MUST include a delivery property in the response with this method property and an endpoint_url property.

The following is a non-normative example request to create an Event Stream:

POST /ssf/stream HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=

{
  "delivery": {
    "method": "urn:ietf:rfc:8935",
    "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"
  ],
  "description" : "Stream for Receiver A using events type_2, type_3, type_4"
}
Figure 17: Example: Create Event Stream Request

The following is a non-normative example response:

HTTP/1.1 200 OK
Content-Type: application/json

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "iss": "https://tr.example.com",
  "aud": [
      "http://receiver.example.com/web",
      "http://receiver.example.com/mobile"
    ],
  "delivery": {
    "method": "urn:ietf:rfc:8935",
    "endpoint_url": "https://receiver.example.com/events"
  },
  "events_supported": [
    "urn:example:secevent:events:type_1",
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3"
  ],
  "events_requested": [
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3",
    "urn:example:secevent:events:type_4"
  ],
  "events_delivered": [
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3"
  ],
  "description" : "Stream for Receiver A using events type_2, type_3, type_4"
}
Figure 18: Example: Create Stream Response

Errors are signaled with HTTP status codes as follows:

Table 1: Create Stream Errors
Code Description
400 if the request cannot be parsed
401 if authorization failed or it is missing
403 if the Event Receiver is not allowed to create a stream
409 if the transmitter does not support multiple streams per receiver
7.1.1.2. Reading a Stream's Configuration

An Event Receiver gets the current configuration of a stream by making an HTTP GET request to the Configuration Endpoint. On receiving a valid request the Event Transmitter responds with a "200 OK" response containing a JSON [RFC7159] representation of the stream's configuration in the body.

The GET request MAY include the "stream_id" as a parameter in order to identify the correct Event Stream. If the "stream_id" argument is missing, then the Transmitter MUST return a list of the stream configurations available to this Receiver. In the event that there are no Event Streams created, the Transmitter MUST return an empty list.

The following is a non-normative example request to read an Event Stream's configuration:

GET /ssf/stream?stream_id=f67e39a0a4d34d56b3aa1bc4cff0069f HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=
Figure 19: Example: Read Stream Configuration Request

The following is a non-normative example response:

HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "iss": "https://tr.example.com",
  "aud": [
      "http://receiver.example.com/web",
      "http://receiver.example.com/mobile"
    ],
  "delivery": {
    "method": "urn:ietf:rfc:8935",
    "endpoint_url": "https://receiver.example.com/events"
  },
  "events_supported": [
    "urn:example:secevent:events:type_1",
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3"
  ],
  "events_requested": [
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3",
    "urn:example:secevent:events:type_4"
  ],
  "events_delivered": [
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3"
  ],
  "description" : "Stream for Receiver A using events type_2, type_3, type_4"
}
Figure 20: Example: Read Stream Configuration Response

The following is a non-normative example request to read an Event Stream's configuration, with no "stream_id" indicated:

GET /ssf/stream HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=
Figure 21: Example: Read Stream Configuration Request

The following is a non-normative example response to a request with no "stream_id":

HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

[
  {
    "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
    "iss": "https://tr.example.com",
    "aud": [
        "http://receiver.example.com/web",
        "http://receiver.example.com/mobile"
      ],
    "delivery": {
      "method": "urn:ietf:rfc:8935",
      "endpoint_url": "https://receiver.example.com/events"
    },
    "events_supported": [
      "urn:example:secevent:events:type_1",
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3"
    ],
    "events_requested": [
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3",
      "urn:example:secevent:events:type_4"
    ],
    "events_delivered": [
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3"
    ]
  },
  {
    "stream_id": "50b2d39934264897902c0581ba7c21a3",
    "iss": "https://tr.example.com",
    "aud": [
        "http://receiver.example.com/web",
        "http://receiver.example.com/mobile"
      ],
    "delivery": {
      "method": "urn:ietf:rfc:8935",
      "endpoint_url": "https://receiver.example.com/events"
    },
    "events_supported": [
      "urn:example:secevent:events:type_1",
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3"
    ],
    "events_requested": [
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3",
      "urn:example:secevent:events:type_4"
    ],
    "events_delivered": [
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3"
    ],
    "description" : "Stream for Receiver A using events type_2, type_3, type_4"
  }
]
Figure 22: Example: Read Stream Configuration Response

The following is a non-normative example response to a request with no "stream_id" when there is only one Event Stream configured:

HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

[
  {
    "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
    "iss": "https://tr.example.com",
    "aud": [
        "http://receiver.example.com/web",
        "http://receiver.example.com/mobile"
      ],
    "delivery": {
      "method": "urn:ietf:rfc:8935",
      "endpoint_url": "https://receiver.example.com/events"
    },
    "events_supported": [
      "urn:example:secevent:events:type_1",
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3"
    ],
    "events_requested": [
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3",
      "urn:example:secevent:events:type_4"
    ],
    "events_delivered": [
      "urn:example:secevent:events:type_2",
      "urn:example:secevent:events:type_3"
    ]
  }
]
Figure 23: Example: Read Stream Configuration Response

The following is a non-normative example response to a request with no "stream_id" when there are no Event Streams configured:

HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

[]
Figure 24: Example: Read Stream Configuration Response

Errors are signaled with HTTP status codes as follows:

Table 2: Read Stream Configuration Errors
Code Description
401 if authorization failed or it is missing
403 if the Event Receiver is not allowed to read the stream configuration
404 if there is no Event Stream with the given "stream_id" for this Event Receiver
7.1.1.3. Updating a Stream's Configuration

An Event Receiver updates the current configuration of a stream by making an HTTP PATCH request to the Configuration Endpoint. The PATCH body contains a JSON [RFC7159] representation of the stream configuration properties to change. On receiving a valid request the Event Transmitter responds with a "200 OK" response containing a JSON [RFC7159] representation of the entire updated stream configuration in the body.

The stream_id property MUST be present in the request. Other properties MAY be present in the request. Any Receiver-Supplied property present in the request MUST be updated by the Transmitter. Any properties missing in the request MUST NOT be changed by the Transmitter. If events_requested property is included in the request, it SHOULD NOT be an empty array.

Transmitter-Supplied properties beside the stream_id MAY be present, but they MUST match the expected value. Missing Transmitter-Supplied properties MUST be ignored by the Transmitter. The events_delivered property, if present, MUST match the Transmitter's expected value before any updates are applied.

The following is a non-normative example request to replace an Event Stream's configuration:

PATCH /ssf/stream HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "iss": "https://tr.example.com",
  "events_requested": [
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3",
    "urn:example:secevent:events:type_4"
  ],
  "description" : "Stream for Receiver B using events type_2, type_3, type_4"
}
Figure 25: Example: Update Stream Configuration Request

The following is a non-normative example response:

HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "iss": "https://tr.example.com",
  "aud": [
    "http://receiver.example.com/web",
    "http://receiver.example.com/mobile"
  ],
  "delivery": {
    "method": "urn:ietf:rfc:8935",
    "endpoint_url": "https://receiver.example.com/events"
  },
  "events_supported": [
    "urn:example:secevent:events:type_1",
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3"
  ],
  "events_requested": [
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3",
    "urn:example:secevent:events:type_4"
  ],
  "events_delivered": [
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3"
  ],
  "description" : "Stream for Receiver B using events type_2, type_3, type_4"
}
Figure 26: Example: Update Stream Configuration Response

Pending conditions or errors are signaled with HTTP status codes as follows:

Table 3: Update Stream Configuration Errors
Code Description
202 if the update request has been accepted, but not processed. Receiver MAY try the same request later to get processing result.
400 if the request body cannot be parsed, a Transmitter-Supplied property is incorrect, or if the request is otherwise invalid
401 if authorization failed or it is missing
403 if the Event Receiver is not allowed to update the stream configuration
404 if there is no Event Stream with the given "stream_id" for this Event Receiver
7.1.1.4. Replacing a Stream's Configuration

An Event Receiver replaces the current configuration of a stream by making an HTTP PUT request to the Configuration Endpoint. The PUT body contains a JSON [RFC7159] representation of the new configuration. On receiving a valid request the Event Transmitter responds with a "200 OK" response containing a JSON [RFC7159] representation of the updated stream configuration in the body.

The stream_id and the full set of Receiver-Supplied properties MUST be present in the PUT body, not only the ones that are specifically intended to be changed. Missing Receiver-Supplied properties MUST be interpreted as requested to be deleted. Event Receivers MAY read the configuration first, modify the JSON [RFC7159] representation, then make a replacement request. If events_requested property is included in the request, it SHOULD NOT be an empty array.

Transmitter-Supplied properties besides the stream_id MAY be present, but they MUST match the expected value. Missing Transmitter-Supplied properties MUST be ignored by the Transmitter. The events_delivered property, if present, MUST match the Transmitter's expected value before any updates are applied.

The following is a non-normative example request to replace an Event Stream's configuration:

PUT /ssf/stream HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "iss": "https://tr.example.com",
  "aud": [
    "http://receiver.example.com/web",
    "http://receiver.example.com/mobile"
  ],
  "delivery": {
    "method": "urn:ietf:rfc:8935",
    "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"
  ],
  "description" : "Stream for Receiver C"
}
Figure 27: Example: Replace Stream Configuration Request

The following is a non-normative example response:

HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "iss": "https://tr.example.com",
  "aud": [
    "http://receiver.example.com/web",
    "http://receiver.example.com/mobile"
  ],
  "delivery": {
    "method": "urn:ietf:rfc:8935",
    "endpoint_url": "https://receiver.example.com/events"
  },
  "events_supported": [
    "urn:example:secevent:events:type_1",
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3"
  ],
  "events_requested": [
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3",
    "urn:example:secevent:events:type_4"
  ],
  "events_delivered": [
    "urn:example:secevent:events:type_2",
    "urn:example:secevent:events:type_3"
  ],
  "description" : "Stream for Receiver C"
}
Figure 28: Example: Replace Stream Configuration Response

Pending conditions or errors are signaled with HTTP status codes as follows:

Table 4: Replace Stream Configuration Errors
Code Description
202 if the replace request has been accepted, but not processed. Receiver MAY try the same request later in order to get processing result.
400 if the request body cannot be parsed, a Transmitter-Supplied property is incorrect, or if the request is otherwise invalid
401 if authorization failed or it is missing
403 if the Event Receiver is not allowed to replace the stream configuration
404 if there is no Event Stream with the given "stream_id" for this Event Receiver
7.1.1.5. Deleting a Stream

An Event Receiver deletes a stream by making an HTTP DELETE request to the Configuration Endpoint. On receiving a request the Event Transmitter responds with an empty "204 No Content" response if the configuration was successfully removed.

The DELETE request MUST include the "stream_id" as a parameter in order to identify the correct Event Stream.

The following is a non-normative example request to delete an Event Stream:

DELETE /ssf/stream?stream_id=f67e39a0a4d34d56b3aa1bc4cff0069f HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=
Figure 29: Example: Delete Stream Request

Errors are signaled with HTTP status codes as follows:

Table 5: Delete Stream Errors
Code Description
401 if authorization failed or it is missing
403 if the Event Receiver is not allowed to delete the stream
404 if there is no Event Stream with the given "stream_id" for this Event Receiver

7.1.2. Stream Status

Event Streams are managed independently. A Receiver MAY request that events from a stream be interrupted by Updating the Stream Status (Section 7.1.2.2).

A Transmitter MAY decide to enable, pause or disable updates from a stream independently of an update request from a Receiver. If a Transmitter decides to start or stop events for a stream then the Transmitter MUST do the following according to the status of the stream.

If the stream is:

Enabled

  • the Transmitter MUST send a stream updated (Section 7.1.5) event respectively to the Receiver within the Event Stream.

Paused

  • the Transmitter SHOULD send a stream updated (Section 7.1.5) after the Event Stream is re-started. A Receiver MUST assume that events may have been lost during the time when the event stream was paused.

Disabled

  • the Transmitter MAY send a stream updated (Section 7.1.5) after the Event Stream is re-enabled.

7.1.2.1. Reading a Stream's Status

An Event Receiver checks the current status of an event stream by making an HTTP GET request to the stream's Status Endpoint.

The Stream Status method takes the following parameters:

stream_id

  • REQUIRED. The stream whose status is being queried.

On receiving a valid request the Event Transmitter responds with a 200 OK response containing a JSON [RFC7159] object with the following attributes:

status

  • A string whose value MUST be one of the values described below.

reason

  • An OPTIONAL string whose value SHOULD express why the stream's status is set to the current value.

The allowable "status" values are:

enabled

  • The Transmitter MUST transmit events over the stream, according to the stream's configured delivery method.

paused

  • The Transmitter MUST NOT transmit events over the stream. The transmitter will hold any events it would have transmitted while paused, and SHOULD transmit them when the stream's status becomes "enabled". If a Transmitter holds successive events that affect the same Subject Principal, then the Transmitter MUST make sure that those events are transmitted in the order of time that they were generated OR the Transmitter MUST send only the last events that do not require the previous events affecting the same Subject Principal to be processed by the Receiver, because the previous events are either cancelled by the later events or the previous events are outdated.

disabled

  • The Transmitter MUST NOT transmit events over the stream, and will not hold any events for later transmission.

The following is a non-normative example request to check an event stream's status:

GET /ssf/status?stream_id=f67e39a0a4d34d56b3aa1bc4cff0069f HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer zzzz
Figure 30: Example: Check Stream Status Request

The following is a non-normative example response:

HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "status": "paused",
  "reason": "SYSTEM_DOWN_FOR_MAINTENANCE"
}
Figure 31: Example: Check Stream Status Response

Errors are signaled with HTTP status codes as follows:

Table 6: Read Stream Status Errors
Code Description
401 if authorization failed or it is missing
403 if the Event Receiver is not allowed to read the stream status
404 if there is no Event Stream with the given "stream_id" for this Event Receiver

Examples:

  1. If a Receiver makes an unauthorized request, then the Transmitter MUST respond with a 401 error status.

  2. If a Receiver makes an authorized request, but the Transmitter policy does not permit the Receiver from obtaining the status, then the Transmitter MAY respond with a 403 error status.

  3. If the Receiver requests the status for a stream that does not exist then the Transmitter MUST respond with a 404 error status.

7.1.2.2. Updating a Stream's Status

An Event Receiver updates the current status of a stream by making an HTTP POST request to the Status Endpoint. The POST body contains a JSON [RFC7159] object with the following fields:

stream_id

  • REQUIRED. The stream whose status is being updated.

status

  • REQUIRED. The new status of the Event Stream.

reason

  • OPTIONAL. A short text description that explains the reason for the change.

On receiving a valid request the Event Transmitter responds with a "200 OK" response containing a JSON [RFC7159] representation of the updated stream status in the body, using the same fields as described in the request.

The following is a non-normative example request to update an Event Stream's status:

POST /ssf/status HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "status": "paused"
}
Figure 32: Example: Update Stream Status Request Without Optional Fields

The following is a non-normative example of an Update Stream Status request with an optional reason:

POST /ssf/status HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "status": "paused",
  "reason": "Disabled by administrator action."
}
Figure 33: Example: Update Stream Status Request With Optional Reason

The following is a non-normative example response:

HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "status": "paused",
}
Figure 34: Example: Update Stream Status Response

Errors are signaled with HTTP status codes as follows:

Table 7: Update Stream Status Errors
Code Description
202 if the update request has been accepted, but not processed. Receiver MAY try the same request later in order to get processing result.
400 if the request body cannot be parsed or if the request is otherwise invalid
401 if authorization failed or it is missing
403 if the Event Receiver is not allowed to update the stream status
404 if there is no Event Stream with the given "stream_id" for this Event Receiver

Example:

  1. If a Receiver makes a request to update a stream status, and the Transmitter is unable to decide whether or not to complete the request, then the Transmitter MUST respond with a 202 status code.

7.1.3. Subjects

An Event Receiver can indicate to an Event Transmitter whether or not the receiver wants to receive events about a particular subject by "adding" or "removing" that subject to the Event Stream, respectively.

If a Receiver adds a subject to a stream, the Transmitter SHOULD send any events relating to the subject, which have event_types that the Receiver has subscribed to, and both the stream and the subject are enabled. In the case of Simple Subjects, two subjects match if they are exactly identical. For Complex Subjects, two subjects match if, for all fields in the Complex Subject (i.e. user, group, device, etc.), at least one of the following statements is true:

  1. Subject 1's field is not defined

  2. Subject 2's field is not defined

  3. Subject 1's field is identical to Subject 2's field

7.1.3.1. Adding a Subject to a Stream

To add a subject to an Event Stream, the Event Receiver makes an HTTP POST request to the Add Subject Endpoint, containing in the body a JSON object the following claims:

stream_id

  • REQUIRED. The stream to which the subject is being added.

subject

  • REQUIRED. A Subject claim identifying the subject to be added.

verified

  • OPTIONAL. A boolean value; when true, it indicates that the Event Receiver has verified the Subject claim. When false, it indicates that the Event Receiver has not verified the Subject claim. If omitted, Event Transmitters SHOULD assume that the subject has been verified.

On a successful response, the Event Transmitter responds with an empty "200 OK" response. The Event Transmitter MAY choose to silently ignore the request, for example if the subject has previously indicated to the Transmitter that they do not want events to be transmitted to the Event Receiver. In this case, the transmitter MAY return an empty "200 OK" response or an appropriate error code. See Security Considerations (Section 8).

The following is a non-normative example request to add a subject to a stream, where the subject is identified by an Email Subject Identifier.

POST /ssf/subjects:add HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "subject": {
    "format": "email",
    "email": "example.user@example.com"
  },
  "verified": true
}
Figure 35: Example: Add Subject Request

The following is a non-normative example response to a successful request:

HTTP/1.1 200 OK
Server: transmitter.example.com
Cache-Control: no-store
Figure 36: Example: Add Subject Response

Errors are signaled with HTTP status codes as follows:

Table 8: Add Subject Errors
Code Description
400 if the request body cannot be parsed or if the request is otherwise invalid
401 if authorization failed or it is missing
403 if the Event Receiver is not allowed to add this particular subject, or not allowed to add in general
404 if there is no Event Stream with the given "stream_id" for this Event Receiver, or if the subject is not recognized by the Event Transmitter. The Event Transmitter may choose to stay silent in this second case and respond with "200"
429 if the Event Receiver is sending too many requests in a given amount of time
7.1.3.2. Removing a Subject

To remove a subject from an Event Stream, the Event Receiver makes an HTTP POST request to the Remove Subject Endpoint, containing in the body a JSON object with the following claims:

stream_id

  • REQUIRED. The stream from which the subject is being removed.

subject

  • REQUIRED. A Subject claim identifying the subject to be removed.

On a successful response, the Event Transmitter responds with a "204 No Content" response.

The following is a non-normative example request where the subject is identified by a Phone Number Subject Identifier:

POST /ssf/subjects:remove HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "subject": {
    "format": "phone",
    "phone_number": "+12065550123"
  }
}
Figure 37: Example: Remove Subject Request

The following is a non-normative example response to a successful request:

HTTP/1.1 204 No Content
Server: transmitter.example.com
Cache-Control: no-store
Figure 38: Example: Remove Subject Response

Errors are signaled with HTTP status codes as follows:

Table 9: Remove Subject Errors
Code Description
400 if the request body cannot be parsed or if the request is otherwise invalid
401 if authorization failed or it is missing
403 if the Event Receiver is not allowed to remove this particular subject, or not allowed to remove in general
404 if there is no Event Stream with the given "stream_id" for this Event Receiver, or if the subject is not recognized by the Event Transmitter. The Event Transmitter may choose to stay silent in this second case and respond with "204"
429 if the Event Receiver is sending too many requests in a given amount of time

7.1.4. Verification

In some cases, the frequency of event transmission on an Event Stream will be very low, making it difficult for an Event Receiver to tell the difference between expected behavior and event transmission failure due to a misconfigured stream. Event Receivers can request that a verification event be transmitted over the Event Stream, allowing the receiver to confirm that the stream is configured correctly upon successful receipt of the event. The acknowledgment of a Verification Event also confirms to the Event Transmitter that end-to-end delivery is working, including signature verification and encryption.

A Transmitter MAY send a Verification Event at any time, even if one was not requested by the Event Receiver.

A Transmitter MAY respond to verification event requests even if the event is not present in the events_supported, events_requested and / or events_delivered fields in the Stream Configuration (Section 7.1.1).

7.1.4.1. Verification Event

The Verification Event is an SSF Event with the event type: "https://schemas.openid.net/secevent/ssf/event-type/verification". The event contains the following attribute:

state

  • OPTIONAL An opaque value provided by the Event Receiver when the event is triggered.

As with any SSF event, the Verification Event has a top-level sub_id claim:

sub_id

  • REQUIRED. The value of the top-level sub_id claim in a Verification Event MUST always be set to have a simple value of type opaque. The id of the value MUST be the stream_id of the stream being verified.

  • Note that the subject that identifies a stream itself is always implicitly added to the stream and MAY NOT be removed from the stream.

Upon receiving a Verification Event, the Event Receiver SHALL parse the SET and validate its claims. In particular, the Event Receiver SHALL confirm that the value for "state" is as expected. If the value of "state" does not match, an error response of "setData" SHOULD be returned (see Section 2.3 of [DELIVERYPUSH] or [DELIVERYPOLL]).

In many cases, Event Transmitters MAY disable or suspend an Event Stream that fails to successfully verify based on the acknowledgement or lack of acknowledgement by the Event Receiver.

7.1.4.2. Triggering a Verification Event.

To request that a verification event be sent over an Event Stream, the Event Receiver makes an HTTP POST request to the Verification Endpoint, with a JSON [RFC7159] object containing the parameters of the verification request, if any. On a successful request, the event transmitter responds with an empty "204 No Content" response.

Verification requests have the following properties:

stream_id

  • REQUIRED. The stream that the verification event is being requested on.

state

  • OPTIONAL. An arbitrary string that the Event Transmitter MUST echo back to the Event Receiver in the verification event's payload. Event Receivers MAY use the value of this parameter to correlate a verification event with a verification request. If the verification event is initiated by the transmitter then this parameter MUST not be set.

A successful response from a POST to the Verification Endpoint does not indicate that the verification event was transmitted successfully, only that the Event Transmitter has transmitted the event or will do so at some point in the future. Event Transmitters MAY transmit the event via an asynchronous process, and SHOULD publish an SLA for verification event transmission times. Event Receivers MUST NOT depend on the verification event being transmitted synchronously or in any particular order relative to the current queue of events.

Errors are signaled with HTTP status codes as follows:

Table 10: Verification Errors
Code Description
400 if the request body cannot be parsed or if the request is otherwise invalid
401 if authorization failed or it is missing
404 if there is no Event Stream with the given "stream_id" for this Event Receiver
429 if the Event Receiver is sending too many requests in a given amount of time; see related "min_verification_interval" in Section 7.1.1

The following is a non-normative example request to trigger a verification event:

POST /ssf/verify HTTP/1.1
Host: transmitter.example.com
Authorization: Bearer eyJ0b2tlbiI6ImV4YW1wbGUifQo=
Content-Type: application/json

{
  "stream_id": "f67e39a0a4d34d56b3aa1bc4cff0069f",
  "state": "VGhpcyBpcyBhbiBleGFtcGxlIHN0YXRlIHZhbHVlLgo="
}
Figure 39: Example: Trigger Verification Request

The following is a non-normative example response to a successful request:

HTTP/1.1 204 No Content
Server: transmitter.example.com
Cache-Control: no-store
Figure 40: Example: Trigger Verification Response

And the following is a non-normative example of a verification event sent to the Event Receiver as a result of the above request:

{
  "jti": "123456",
  "iss": "https://transmitter.example.com",
  "aud": "receiver.example.com",
  "iat": 1493856000,
  "sub_id": {
    "format": "opaque",
    "id": "f67e39a0a4d34d56b3aa1bc4cff0069f"
  },
  "events": {
    "https://schemas.openid.net/secevent/ssf/event-type/verification":{
      "state": "VGhpcyBpcyBhbiBleGFtcGxlIHN0YXRlIHZhbHVlLgo="
    }
  }
}
Figure 41: Example: Verification SET

7.1.5. Stream Updated Event

A Transmitter MAY change the stream status without a request from a Receiver. The Transmitter sends an event of type "https://schemas.openid.net/secevent/ssf/event-type/stream-updated" to indicate that it has changed the status of the Event Stream.

If a Transmitter decides to change the status of an Event Stream from "enabled" to either "paused" or "disabled", then the Transmitter MUST send this event to any Receiver that is currently "enabled" to receive events from this stream.

If the Transmitter changes the status of the stream from either "paused" or "disabled" to "enabled", then it MUST send this event to any Receiver that has previously been enabled to receive events for the stream.

A Transmitter MAY send a Stream Updated event even if the event is not present in the events_supported, events_requested and / or events_delivered fields in the Stream Configuration (Section 7.1.1).

The "stream-updated" event contains the following claims:

status

  • REQUIRED. Defines the new status of the stream.

reason

  • OPTIONAL. Provides a short description of why the Transmitter has updated the status.

As with any SSF Event, this event has a top-level sub_id claim:

sub_id

  • REQUIRED. The top-level sub_id claim specifies the Stream Id for which the status has been updated. The value of the sub_id field MUST be of format opaque, and its id value MUST be the unique ID of the stream.

  • Note that the subject that identifies a stream itself is always implicitly added to the stream and MAY NOT be removed from the stream.

  • Below is a non-normative example of a stream-updated event.

{
  "jti": "123456",
  "iss": "https://transmitter.example.com",
  "aud": "receiver.example.com",
  "iat": 1493856000,
  "sub_id": {
    "format": "opaque",
    "id" : "f67e39a0a4d34d56b3aa1bc4cff0069f"
  },
  "events": {
    "https://schemas.openid.net/secevent/ssf/event-type/stream-updated": {
      "status": "paused",
      "reason": "Internal error"
    }
  }
}
Figure 42: Example: Stream Updated SET

8. Security Considerations

8.1. Subject Probing

It may be possible for an Event Transmitter to leak information about subjects through their responses to add subject requests. A "404" response may indicate to the Event Receiver that the subject does not exist, which may inadvertently reveal information about the subject (e.g. that a particular individual does or does not use the Event Transmitter's service).

Event Transmitters SHOULD carefully evaluate the conditions under which they will return error responses to add subject requests. Event Transmitters MAY return a "204" response even if they will not actually send any events related to the subject, and Event Receivers MUST NOT assume that a 204 response means that they will receive events related to the subject.

8.2. Information Harvesting

SETs may contain personally identifiable information (PII) or other non-public information about the event transmitter, the subject (of an event in the SET), or the relationship between the two. It is important for Event Transmitters to understand what information they are revealing to Event Receivers when transmitting events to them, lest the event stream become a vector for unauthorized access to private information.

Event Transmitters SHOULD interpret add subject requests as statements of interest in a subject by an Event Receiver, and ARE NOT obligated to transmit events related to every subject an Event Receiver adds to the stream. Event Transmitters MAY choose to transmit some, all, or no events related to any given subject and SHOULD validate that they are permitted to share the information contained within an event with the Event Receiver before transmitting the event. The mechanisms by which such validation is performed are outside the scope of this specification.

8.3. Malicious Subject Removal

A malicious party may find it advantageous to remove a particular subject from a stream, in order to reduce the Event Receiver's ability to detect malicious activity related to the subject, inconvenience the subject, or for other reasons. Consequently it may be in the best interests of the subject for the Event Transmitter to continue to send events related to the subject for some time after the subject has been removed from a stream.

Event Transmitters MAY continue sending events related to a subject for some amount of time after that subject has been removed from the stream. Event Receivers MUST tolerate receiving events for subjects that have been removed from the stream, and MUST NOT report these events as errors to the Event Transmitter.

9. Privacy Considerations

9.1. Subject Information Leakage

Event issuers and recipients SHOULD take precautions to ensure that they do not leak information about subjects via Subject Identifiers, and choose appropriate Subject Identifier Types accordingly. Parties SHOULD NOT identify a subject using a given Subject Identifier Type if doing so will allow the recipient to correlate different claims about the subject that they are not known to already have knowledge of. Transmitters and Receivers SHOULD always use the same Subject Identifier Type and the same claim values to identify a given subject when communicating with a given party in order to reduce the possibility of information leakage.

9.2. Previously Consented Data

If SSF events contain new values for attributes of Subject Principals that were previously exchanged between the Transmitter and Receiver, then there are no additional privacy considerations introduced by providing the updated values in the SSF events, unless the attribute was exchanged under a one-time consent obtained from the user.

9.3. New Data

Data that was not previously exchanged between the Transmitter and the Receiver, or data whose consent to exchange has expired has the following considerations:

9.3.1. Organizational Data

If a user has previously agreed with a Transmitter that they agree to release certain data to third-parties, then the Transmitter MAY send such data in SSF events without additional consent of the user. Such data MAY include organizational data about the Subject Principal that was generated by the Transmitter.

9.3.2. Consentable Data

If a Transmitter intends to include data in SSF events that is not previously consented to be released by the user, then the Transmitter MUST obtain consent to release such data from the user in accordance with the Transmitter's privacy policy.

10. Profiles

This section is a profile of the following IETF SecEvent specifications:

The RISC use cases that set the requirements are described in Security Events RISC Use Cases [USECASES].

The CAEP use cases that set the requirements are described in CAEP Use Cases (TODO: Add reference when file is added to repository.)

10.1. Security Event Token Profile

This section provides SSF profiling specifications for the Security Event Token (SET) [RFC8417] spec.

10.1.1. Signature Key Resolution

The signature key can be obtained through "jwks_uri", see Section 6.

10.1.2. SSF Event Subject

The primary Subject Member of SSF events is described in the "Subject Members" section (Section 3). The JWT "sub" claim MUST NOT be present in any SET containing an SSF event.

10.1.3. SSF Event Properties

The SSF event MAY contain additional claims within the event payload that are specific to the event type.

{
  "iss": "https://idp.example.com/",
  "jti": "756E69717565206964656E746966696572",
  "iat": 1520364019,
  "aud": "636C69656E745F6964",
  "sub_id": {
    "format": "phone",
    "phone_number": "+1 206 555 0123"
  },
  "events": {
    "https://schemas.openid.net/secevent/risc/event-type/account-disabled": {
      "subject": {
        "format": "phone",
        "phone_number": "+1 206 555 0123"
      },
      "reason": "hijacking",
      "cause-time": 1508012752
    }
  }
}
Figure 43: Example: SET Containing a RISC Event with a Phone Number Subject
{
  "iss": "https://idp.example.com/",
  "jti": "756E69717565206964656E746966696572",
  "iat": 1520364019,
  "aud": "636C69656E745F6964",
  "sub_id": {
    "format": "email",
    "email": "user@example.com"
  },
  "events": {
    "https://schemas.openid.net/secevent/caep/event-type/token-claims-changed": {
      "subject": {
        "format": "email",
        "email": "user@example.com"
      },
      "token": "some-token-value"
    }
  }
}
Figure 44: Example: SET Containing a CAEP Event with Properties

10.1.4. Explicit Typing of SETs

SSF events MUST use explicit typing as defined in Section 2.3 of [RFC8417].

{
  "typ":"secevent+jwt",
  "alg":"HS256"
}
Figure 45: Explicitly Typed JOSE Header

The purpose is defense against confusion with other JWTs, as described in Sections 4.5, 4.6 and 4.7 of [RFC8417]. While current Id Token [OpenID.Core] validators may not be using the "typ" header parameter, by requiring it for SSF SETs a distinct value is guaranteed for future validators.

10.1.5. The "exp" Claim

The "exp" claim MUST NOT be used in SSF SETs.

The purpose is defense in depth against confusion with other JWTs, as described in Sections 4.5 and 4.6 of [RFC8417].

10.1.6. The "aud" Claim

The "aud" claim can be a single string or an array of strings. Values that uniquely identify the Receiver to the Transmitter MAY be used, if the two parties have agreement on the format.

More than one value can be present if the corresponding Receivers are known to the Transmitter to be the same entity, for example a web client and a mobile client of the same application. All the Receivers in this case MUST use the exact same delivery method.

If multiple Receivers have the exact same delivery configuration but the Transmitter does not know if they belong to the same entity then the Transmitter SHOULD issue distinct SETs for each Receiver and deliver them separately. In this case the multiple Receivers might use the same service to process SETs, and this service might reroute SETs to respective Receivers, an "aud" claim with multiple Receivers would lead to unintended data disclosure.

{
  "jti": "123456",
  "iss": "https://transmitter.example.com",
  "aud": ["receiver.example.com/web", "receiver.example.com/mobile"],
  "iat": 1493856000,
  "events": {
    "https://schemas.openid.net/secevent/ssf/event-type/verification": {
      "state": "VGhpcyBpcyBhbiBleGFtcGxlIHN0YXRlIHZhbHVlLgo="
    }
  }
}
Figure 46: Example: SET with array 'aud' claim

10.1.7. The "events" claim

The "events" claim SHOULD contain only one event. Multiple event type URIs are permitted only if they are alternative URIs defining the exact same event type.

10.1.8. Security Considerations

10.1.8.1. Distinguishing SETs from other Kinds of JWTs

Of particular concern is the possibility that SETs are confused for other kinds of JWTs. The Security Considerations section of [RFC8417] has several sub-sections on this subject. The Shared Signals Framework is asking for further restrictions:

10.2. SET Token Delivery Using HTTP Profile

This section provides SSF profiling specifications for the [DELIVERYPUSH] and [DELIVERYPOLL] specs.

10.2.1. Stream Configuration Metadata

Each delivery method is identified by a URI, specified below by the "method" metadata.

10.2.1.1. Push Delivery using HTTP

This section provides SSF profiling specifications for the [DELIVERYPUSH] spec.

method

  • "urn:ietf:rfc:8935"

endpoint_url

  • The URL where events are pushed through HTTP POST. This is set by the Receiver. If a Reciever is using multiple streams from a single Transmitter and needs to keep the SETs separated, it is RECOMMENDED that the URL for each stream be unique.

authorization_header

  • The HTTP Authorization header that the Transmitter MUST set with each event delivery, if the configuration is present. The value is optional and it is set by the Receiver.

10.2.1.2. Polling Delivery using HTTP

This section provides SSF profiling specifications for the [DELIVERYPOLL] spec.

method

  • "urn:ietf:rfc:8936"

endpoint_url

  • The URL where events can be retrieved from. This is specified by the Transmitter. These URLs MAY be reused across Receivers, but MUST be unique per stream for a given Receiver.

11. IANA Considerations

Subject Identifiers defined in this document will be added to the "Security Events Subject Identifier Types" registry. This registry is defined in the Subject Identifiers for Security Event Tokens [SUBIDS] specification.

12. References

12.1. Normative References

[CAEP]
Cappalli, T. and A. Tulshibagwale, "OpenID Continuous Access Evaluation Profile 1.0 - draft 02", , <https://openid.net/specs/openid-caep-specification-1_0.html>.
[CLIENTCRED]
Hardt, D., "The OAuth 2.0 Authorization Framework - Client Credentials Grant", DOI 10.17487/RFC6749, RFC 6749, , <https://tools.ietf.org/html/rfc6749#section-4.4>.
[DELIVERYPOLL]
Backman, A., Jones, M., Scurtescu, M. S., Ansari, M., and A. Nadalin, "Poll-Based SET Token Delivery Using HTTP", , <https://www.rfc-editor.org/info/rfc8936>.
[DELIVERYPUSH]
Backman, A., Jones, M., Hunt, P., Scurtescu, M. S., Ansari, M., and A. Nadalin, "Push-Based SET Token Delivery Using HTTP", , <https://www.rfc-editor.org/info/rfc8935>.
[NAMINGCONVENTION]
Foundation, O., "OpenID Naming and Content of Specifications", n.d., <https://openid.net/wg/resources/naming-and-contents-of-specifications/>.
[OASIS.saml-core-2.0-os]
Cantor, S., Kemp, J., Philpott, R., and E. Maler, "Assertions and Protocol for the OASIS Security Assertion Markup Language (SAML) V2.0", OASIS Standard saml-core-2.0-os, .
[OpenID.Core]
Sakimura, N., Bradley, J., Jones, M. B., de Medeiros, B., and C. Mortimore, "OpenID Connect Core 1.0 - ID Token", , <http://openid.net/specs/openid-connect-core-1_0.html#IDToken>.
[RFC2119]
Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, , <https://www.rfc-editor.org/info/rfc2119>.
[RFC5785]
Nottingham, M. and E. Hammer-Lahav, "Defining Well-Known Uniform Resource Identifiers (URIs)", RFC 5785, DOI 10.17487/RFC5785, , <https://www.rfc-editor.org/info/rfc5785>.
[RFC6749]
Hardt, D., Ed., "The OAuth 2.0 Authorization Framework", RFC 6749, DOI 10.17487/RFC6749, , <https://www.rfc-editor.org/info/rfc6749>.
[RFC6750]
Jones, M. and D. Hardt, "The OAuth 2.0 Authorization Framework: Bearer Token Usage", RFC 6750, DOI 10.17487/RFC6750, , <https://www.rfc-editor.org/info/rfc6750>.
[RFC7159]
Bray, T., Ed., "The JavaScript Object Notation (JSON) Data Interchange Format", RFC 7159, DOI 10.17487/RFC7159, , <https://www.rfc-editor.org/info/rfc7159>.
[RFC7517]
Jones, M., "JSON Web Key (JWK)", RFC 7517, DOI 10.17487/RFC7517, , <https://www.rfc-editor.org/info/rfc7517>.
[RFC7519]
Jones, M., Bradley, J., and N. Sakimura, "JSON Web Token (JWT)", RFC 7519, DOI 10.17487/RFC7519, , <https://www.rfc-editor.org/info/rfc7519>.
[RFC8174]
Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, , <https://www.rfc-editor.org/info/rfc8174>.
[RFC8414]
Jones, M., Sakimura, N., and J. Bradley, "OAuth 2.0 Authorization Server Metadata", RFC 8414, DOI 10.17487/RFC8414, , <https://www.rfc-editor.org/info/rfc8414>.
[RFC8417]
Hunt, P., Ed., Jones, M., Denniss, W., and M. Ansari, "Security Event Token (SET)", RFC 8417, DOI 10.17487/RFC8417, , <https://www.rfc-editor.org/info/rfc8417>.
[RISC]
Scurtescu, M., Backman, A., Hunt, P., Bradley, J., Bounev, S., and A. Tulshibagwale, "OpenID RISC Profile Specification 1.0 - draft 02", , <https://openid.net/specs/openid-risc-profile-specification-1_0.html>.
[SUBIDS]
Backman, A., Scurtescu, M., and P. Jain, "Subject Identifiers for Security Event Tokens", , <https://datatracker.ietf.org/doc/html/draft-ietf-secevent-subject-identifiers>.

12.2. Informative References

[USECASES]
Scurtescu, M., "Security Events RISC Use Cases", , <https://tools.ietf.org/html/draft-scurtescu-secevent-risc-use-cases-00>.

Appendix A. Acknowledgements

The authors wish to thank all members of the OpenID Foundation SSF Working Group who contributed to the development of this specification.

Appendix B. Notices

Copyright (c) 2023 The OpenID Foundation.

The OpenID Foundation (OIDF) grants to any Contributor, developer, implementer, or other interested party a non-exclusive, royalty free, worldwide copyright license to reproduce, prepare derivative works from, distribute, perform and display, this Implementers Draft or Final Specification solely for the purposes of (i) developing specifications, and (ii) implementing Implementers Drafts and Final Specifications based on such documents, provided that attribution be made to the OIDF as the source of the material, but that such attribution does not indicate an endorsement by the OIDF.

The technology described in this specification was made available from contributions from various sources, including members of the OpenID Foundation and others. Although the OpenID Foundation has taken steps to help ensure that the technology is available for distribution, it takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this specification or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any independent effort to identify any such rights. The OpenID Foundation and the contributors to this specification make no (and hereby expressly disclaim any) warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to this specification, and the entire risk as to implementing this specification is assumed by the implementer. The OpenID Intellectual Property Rights policy requires contributors to offer a patent promise not to assert certain patent claims against other contributors and against implementers. The OpenID Foundation invites any interested party to bring to its attention any copyrights, patents, patent applications, or other proprietary rights that may cover technology that may be required to practice this specification.

Appendix C. Document History

[[ To be removed from the final specification ]]

-02

* added spec version to metadata
* Added description as receiver supplied
* added language to make verification and updated events independent of events_supported
* added top-level sub_id claim. Modified existing language to reflect the use of the sub_id claim
* updated text to reflect sub_id as a top-level field in verification and stream updated events
* #46 add stream exists behavior
* update stream exists to 409
* Add 'format' to normative examples in CAEP
* Remove 'format' from stream config
* Remove subject from stream status (#88)
* Add reason to GET /status response
* Make reason look like an enum in the example to indicate how we expect it to be used
* Fixes #60 - are subjects required
* Added format field to complex subjects and updated examples (#71)
* Switch stray '204 OK' to read '204 No Content' (#73)
* Change 'jwt-id' to 'jwt_id' to match style of other subject formats (#63)
* resolving issue #45 added explanatory text to Stream Configuration (#68)
* #28 update delivery method references to URNs (#49)
* Changed jwks_uri from REQUIRED to OPTIONAL (#47)
* Sse to ssf (#43)
* updated SSE to Shared Signals in all files
* changed source format to md
* renamed files to be called sharedsignals instead of SSE. No change to the content (#41)
* Add stream_id to SSE Framework spec as per Issue 4: https://github.com/openid/sse/issues/4
* Update README with development instructions and fix error in Makefile
* Added note to PUSH/POLL section about uniqueness requirements for the URLs
* Add explanation about what an Event Stream is
* Change terms to Transmitter-Supplied and Receiver-Supplied
* Pragma is an obsolete HTTP header
* It's unnecessary to specify the character as UTF-8 in all examples (#10)
* Fix issue #18 by converting saml-assertion-id to saml_assertion_id to maintain consistent formatting with other subject identifiers (#1)
* updated backward compatibility language
* added section for Transmitter Configuration Metadata RISC compatibility

Contributors

Steve Venema
ForgeRock

Steve defined the format field of Complex Subjects

Apoorva Deshpande
Okta

Authors' Addresses

Atul Tulshibagwale
SGNL
Tim Cappalli
Microsoft
Marius Scurtescu
Coinbase
Annabelle Backman
Amazon
John Bradley
Yubico
Shayne Miel
Cisco