<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.17 (Ruby 2.6.10) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-ietf-scim-device-model-11" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="SCIM Device Schema Extensions">Device Schema Extensions to the SCIM model</title>

    <author initials="M." surname="Shahzad" fullname="Muhammad Shahzad">
      <organization>North Carolina State University</organization>
      <address>
        <postal>
          <street>Department of Computer Science</street> <street>890 Oval Drive</street> <street>Campus Box 8206</street>
          <city>Raleigh, NC</city>
          <code>27695-8206</code>
          <country>USA</country>
        </postal>
        <email>mshahza@ncsu.edu</email>
      </address>
    </author>
    <author initials="H." surname="Iqbal" fullname="Hassan Iqbal">
      <organization>North Carolina State University</organization>
      <address>
        <postal>
          <street>Department of Computer Science</street> <street>890 Oval Drive</street> <street>Campus Box 8206</street>
          <city>Raleigh, NC</city>
          <code>27695-8206</code>
          <country>USA</country>
        </postal>
        <email>hassaniqbal931@gmail.com</email>
      </address>
    </author>
    <author initials="E." surname="Lear" fullname="Eliot Lear">
      <organization>Cisco Systems</organization>
      <address>
        <postal>
          <street>Richtistrasse 7</street>
          <city>Wallisellen</city>
          <code>CH-8304</code>
          <country>Switzerland</country>
        </postal>
        <phone>+41 44 878 9200</phone>
        <email>lear@cisco.com</email>
      </address>
    </author>

    <date year="2025" month="January" day="07"/>

    
    
    <keyword>Internet-Draft</keyword>

    <abstract>


<?line 71?>

<t>The initial core schema for SCIM (System for Cross Identity
Management) was designed for provisioning users. This memo specifies
schema extensions that enables provisioning of devices, using various
underlying bootstrapping systems, such as Wi-fi Easy Connect, FIDO
device onboarding vouchers, BLE passcodes, and MAC authenticated bypass.</t>



    </abstract>



  </front>

  <middle>


<?line 79?>

<section anchor="introduction"><name>Introduction</name>

<t>The Internet of Things presents a management challenge in many
dimensions. One of them is the ability to onboard and manage large
number of devices. There are many models for bootstrapping trust
between devices and network deployments. Indeed it is expected that
different manufacturers will make use of different methods.</t>

<t>SCIM (System for Cross Identity Management) <xref target="RFC7643"/> <xref target="RFC7644"/>
defines a protocol and a schema for provisioning of users. However, it
can easily be extended to provision device credentials and other
attributes into a network. The protocol and core schema were designed
to permit just such extensions. Bulk operations are supported. This is
good because often devices are procured in bulk.</t>

<t>A primary purpose of this specification is to provision the network
for onboarding and communications access to and from devices within a
local deployment based on the underlying capabilities of those
devices. The underlying security mechanisms of some devices range from
non-existent such as the Bluetooth Low Energy (BLE) "Just Works"
pairing method to a robust FIDO Device Onboard (FDO) mechanism.
Information from the SCIM server is dispatched to control functions
based on selected schema extensions to enable these communications
within a network.  The SCIM database is therefore essentially
equivalent to a network's Authentication, Authorization, and
Accounting (AAA) database, and should be carefully treated as such.</t>

<section anchor="why-scim-for-devices"><name>Why SCIM for devices?</name>
<t>Some might ask why SCIM is well suited for this purpose and not, for
example, NETCONF <xref target="RFC6241"/> or RESTCONF <xref target="RFC8040"/> with YANG
<xref target="RFC7950"/>. After all, there are all sorts of existing models
available. The answer is that the only information being passed about
the device is neither state nor device configuration information, but
only information necessary to bootstrap trust so that the device may
establish connectivity.</t>

</section>
<section anchor="protocol-participants"><name>Protocol Participants</name>

<t>In the normal SCIM model, it was presumed that large federated
deployments would be SCIM clients who provision and remove employees
and contractors as they enter and depart those deployments, and
federated services such as sales, payment, or conferencing services
would be the servers.</t>

<t>In the device model, the roles are reversed, and may be somewhat more
varied. A deployment network management system gateway (NMS gateway)
plays the role of the server, receiving information about devices that
are expected to be connected to its network. That server will apply
appropriate local policies regarding whether/how the device should be
connected.</t>

<t>The client may be one of a number of entities:</t>

<t><list style="symbols">
  <t>A vendor who is authorized to add devices to a network as part of
a sales transaction. This is similar to the sales integration
sometimes envisioned by Bootstrapping Remote Key Infrastructure
(BRSKI) <xref target="RFC8995"/>.</t>
  <t>A client application that administrators or employees use to add,
remove, or get information about devices. An example might be an
tablet or phone app that scans Wi-fi Easy Connect QR codes.</t>
</list></t>

<figure title="Basic Architecture" anchor="arch"><artwork><![CDATA[

                            +-----------------------------------+
                            |                                   |
    +-----------+   Request |  +---------+                      |
    | onboarding|------------->|  SCIM   |                      |
    |    app    |<-------------| Server  |                      |
    +-----------+  Ctrl Endpt  +---------+                      |
                            |                                   |
    +-----------+           |  +------------+         +-------+ |
    |  Control  |...........|..|    ALG     |.........|device | |
    |    App    |           |  +------------+         +-------+ |
    +-----------+           |                                   |
                            |                                   |
                            +-----------------------------------+

]]></artwork></figure>

<t>In <xref target="arch"/>, the onboarding app provides the device particulars. As
part of the response, the SCIM server might provide additional
information, especially in the case of non-IP devices, where an
application-layer gateway may need to be used to communicate with
the device. The control endpoint is one among a number of objects
that may be returned.</t>

</section>
<section anchor="schema-description"><name>Schema Description</name>

<t>RFC 7643 does not prescribe a language to describe a schema. We have
chosen the JSON schema language <xref target="I-D.bhutton-json-schema"/> for this
purpose. The use of XML for SCIM devices is not supported.</t>

<t>Several additional schemas specify specific onboarding mechanisms,
such as BLE and Wi-fi Easy Connect.</t>

</section>
<section anchor="schema-representation"><name>Schema Representation</name>

<t>Attributes defined in the device core schema and extensions comprise
characteristics and SCIM datatypes defined in Sections 2.2 and 2.3 of
the <xref target="RFC7643"/>. This specifciation does not define new
characteristics and datatypes for the SCIM attributes.</t>

</section>
<section anchor="terminology"><name>Terminology</name>
<t>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 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

</section>
</section>
<section anchor="resourcetype-device"><name>ResourceType Device</name>

<t>A new resource type 'Device' is specified. The "ResourceType" schema
specifies the metadata about a resource type (see section 6 of
<xref target="RFC7643"/>).  It comprises a core device schema and several
extension schemas. The core schema provides a minimal resource
representation, whereas extension schemas extend the core schema
depending on the device's capability. The JSON schema for Device
resource type is in <xref target="resource-schema"/>.</t>

<section anchor="common-attributes"><name>Common Attributes</name>

<t>The Device schema contains three common attributes as defined in the
<xref target="RFC7643"/>.</t>

<t>id</t>

<t>An id is a required and unique attribute of the device core schema
(see section 3.1 of <xref target="RFC7643"/>).</t>

<t>externalID</t>

<t>An externalID is an optional attribute (see section 3.1 of <xref target="RFC7643"/>).</t>

<t>meta</t>

<t>Meta is a complex attribute and is required (see section 3.1 of <xref target="RFC7643"/>).</t>

</section>
</section>
<section anchor="scim-core-device-schema"><name>SCIM Core Device Schema</name>

<t>The core device schema provides the minimal representation of a
resource "Device". It contains only those attributes that any device
may need, and only one attribute is required. The core schema for
"Device" is identified using the schema URI:
"urn:ietf:params:scim:schemas:core:2.0:Device". The following
attributes are defined in the device core schema.</t>

<section anchor="singular-attributes"><name>Singular Attributes</name>

<t>displayName</t>

<t>This attribute is of type "string" and provides a human-readable name 
for a device. It is intended to be displayed to end-users and should be
suitable for that purpose. The attribute is not required, and is not 
case-sensitive. It may be modified and SHOULD be returned 
by default. No uniqueness constraints are imposed on this attribute.</t>

<t>active</t>

<t>The "active" attribute is of type "boolean" and is a mutable
attribute, and is required. If set to TRUE, it means that this device
is intended to be operational. Attempts to control or access a device
where this value is set to FALSE may fail. For example, when used in
conjunction with NIPC <xref target="I-D.brinckman-nipc"/>, commands such as
connect, disconnect, subscribe that control app sends to the
controller for the devices any command coming from the control app for
the device will be rejected by the controller.</t>

<t>mudUrl</t>

<t>The mudUrl attribute represents the URL to the MUD file associated
with this device. This attribute is optional and mutable. The mudUrl
value is case sensitive and not unique. When present, this attribute
may be used as described in <xref target="RFC8520"/>. This attribute is case 
sensitive and returned by default.</t>

<texttable title="Characteristics of device schema attributes. (Req = Required,
T = True, F = False, RW = ReadWrite, and Def = Default)" anchor="tabDevice">
      <ttcol align='left'>Attribute</ttcol>
      <ttcol align='left'>Multi Value</ttcol>
      <ttcol align='left'>Req</ttcol>
      <ttcol align='left'>Case Exact</ttcol>
      <ttcol align='left'>Mutable</ttcol>
      <ttcol align='left'>Return</ttcol>
      <ttcol align='left'>Unique</ttcol>
      <c>displayName</c>
      <c>F</c>
      <c>F</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>active</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>mudUrl</c>
      <c>F</c>
      <c>F</c>
      <c>T</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
</texttable>

<t>An example of a device SCIM object is as follows:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
        "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Device"],
        "id": "e9e30dba-f08f-4109-8486-d5c6a3316111",
        "displayName": "BLE Heart Monitor",
        "active": true,
        "meta": {
          "resourceType": "Device",
      "created": "2022-01-23T04:56:22Z",
          "lastModified": "2022-05-13T04:42:34Z",
          "version": "W\/\"a330bc54f0671c9\"",
          "location": "https://example.com/v2/Device/e9e30dba-f08f
             -4109-8486-d5c6a3316111"
        }
}
<CODE ENDS>
]]></artwork></figure>

<t>The schema for the device is presented in JSON format in Section
<xref target="device-schema-json"/>, while the openAPI representation is provided in 
Section <xref target="device-schema-openapi-representation"/>.</t>

</section>
</section>
<section anchor="device-groups"><name>Device Groups</name>

<t>Device groups are created using the SCIM groups as defined in
<xref target="RFC7643"/> Section 4.2.</t>

</section>
<section anchor="resource-type-endpointapp"><name>Resource Type EndpointApp</name>

<t>This section defines a new resource type, 'EndpointApp'. The 
"ResourceType" schema specifies the metadata about a resource type 
(see section 6 of <xref target="RFC7643"/>). The resource "EndpointApp" represents
client applications that can control and/or receive data from the
devices. The JSON schema for EndpointApp resource type is in <xref target="resource-schema"/>.</t>

<t>The attributes comprising EndpointsApp are listed in <xref target="endpointapp-schema"/>.
The "EndpointApp" are included in the endpoint applications extension 
("endpointAppsExt") <xref target="endpointsappext-schema"/>.</t>

</section>
<section anchor="endpointapp-schema"><name>SCIM EndpointApp Schema</name>

<t>The EndpointApp schema is used to authorize clients control
or telemetry services for clients.  The schema identifies the application
and how clients are to authenticate to the various services.</t>

<t>The schema for "EndpointApp" is identified using the schema URI:
"urn:ietf:params:scim:schemas:core:2.0:EndpointApp". The following
attributes are defined in this schema.</t>

<section anchor="common-attributes-1"><name>Common Attributes</name>

<t>The EndpointApp schema contains three common attributes as defined in the
<xref target="RFC7643"/>.</t>

</section>
<section anchor="singular-attributes-1"><name>Singular Attributes</name>

<t>applicationType</t>

<t>This attribute is of type "string" and represents the type of 
application. It will only contain two values; 'deviceControl' 
or 'telemetry'. 'deviceControl' is the application that sends commands
to control the device. 'telemetry' is the application that receives
data from the device. The attribute is required, and is not 
case-sensitive. The attribute is readOnly and should be returned 
by default. No uniqueness constraints are imposed on this attribute.</t>

<t>applicationName</t>

<t>The "applicationName" attribute is of type "string" and represents a
human readable name for the application. This attribute is required and
mutable. The attribute should be returned by default and there is no 
uniqueness contraint on the attribute.</t>

<t>clientToken</t>

<t>This attribute type string contains a token that the client will use
to authenticate itself. Each token may be a string up to 500
characters in length. It is not mutable, read-only, generated if
no certificateInfo object is provisioned, case sensitive and returned
by default if it exists.  The SCIM server should expect that client
tokens will be shared by the SCIM client with other components within
the client's infrastructure.</t>

</section>
<section anchor="complex-attributes"><name>Complex Attributes</name>

<section anchor="certificateinfo"><name>certificateInfo</name>

<t>It is the complex attribute that contains x509 certificate's subject
name and root CA information associated with application clients that
will connect for purposes of device control or telemetry.</t>

<t>rootCA</t>

<t>This is the base64 encoding a trust anchor certificate as
described in <xref target="rfc4648"/> Section 4.  This trust anchor is applicable
for certificates used for client application access.  The object
is not required, singular, case sensitive, and read/write.  If not
present, a set of trust anchors MUST be configured out of band.</t>

<t>subjectName</t>

<t>If present, this field may contain one of two names:</t>

<t><list style="symbols">
  <t>a distinguished name as that will be present in the certificate
subject field, as de  scribed in Section 4.1.2.4 of <xref target="RFC5280"/>; or</t>
  <t>or a dnsName as part of a subjectAlternateName as  described in
Section 4.2.1.6 of <xref target="RFC5280"/>.</t>
</list></t>

<t>In the latter case, servers validating such certificates SHALL reject
connections when name of the peer as resolved by a DNS reverse lookup
does not match the dnsName in the certificate.  If multiple dnsNames
are present, it is left to server implementations to address any
authorization conflicts associated with those names.  This attribute
is not required, read write, singular and NOT case sensitive.</t>

<texttable title="Characteristics of EndpointApp schema attributes. (Req = Required, T = True, F = False, R = ReadOnly, RW = ReadWrite, Manuf = Manufacturer, N = No, and Def = Default)" anchor="tabEndpointApp">
      <ttcol align='left'>Attribute</ttcol>
      <ttcol align='left'>Multi Value</ttcol>
      <ttcol align='left'>Req</ttcol>
      <ttcol align='left'>Case Exact</ttcol>
      <ttcol align='left'>Mutable</ttcol>
      <ttcol align='left'>Return</ttcol>
      <ttcol align='left'>Unique</ttcol>
      <c>applicationType</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>R</c>
      <c>Def</c>
      <c>None</c>
      <c>applicationName</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>clientToken</c>
      <c>F</c>
      <c>F</c>
      <c>T</c>
      <c>R</c>
      <c>N</c>
      <c>None</c>
      <c>certificateInfo</c>
      <c>F</c>
      <c>F</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>rootCA</c>
      <c>F</c>
      <c>F</c>
      <c>T</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>subjectName</c>
      <c>F</c>
      <c>T</c>
      <c>T</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
</texttable>

<t>Note that either clientToken and certificateInfo are used for the
authentication of the application.  If certificateInfo is NOT present
when an endpointApp is object created, then the server SHOULD return
a clientToken.  Otherwise, if the server accepts the certificateInfo
object for authentication, it SHOULD NOT return a clientToken.
If the server accepts and produces a clientToken, then control and
telemetry servers MUST validate both.  The SCIM client will know
that this is the case based on the SCIM object that is returned.</t>

<t>certificateInfo is preferred in situations where client functions
are federated such that different clients may connect for different
purposes.</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "schemas": ["urn:ietf:params:scim:schemas:core:2.0:EndpointApp"],
  "id": "e9e30dba-f08f-4109-8486-d5c6a3316212",
  "applicationType": "deviceControl",
  "applicationName": "Device Control App 1",
  "certificateInfo": {
      "rootCA" : "MIIBIjAN...",
      "subjectName": "wwww.example.com"
  },
  "meta": {
    "resourceType": "EndpointApp",
    "created": "2022-01-23T04:56:22Z",
    "lastModified": "2022-05-13T04:42:34Z",
    "version": "W\/\"a330bc54f0671c9\"",
    "location": "https://example.com/v2/EndpointApp/e9e30dba-f08f
       -4109-8486-d5c6a3316212"
  }
}
<CODE ENDS>
]]></artwork></figure>

<t>The schema for the endpointApp is presented in JSON format in Section
<xref target="endpointapp-schema-json"/>, while the openAPI representation is provided in 
Section <xref target="endpointapp-schema-openapi-representation"/>.</t>

</section>
</section>
</section>
<section anchor="extensions"><name>SCIM Device Extensions</name>

<t>SCIM provides various extension schemas, their attributes, JSON
representation, and example object. The core schema is extended with a
new resource type, as described in <xref target="resource-schema"/>.  No
schemaExtensions list is specified in that definition.  Instead, an
IANA registry is created, where all values for "required" are set to
false.  All extensions to the Device schema MUST be registered via IANA,
as described in <xref target="device-schema-extensions"></xref>.  The schemas below demonstrate how
this model is to work.</t>

<section anchor="ble-extension"><name>BLE Extension</name>

<t>This schema extends the device schema to represent the devices
supporting BLE. The extension is identified using the following 
schema URI:</t>

<t>urn:ietf:params:scim:schemas:extension:ble:2.0:Device</t>

<t>The attributes are as follows:</t>

<section anchor="singular-attributes-2"><name>Singular Attributes</name>

<t>deviceMacAddress</t>

<t>A string value that represent a public MAC address assigned by the 
manufacturer. It is a unique  48-bit value. Ir is required, case 
insensitive, and it is mutable and return as default. The regex 
pattern is the following:</t>

<figure><artwork><![CDATA[
^[0-9A-Fa-f]{2}(:[0-9A-Fa-f]{2}){5}$
]]></artwork></figure>

<t>isRandom</t>

<t>A boolean flag taken from the BLE core specification, 5.3. If FALSE,
the device is using a public MAC address. If TRUE, the device uses a
random address.  If an Idenifying Resolving Key (IRK) is present, the
address represents a resolvable private address.  Otherwise, the
address is assumed to be a random static address.  Non-resolvable
private addresses are not supported by this specification.  This
attribute is not required. It is mutable, and is returned by default.
The default value is FALSE.</t>

<t>separateBroadcastAddress</t>

<t>When present, this address is used for broadcasts/advertisements.
This value MUST NOT be set when an IRK is provided. Its form is the
same as deviceMacAddress. It is not required, multivalued, mutable,
and returned by default.</t>

<t>irk</t>

<t>A string value that specifies the identity resolving key (IRK), which
is unique to each device. It is used to resolve private random
address. It should only be provisioned when isRandom is TRUE. It is
mutable and never returned.  For more information about the use of
the IRK, see Section 5.4.5 of <xref target="BLE54"/>.</t>

<t>mobility</t>

<t>A boolean attribute to enable BLE device mobility. If set to TRUE, the
device could be expected to move within a network of APs.  For
example, BLE device is connected with AP-1 and moves out of range but
comes in range of AP-2, it will be disconnected with AP-1 and connects
with AP-2. It is returned by default and mutable.</t>

</section>
<section anchor="multivalued-attributes"><name>Multivalued Attributes</name>

<t>versionSupport</t>

<t>A multivalued attribute that provides all the BLE versions supported by the
device in the form of an array. For example, 
[4.1, 4.2, 5.0, 5.1, 5.2, 5.3]. It is required, mutable, and 
return as default.</t>

<t>pairingMethods</t>

<t>An array of pairing methods associated with the BLE
device. The pairing methods may require sub-attributes, such as
key/password, for the device pairing process. To enable the
scalability of pairing methods in the future, they are represented as
extensions to incorporate various attributes that are part of the
respective pairing process. Pairing method extensions are nested
inside the BLE extension. It is required, case sensitive, mutable, and 
returned by default.</t>

</section>
<section anchor="ble-pairing-method-extensions"><name>BLE Pairing Method Extensions</name>

<t>The details on pairing methods and their associated attributes are in
section 2.3 of <xref target="BLE54"/>. This memo defines extensions for four
pairing methods that are nested insided the BLE extension schema. Each 
extension contains the common attributes <xref target="common-attributes"></xref>. These 
extension are as follows:</t>

<t>(i) pairingNull extension is identified using the following schema URI:</t>

<t>urn:ietf:params:scim:schemas:extension:pairingNull:2.0:Device</t>

<t>pairingNull does not have any attribute. It allows pairing for BLE
devices that do not require a pairing method.</t>

<t>(ii) pairingJustWorks extension is identified using the following 
schema URI:</t>

<t>urn:ietf:params:scim:schemas:extension:pairingJustWorks:2.0:Device</t>

<t>Just works pairing method does not require a key to pair devices. For
completeness, the key attribute is included and is set to 'null'. Key 
attribute is required, immutable, and returned by default.</t>

<t>(iii) pairingPassKey extension is identified using the following 
schema URI:</t>

<t>urn:ietf:params:scim:schemas:extension:pairingPassKey:2.0:Device</t>

<t>The passkey pairing method requires a 6-digit key to pair devices.
This extension has one singular integer attribute, "key", which is 
required, mutable and returned by default. The key pattern is
as follows:</t>

<figure><artwork><![CDATA[
^[0-9]{6}$
]]></artwork></figure>

<t>(iv) pairingOOB extension is identified using the following 
schema URI:</t>

<t>urn:ietf:params:scim:schemas:extension:pairingOOB:2.0:Device</t>

<t>The out-of-band pairing method includes three singular attributes,
i.e., key, randomNumber, and confirmationNumber.</t>

<t>key</t>

<t>The key is string value, required and received from out-of-bond 
sources such as NFC. It is case sensitive, mutable, and returned 
by default.</t>

<t>randomNumber</t>

<t>This attribute represents a nonce added to the key. It is an
integer value that is a required attribute. It is mutable and 
returned by default.</t>

<t>confirmationNumber</t>

<t>An integer which some solutions require in RESTful message
exchange. It is not required. It is mutable and returned by default if
it exists.</t>

<texttable title="Characteristics of BLE extension schema attributes. 
sepBroadcastAdd is short for separateBroadcastAddress. (Req = Required,
T = True, F = False, RW = ReadWrite, WO=Write Only, Def = Default,
Nev = Never, and Manuf = Manufacturer)." anchor="tabBLE">
      <ttcol align='left'>Attribute</ttcol>
      <ttcol align='left'>Multi Value</ttcol>
      <ttcol align='left'>Req</ttcol>
      <ttcol align='left'>Case Exact</ttcol>
      <ttcol align='left'>Mutable</ttcol>
      <ttcol align='left'>Return</ttcol>
      <ttcol align='left'>Unique</ttcol>
      <c>deviceMacAddress</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>Manuf</c>
      <c>isRandom</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>sepBroadcastAdd</c>
      <c>T</c>
      <c>F</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>irk</c>
      <c>F</c>
      <c>F</c>
      <c>F</c>
      <c>WO</c>
      <c>Nev</c>
      <c>Manuf</c>
      <c>versionSupport</c>
      <c>T</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>mobility</c>
      <c>F</c>
      <c>F</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>pairingMethods</c>
      <c>T</c>
      <c>T</c>
      <c>T</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
</texttable>

<t>An example of a device object with BLE extension is as follows:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Device",
     "urn:ietf:params:scim:schemas:extension:ble:2.0:Device"],

  "id": "e9e30dba-f08f-4109-8486-d5c6a3316111",
  "displayName": "BLE Heart Monitor",
  "active": true,
  "urn:ietf:params:scim:schemas:extension:ble:2.0:Device" : {
    "versionSupport": ["5.3"],
    "deviceMacAddress": "2C:54:91:88:C9:E2",
    "isRandom": false,
    "separateBroadcastAddress": ["AA:BB:88:77:22:11", "AA:BB:88:77
       :22:12"],
    "mobility": true,
    "pairingMethods": ["urn:ietf:params:scim:schemas:extension
       :pairingPassKey:2.0:Device"],
    "urn:ietf:params:scim:schemas:extension:pairingPassKey:2.0
       :Device" : {
      "key": 123456
    }
  },
  "meta": {
    "resourceType": "Device",
      "created": "2022-01-23T04:56:22Z",
    "lastModified": "2022-05-13T04:42:34Z",
    "version": "W\/\"a330bc54f0671c9\"",
    "location": "https://example.com/v2/Device/e9e30dba-f08f-4109
       -8486-d5c6a3316111"
  }
}
<CODE ENDS>
]]></artwork></figure>

<t>In the above example, the pairing method is "pairingPassKey", which implies
that this BLE device pairs using only a passkey. In another example below,
the pairing method is "pairingOOB", denoting that this BLE device uses the
out-of-band pairing method.</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Device",
     "urn:ietf:params:scim:schemas:extension:ble:2.0:Device"],

  "id": "e9e30dba-f08f-4109-8486-d5c6a3316111",
  "displayName": "BLE Heart Monitor",
  "active": true,
  "urn:ietf:params:scim:schemas:extension:ble:2.0:Device" : {
    "versionSupport": ["5.3"],
    "deviceMacAddress": "2C:54:91:88:C9:E2",
    "isRandom": false,
    "separateBroadcastAddress": ["AA:BB:88:77:22:11", "AA:BB:88:77
       :22:12"],
    "mobility": true,
    "pairingMethods": ["urn:ietf:params:scim:schemas:extension
       :pairingOOB:2.0:Device"],
    "urn:ietf:params:scim:schemas:extension:pairingOOB:2.0:Device":
        {
      "key": "TheKeyvalueRetrievedFromOOB",
      "randomNumber": 238796813516896
    }
  },
  "meta": {
    "resourceType": "Device",
      "created": "2022-01-23T04:56:22Z",
    "lastModified": "2022-05-13T04:42:34Z",
    "version": "W\/\"a330bc54f0671c9\"",
    "location": "https://example.com/v2/Device/e9e30dba-f08f-4109
       -8486-d5c6a3316111"
  }
}
<CODE ENDS>
]]></artwork></figure>

<t>However, a device can have more than one pairing method. Support for multiple
pairing methods is also provided by the multi-valued attribute pairingMethods.
In the example below, the BLE device can pair with both passkey and OOB pairing
methods.</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Device",
     "urn:ietf:params:scim:schemas:extension:ble:2.0:Device"],

  "id": "e9e30dba-f08f-4109-8486-d5c6a3316111",
  "displayName": "BLE Heart Monitor",
  "active": true,
  "urn:ietf:params:scim:schemas:extension:ble:2.0:Device" : {
    "versionSupport": ["5.3"],
    "deviceMacAddress": "2C:54:91:88:C9:E2",
    "isRandom": false,
    "separateBroadcastAddress": ["AA:BB:88:77:22:11", "AA:BB:88:77
       :22:12"],
    "mobility": true,
    "pairingMethods": ["urn:ietf:params:scim:schemas:extension
       :pairingPassKey:2.0:Device",
        "urn:ietf:params:scim:schemas:extension:pairingOOB:2.0
           :Device"],
    "urn:ietf:params:scim:schemas:extension:pairingPassKey:2.0
       :Device" : {
      "key": 123456
    },
    "urn:ietf:params:scim:schemas:extension:pairingOOB:2.0:Device":
        {
      "key": "TheKeyvalueRetrievedFromOOB",
      "randomNumber": 238796813516896
    }
  },
  "meta": {
    "resourceType": "Device",
      "created": "2022-01-23T04:56:22Z",
    "lastModified": "2022-05-13T04:42:34Z",
    "version": "W\/\"a330bc54f0671c9\"",
    "location": "https://example.com/v2/Device/e9e30dba-f08f-4109
       -8486-d5c6a3316111"
  }
}
<CODE ENDS>
]]></artwork></figure>

<t>The schema for the BLE extension is presented in JSON format in Section 
<xref target="ble-extension-schema-json"></xref>, while the openAPI representation is provided in 
Section <xref target="ble-extension-schema-openapi-representation"></xref>.</t>

</section>
</section>
<section anchor="wi-fi-easy-connect-extension"><name>Wi-Fi Easy Connect Extension</name>

<t>A schema that extends the device schema to enable Wi-Fi Easy Connect
(otherwise known as Device Provisioning Protocol or DPP). Throughout this
specification we use the term DPP.  The extension
is identified using the following schema URI:</t>

<t>urn:ietf:params:scim:schemas:extension:dpp:2.0:Device</t>

<t>The attributes in this extension are adopted from <xref target="DPP2"/>. The 
attributes are as follows:</t>

<section anchor="singular-attributes-3"><name>Singular Attributes</name>

<t>dppVersion</t>

<t>An integer that represents the version of DPP the device supports. 
This attribute is required, case insensitive, mutable, and 
returned by default.</t>

<t>bootstrapKey</t>

<t>A string value representing Elliptic-Curve Diffie–Hellman (ECDH) public 
key. The base64 encoded lengths for P-256, P-384, and P-521 are 
80, 96, and 120 characters. This attribute is required, case-sensitive,
mutable, and returned by default.</t>

<t>deviceMacAddress</t>

<t>The manufacturer assigns the MAC address stored as string. It is a 
unique 48-bit value. This attribute is optional, case insensitive, 
mutable, and returned by default. The regex pattern is as follows:</t>

<figure><artwork><![CDATA[
^[0-9A-Fa-f]{2}(:[0-9A-Fa-f]{2}){5}$
]]></artwork></figure>

<t>serialNumber</t>

<t>An alphanumeric serial number, stored as string, may also be passed 
as bootstrapping information. This attribute is optional, case 
insensitive, mutable, and returned by default.</t>

</section>
<section anchor="multivalued-attributes-1"><name>Multivalued Attributes</name>

<t>bootstrappingMethod</t>

<t>It is the array of strings of all the bootstrapping methods available 
on the enrollee device. For example, [QR, NFC]. This attribute is 
optional, case insensitive, mutable, and returned by default.</t>

<t>classChannel</t>

<t>This attribute is an array of strings of global operating class and 
channel shared as bootstrapping information. It is formatted as 
class/channel. For example, ['81/1','115/36']. This attribute 
is optional, case insensitive, mutable, and returned by default.</t>

<texttable title="Characteristics of DPP extension schema attributes. 
(Req = Required, T = True, F = False, RW = ReadWrite, WO = Write Only,
Def = Default, Nev = Never, and Manuf = Manufacturer)." anchor="tabDPP">
      <ttcol align='left'>Attribute</ttcol>
      <ttcol align='left'>Multi Value</ttcol>
      <ttcol align='left'>Req</ttcol>
      <ttcol align='left'>Case Exact</ttcol>
      <ttcol align='left'>Mutable</ttcol>
      <ttcol align='left'>Return</ttcol>
      <ttcol align='left'>Unique</ttcol>
      <c>dppVersion</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>bootstrapKey</c>
      <c>F</c>
      <c>T</c>
      <c>T</c>
      <c>WO</c>
      <c>Nev</c>
      <c>None</c>
      <c>deviceMacAddress</c>
      <c>F</c>
      <c>F</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>Manuf</c>
      <c>serialNumber</c>
      <c>F</c>
      <c>F</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>bootstrappingMethod</c>
      <c>T</c>
      <c>F</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>classChannel</c>
      <c>T</c>
      <c>F</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
</texttable>

<t>An example of a device object with DPP extension is below:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
        "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Device",
                 "urn:ietf:params:scim:schemas:extension:dpp:2.0
                    :Device"],

        "id": "e9e30dba-f08f-4109-8486-d5c6a3316111",
        "displayName": "WiFi Heart Monitor",
        "active": true,
        "urn:ietf:params:scim:schemas:extension:dpp:2.0:Device" : {
                "dppVersion": 2,
                "bootstrappingMethod": ["QR"],
                "bootstrapKey":
                    "MDkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDIgADURzxmt
                   tZoIRIPWGoQMV00XHWCAQIhXruVWOz0NjlkIA=",
                "deviceMacAddress": "2C:54:91:88:C9:F2",
                "classChannel": ["81/1", "115/36"],
                "serialNumber": "4774LH2b4044"
        },

        "meta": {
          "resourceType": "Device",
      "created": "2022-01-23T04:56:22Z",
          "lastModified": "2022-05-13T04:42:34Z",
          "version": "W\/\"a330bc54f0671c9\"",
          "location": "https://example.com/v2/Device/e9e30dba-f08f
             -4109-8486-d5c6a3316111"
        }
}
<CODE ENDS>
]]></artwork></figure>

<t>The schema for the DPP extension is presented in JSON format in Section 
<xref target="dpp-extension-schema-json"></xref>, while the openAPI representation is provided 
in Section <xref target="dpp-extension-schema-openapi-representation"></xref>.</t>

</section>
</section>
<section anchor="ethernet-mab-extension"><name>Ethernet MAB Extension</name>

<t>This extension enables a legacy means of (very) weak authentication,
known as MAC Authenticated Bypass (MAB), that is supported in many wired
ethernet solutions. If the MAC address is known, then the device may
be permitted (perhaps limited) access. The extension is identified
by the following URI:</t>

<t>urn:ietf:params:scim:schemas:extension:ethernet-mab:2.0:Device</t>

<section anchor="single-attribute"><name>Single Attribute</name>

<t>This extension has a singular attribute:</t>

<t>deviceMacAddress</t>

<t>This is the Ethernet address to be provisioned onto the network. It
takes the identical form as found in both the BLE and DPP extensions.</t>

<texttable title="Characteristics of MAB extension schema attributes
(Req = Required, T = True, F = False, RW = ReadWrite, and 
Def = Default)" anchor="tabMAB">
      <ttcol align='left'>Attribute</ttcol>
      <ttcol align='left'>Multi Value</ttcol>
      <ttcol align='left'>Req</ttcol>
      <ttcol align='left'>Case Exact</ttcol>
      <ttcol align='left'>Mutable</ttcol>
      <ttcol align='left'>Return</ttcol>
      <ttcol align='left'>Unique</ttcol>
      <c>deviceMacAddress</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
</texttable>

<t>An example of a device object with EthernetMAB extension is shown below:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Device",
     "urn:ietf:params:scim:schemas:extension:ethernet-mab:2.0
        :Device"],

  "id": "e9e30dba-f08f-4109-8486-d5c6a3316111",
  "displayName": "Some random Ethernet Device",
  "active": true,
  "urn:ietf:params:scim:schemas:extension:ethernet-mab:2.0:Device" 
     : {
    "deviceMacAddress": "2C:54:91:88:C9:E2"
  },

  "meta": {
    "resourceType": "Device",
      "created": "2022-01-23T04:56:22Z",
    "lastModified": "2022-05-13T04:42:34Z",
    "version": "W\/\"a330bc54f0671c9\"",
    "location": "https://example.com/v2/Device/e9e30dba-f08f-4109
       -8486-d5c6a3316111"
  }
}
<CODE ENDS>
]]></artwork></figure>

<t>The schema for the EthernetMAB extension is presented in JSON format in
Section <xref target="ethernet-mab-extension-schema-json"></xref>, while the openAPI
representation is provided in Section <xref target="ethernet-mab-extension-schema-openapi-representation"></xref>.</t>

</section>
</section>
<section anchor="fido-device-onboard-extension"><name>FIDO Device Onboard Extension</name>

<t>This extension specifies a voucher to be used by the FDO Device
Onboard (FDO) protocols <xref target="FDO11"/> to complete a trusted transfer of
ownership and control of the device to the environment.  The SCIM
server MUST know how to process the voucher, either directly
or by forwarding it along to an owner process as defined in the FDO
specification.</t>

<t>urn:ietf:params:scim:schemas:extension:fido-device-onboard:2.0:Device</t>

<section anchor="single-attribute-1"><name>Single Attribute</name>

<t>This extension has a singular attribute:</t>

<t>fdoVoucher</t>

<t>The voucher is formated as a PEM-encoded object in accordance with <xref target="FDO11"/>.</t>

<texttable title="Characteristics of FDO extension schema attributes
(Req = Required, T = True, F = False, WO = WriteOnly, and 
Nev = Never)" anchor="tabFDO">
      <ttcol align='left'>Attribute</ttcol>
      <ttcol align='left'>Multi Value</ttcol>
      <ttcol align='left'>Req</ttcol>
      <ttcol align='left'>Case Exact</ttcol>
      <ttcol align='left'>Mutable</ttcol>
      <ttcol align='left'>Return</ttcol>
      <ttcol align='left'>Unique</ttcol>
      <c>fdoVoucher</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>WO</c>
      <c>Nev</c>
      <c>None</c>
</texttable>

<t>An example of a device object with FDO extension is shown below:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Devices",
     "urn:ietf:params:scim:schemas:extension:fido-device-onboard
        :2.0:Devices"],

  "id": "e9e30dba-f08f-4109-8486-d5c6a3316111",
  "displayName": "Some random Ethernet Device",
  "active": true,
  "urn:ietf:params:scim:schemas:extension:fido-device-onboard:2.0
     :Devices" : {
     "fdoVoucher": "{... voucher ...}"
  },

  "meta": {
    "resourceType": "Device",
      "created": "2022-01-23T04:56:22Z",
    "lastModified": "2022-05-13T04:42:34Z",
    "version": "W\/\"a330bc54f0671c9\"",
    "location": "https://example.com/v2/Device/e9e30dba-f08f-4109
       -8486-d5c6a3316111"
  }
}
<CODE ENDS>
]]></artwork></figure>

<t>The schema for the FDO extension is presented in JSON format in
Section <xref target="fdo-extension-schema-json"></xref>, while the openAPI
representation is provided in Section <xref target="fdo-extension-schema-openapi-representation"></xref>.</t>

</section>
</section>
<section anchor="zigbee-extension"><name>Zigbee Extension</name>

<t>A schema that extends the device schema to enable the provisioning of 
Zigbee devices. The extension is identified using the following 
schema URI:</t>

<t>urn:ietf:params:scim:schemas:extension:zigbee:2.0:Device</t>

<t>It has one singular attribute and one multivalued 
attribute. The attributes are as follows:</t>

<section anchor="singular-attribute"><name>Singular Attribute</name>

<t>deviceEui64Address</t>

<t>An EUI-64 (Extended Unique Identifier) device address stored as string.
This attribute is required, case insensitive, mutable, and returned by
default. The regex pattern is as follows:</t>

<figure><artwork><![CDATA[
^[0-9A-Fa-f]{2}(:[0-9A-Fa-f]{2}){7}$
]]></artwork></figure>

</section>
<section anchor="multivalued-attribute"><name>Multivalued Attribute</name>

<t>versionSupport</t>

<t>An array of strings of all the Zigbee versions supported
by the device. For example, [3.0]. This attribute is required, case 
insensitive, mutable, and returned by default.</t>

<texttable title="Characteristics of Zigbee extension schema attributes.
(Req = Required, T = True, F = False, RW = ReadWrite, and 
Def = Default)" anchor="tabZigbee">
      <ttcol align='left'>Attribute</ttcol>
      <ttcol align='left'>Multi Value</ttcol>
      <ttcol align='left'>Req</ttcol>
      <ttcol align='left'>Case Exact</ttcol>
      <ttcol align='left'>Mutable</ttcol>
      <ttcol align='left'>Return</ttcol>
      <ttcol align='left'>Unique</ttcol>
      <c>deviceEui64Address</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>versionSupport</c>
      <c>T</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
</texttable>

<t>An example of a device object with Zigbee extension is shown below:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Device",
     "urn:ietf:params:scim:schemas:extension:zigbee:2.0:Device"],

  "id": "e9e30dba-f08f-4109-8486-d5c6a3316111",
  "displayName": "Zigbee Heart Monitor",
  "active": true,
  "urn:ietf:params:scim:schemas:extension:zigbee:2.0:Device" : {
    "versionSupport": ["3.0"],
    "deviceEui64Address": "50:32:5F:FF:FE:E7:67:28"
  },

  "meta": {
    "resourceType": "Device",
      "created": "2022-01-23T04:56:22Z",
    "lastModified": "2022-05-13T04:42:34Z",
    "version": "W\/\"a330bc54f0671c9\"",
    "location": "https://example.com/v2/Device/e9e30dba-f08f-4109
       -8486-d5c6a3316111"
  }
}
<CODE ENDS>
]]></artwork></figure>

<t>The schema for the Zigbee extension is presented in JSON format in 
Section <xref target="zigbee-extension-schema-json"></xref>, while the openAPI 
representation is provided in Section <xref target="zigbee-extension-schema-openapi-representation"></xref>.</t>

</section>
</section>
<section anchor="endpointsappext-schema"><name>The Endpoint Applications Extension Schema</name>

<t>Sometimes non-IP devices such as those using BLE or Zigbee require an
application gateway interface to manage them. SCIM clients MUST NOT
specify this to describe native IP-based devices.</t>

<t>endpointAppsExt provides the list application that connect to 
enterprise gateway. The endpointAppsExt has one multivalued attribute 
and two singular attributes. The extension is identified using the
following schema URI:</t>

<t>urn:ietf:params:scim:schemas:extension:endpointAppsExt:2.0:Device</t>

<section anchor="singular-attributes-4"><name>Singular Attributes</name>

<t>deviceControlEnterpriseEndpoint</t>

<t>Device control apps use this URL of the enterprise endpoint to reach
the enterprise gateway. When the enterprise receives the SCIM object from
the onboarding app, it adds this attribute to it and sends it back as
a response to the onboarding app. This attribute is required,
case-sensitive, mutable, and returned by default. The uniqueness is
enforced by the enterprise.</t>

<t>telemetryEnterpriseEndpoint</t>

<t>Telemetry apps use this URL of the enterprise endpoint to reach the
enterprise gateway. When the enterprise receives the SCIM object from
the onboarding app, it adds this attribute to it and sends it back as
a response to the onboarding app. This attribute is optional,
case-sensitive, mutable, and returned by default. The uniqueness is
enforced by the enterprise.  An implementation MUST generate an
exception if telemetryEnterpriseEndpoint is not returned and telemetry
is required for the proper functioning of a device.</t>

</section>
<section anchor="multivalued-attribute-1"><name>Multivalued Attribute</name>

<t>applications</t>

<t>This is a complex multivalued attribute. It represents a list of 
endpoint applications i.e., deviceControl and telemetry. Each entry in
the list comprises two attributes including "value" and "$ref".</t>

<t>value</t>

<t>It is the identifier of the endpoint application formated as UUID. It
is same as the common attribute "$id" of the resource "endpointApp".
It is read/write, required, case insensitive and returned by default.</t>

<t>$ref</t>

<t>It is the reference to the respective endpointApp resource object 
stored in the SCIM server. It is readOnly, required, case sensitive
and returned by default.</t>

<texttable title="Characteristics of EndpointAppsExt extension schema 
attributes. DevContEntEndpoint represents attribute 
deviceControlEnterpriseEndpoint and telEntEndpoint represents 
telemetryEnterpriseEndpoint. (Req = Required, T = True, F = False, 
R = ReadOnly, RW = ReadWrite, Ent = Enterprise, and Def = Default)." anchor="tabEndpointAppsExt">
      <ttcol align='left'>Attribute</ttcol>
      <ttcol align='left'>Multi Value</ttcol>
      <ttcol align='left'>Req</ttcol>
      <ttcol align='left'>Case Exact</ttcol>
      <ttcol align='left'>Mutable</ttcol>
      <ttcol align='left'>Return</ttcol>
      <ttcol align='left'>Unique</ttcol>
      <c>devContEntEndpoint</c>
      <c>F</c>
      <c>T</c>
      <c>T</c>
      <c>R</c>
      <c>Def</c>
      <c>Ent</c>
      <c>telEntEndpoint</c>
      <c>F</c>
      <c>F</c>
      <c>T</c>
      <c>R</c>
      <c>Def</c>
      <c>Ent</c>
      <c>applications</c>
      <c>T</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>value</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>RW</c>
      <c>Def</c>
      <c>None</c>
      <c>$ref</c>
      <c>F</c>
      <c>T</c>
      <c>F</c>
      <c>R</c>
      <c>Def</c>
      <c>None</c>
</texttable>

<t>An example of a device object with endpointAppsExt extension is below:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "schemas": ["urn:ietf:params:scim:schemas:core:2.0:Device",
     "urn:ietf:params:scim:schemas:extension:ble:2.0:Device",
     "urn:ietf:params:scim:schemas:extension:endpointAppsExt:2.0
        :Device"],
  "id": "e9e30dba-f08f-4109-8486-d5c6a3316111",
  "displayName": "BLE Heart Monitor",
  "active": true,
  "urn:ietf:params:scim:schemas:extension:ble:2.0:Device" : {
    "versionSupport": ["5.3"],
    "deviceMacAddress": "2C:54:91:88:C9:E2",
    "isRandom": false,
    "separateBroadcastAddress": ["AA:BB:88:77:22:11", "AA:BB:88:77
       :22:12"],
    "mobility": false,
    "pairingMethods": [
        "urn:ietf:params:scim:schemas:extension:pairingPassKey:2.0
           :Device"],
    "urn:ietf:params:scim:schemas:extension:pairingPassKey:2.0
       :Device" : {
      "key": 123456
    }
  },
  "urn:ietf:params:scim:schemas:extension:endpointAppsExt:2.0
     :Device": {
    "applications": [
      {
        "value" : "e9e30dba-f08f-4109-8486-d5c6a3316212",
        "$ref" : "https://example.com/v2/EndpointApp/e9e30dba-f08f
           -4109-8486-d5c6a3316212"
      },
      {
        "value" : "e9e30dba-f08f-4109-8486-d5c6a3316333",
        "$ref" : "https://example.com/v2/EndpointApp/e9e30dba-f08f
           -4109-8486-d5c6a3316333"
      }
    ],
      "deviceControlEnterpriseEndpoint": "https
         ://example.com/device_control_app_endpoint/",
      "telemetryEnterpriseEndpoint": "https
         ://example.com/telemetry_app_endpoint/"
  },
  "meta": {
    "resourceType": "Device",
      "created": "2022-01-23T04:56:22Z",
    "lastModified": "2022-05-13T04:42:34Z",
    "version": "W\/\"a330bc54f0671c9\"",
    "location": "https://example.com/v2/Device/e9e30dba-f08f-4109
       -8486-d5c6a3316111"
  }
}
<CODE ENDS>
]]></artwork></figure>

<t>The schema for the endpointAppsExt extension along with BLE extension is 
presented in JSON format in Section <xref target="endpointappsext-extension-schema-json"/>, while 
the openAPI representation is provided in Section <xref target="endpointappsext-extension-schema-openapi-representation"/>.</t>

</section>
</section>
</section>
<section anchor="schema-json-representation"><name>Schema JSON Representation</name>

<section anchor="resource-schema"><name>Resource Schema</name>

<figure><artwork><![CDATA[
<CODE BEGINS>
[
  {
    "schemas": ["urn:ietf:params:scim:schemas:core:2.0
       :ResourceType"],
    "id": "Device",
    "name": "Device",
    "endpoint": "/Devices",
    "description": "Device Account",
    "schema": "urn:ietf:params:scim:schemas:core:2.0:Device",
    "meta": {
      "location": "https://example.com/v2/ResourceTypes/Device",
      "resourceType": "ResourceType"
    }
  },
  {
    "schemas": ["urn:ietf:params:scim:schemas:core:2.0
       :ResourceType"],
    "id": "EndpointApp",
    "name": "EndpointApp",
    "endpoint": "/EndpointApp",
    "description": "Endpoint application such as device control and
        telemetry.",
    "schema": "urn:ietf:params:scim:schemas:core:2.0:EndpointApp",
    "meta": {
      "location": "https
         ://example.com/v2/ResourceTypes/EndpointApp",
      "resourceType": "ResourceType"
    }
  }
]
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="device-schema-json"><name>Device Core Schema JSON</name>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "id": "urn:ietf:params:scim:schemas:core:2.0:Device",
  "name": "Device",
  "description": "Device account",
  "attributes" : [
    {
      "name": "displayName",
      "type": "string",
      "description": "Human readable name of the device, suitable
          for displaying to end-users. For example, 'BLE Heart
          Monitor' etc.",
      "multivalues": false,
      "required": false,
      "caseExact": false,
      "mutability": "readWrite",
      "returned": "default",
      "uniqueness": "none"
    },
    {
      "name": "active",
      "type": "boolean",
      "description": "A mutable boolean value indicating the device
          administrative status. If set TRUE, the commands (such as
          connect, disconnect, subscribe) that control app sends to
          the controller for the devices will be processeed by the
          controller. If set FALSE, any command comming from the
          control app for the device will be rejected by the
          controller.",
      "multivalues": false,
      "required": true,
      "caseExact": false,
      "mutability": "readWrite",
      "returned": "default",
      "uniqueness": "none"
    },
    {
      "name": "mudUrl",
      "type": "reference",
      "description": "A URL to MUD file of the device (RFC 8520).",
      "multivalues": false,
      "required": false,
      "caseExact": true,
      "mutability": "readWrite",
      "returned": "default",
      "uniqueness": "none"
    }
  ],
  "meta" : {
    "resourceType" : "Schema",
    "location" :
      "/v2/Schemas/urn:ietf:params:scim:schemas:core:2.0:Device"
  }
}
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="endpointapp-schema-json"><name>EndpointApp Schema JSON</name>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "id": "urn:ietf:params:scim:schemas:core:2.0:EndpointApp",
  "name": "EndpointApp",
  "description": "Endpoint application and their credentials",
  "attributes" : [
    {
      "name": "applicationType",
      "type": "string",
      "description": "This attribute will only contain two values;
          'deviceControl' or 'telemetry'.",
      "multivalues": false,
      "required": true,
      "caseExact": false,
      "mutability": "readOnly",
      "returned": "default",
      "uniqueness": "none"
    },
    {
      "name": "applicationName",
      "type": "string",
      "description": "Human readable name of the application.",
      "multivalues": false,
      "required": true,
      "caseExact": false,
      "mutability": "readWrite",
      "returned": "default",
      "uniqueness": "none"
    },
    {
      "name": "certificateInfo",
      "type": "complex",
      "description": "Contains x509 certificate's subject name and
          root CA information associated with the device control or
          telemetry app.",
      "multivalues": false,
      "required": false,
      "caseExact": false,
      "mutability": "readWrite",
      "returned": "default",
      "uniqueness": "none",
      "subAttributes" : [
        {
          "name" : "rootCA",
          "type" : "string",
          "description" : "The base64 encoding of the DER encoding
              of the CA certificate",
          "multiValued" : false,
          "required" : false,
          "caseExact" : true,
          "mutability" : "readWrite",
          "returned" : "default",
          "uniqueness" : "none"
        },
        {
          "name" : "subjectName",
          "type" : "string",
          "description" : "A Common Name (CN) of the form of CN =
              dnsName",
          "multiValued" : false,
          "required" : true,
          "caseExact" : true,
          "mutability" : "readWrite",
          "returned" : "default",
          "uniqueness" : "none"
        }
      ]
    },
    {
      "name": "clientToken",
      "type": "string",
      "description": "This attribute contains a token that the
          client will use to authenticate itself.  Each token may
          be a string up to 500 characters in length.",
      "multivalues": false,
      "required": false,
      "caseExact": true,
      "mutability": "readOnly",
      "returned": "default",
      "uniqueness": "none"
    }
  ],
  "meta" : {
    "resourceType" : "Schema",
    "location" :
      "/v2/Schemas/urn:ietf:params:scim:schemas:core:2.0:Device"
  }
}
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="ble-extension-schema-json"><name>BLE Extension Schema JSON</name>
<figure><artwork><![CDATA[
<CODE BEGINS>
[
  {
    "id": "urn:ietf:params:scim:schemas:extension:ble:2.0:Device",
    "name": "bleExtension",
    "description": "Ble extension for device account",
    "attributes" : [
      {
        "name": "versionSupport",
        "type": "string",
        "description": "Provides a list of all the BLE versions
            supported by the device. For example, [4.1, 4.2, 5.0,
            5.1, 5.2, 5.3].",
        "multivalues": true,
        "required": true,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      },
      {
        "name": "deviceMacAddress",
        "type": "string",
        "pattern": "^[0-9A-Fa-f]{2}(:[0-9A-Fa-f]{2}){5}$",
        "description": "A unique public MAC address assigned by the
            manufacturer.",
        "multivalues": false,
        "required": true,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "Manufacturer"
      },
      {
        "name": "isRandom",
        "type": "boolean",
          "description": "The isRandom flag is taken from the BLE
              core specifications 5.3. If TRUE, device is using a
              random address.  Default value is false.",
        "multivalues": false,
        "required": false,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      },
      {
        "name": "separateBroadcastAddress",
        "type": "string",
        "description": "When present, this address is used for
            broadcasts/advertisements.  This value MUST NOT be set
            when an IRK is provided.  Its form is the same as
            deviceMa`cAddress.",
        "multivalues": true,
        "required": false,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      },
      {
        "name": "irk",
        "type": "string",
        "description": "Identity resolving key, which is unique for
            every device. It is used to resolve random address. 
            This value MUST NOT be set when
            separateBroadcastAddress is set.",
        "multivalues": false,
        "required": false,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "Manufacturer"
      },
      {
        "name": "mobility",
        "type": "bool",
        "description": "If set to True, the BLE device will
            automatically connect to the closest AP. For example,
            BLE device is connected with AP-1 and moves out of
            range but comes in range of AP-2, it will be
            disconnected with AP-1 and connects with AP-2.",
        "multivalues": false,
        "required": false,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      },
      {
        "name": "pairingMethods",
        "type": "string",
        "description": "List of pairing methods associated with the
            ble device, stored as schema URI.",
        "multivalues": true,
        "required": true,
        "caseExact": true,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      }
    ],
    "meta" : {
      "resourceType" : "Schema",
      "location" : "/v2/Schemas/urn:ietf:params:scim:schemas
         :extension:ble:2.0:Device"
    }
  },
  {
    "id": "urn:ietf:params:scim:schemas:extension:pairingNull:2.0
       :Device",
    "name": "nullPairing",
    "description": "Null pairing method for ble. It is included for
        the devices that do not have a pairing method.",
    "meta" : {
      "resourceType" : "Schema",
      "location" : "/v2/Schemas/urn:ietf:params:scim:schemas
         :extension:pairingNull:2.0:Device"
    }
  },
  {
    "id": "urn:ietf:params:scim:schemas:extension:pairingJustWorks
       :2.0:Device",
    "name": "pairingJustWorks",
    "description": "Just works pairing method for ble.",
    "attributes" : [
      {
        "name": "key",
        "type": "integer",
        "description": "Just works does not have any key value. For
            completeness, it is added with a key value 'null'.",
        "multivalues": false,
        "required": true,
        "caseExact": false,
        "mutability": "immutable",
        "returned": "default",
        "uniqueness": "none"
      }
    ],
    "meta" : {
      "resourceType" : "Schema",
      "location" : "/v2/Schemas/urn:ietf:params:scim:schemas
         :extension:pairingJustWorks:2.0:Device"
    }
  },
  {
    "id": "urn:ietf:params:scim:schemas:extension:pairingPassKey
       :2.0:Device",
    "name": "pairingPassKey",
    "description": "Pass key pairing method for ble.",
    "attributes" : [
      {
        "name": "key",
        "type": "integer",
        "description": "A six digit passkey for ble device. The
            pattern of key is ^[0-9]{6}$.",
        "multivalues": false,
        "required": true,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      }
    ],
    "meta" : {
      "resourceType" : "Schema",
      "location" : "/v2/Schemas/urn:ietf:params:scim:schemas
         :extension:pairingPassKey:2.0:Device"
    }
  },
  {
    "id": "urn:ietf:params:scim:schemas:extension:pairingOOB:2.0
       :Device",
    "name": "pairingOOB",
    "description": "Pass key pairing method for ble.",
    "attributes" : [
      {
        "name": "key",
        "type": "string",
        "description": "A key value retrieved from out of band
            source such as NFC.",
        "multivalues": false,
        "required": true,
        "caseExact": true,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      },
      {
        "name": "randomNumber",
        "type": "integer",
        "description": "Nonce added to the key.",
        "multivalues": false,
        "required": true,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      },
      {
        "name": "confirmationNumber",
        "type": "integer",
        "description": "Some solutions require confirmation number
            in RESTful message exchange.",
        "multivalues": false,
        "required": false,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      }
    ],
    "meta" : {
      "resourceType" : "Schema",
      "location" : "/v2/Schemas/urn:ietf:params:scim:schemas
         :extension:pairingOOB:2.0:Device"
    }
  }
]
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="dpp-extension-schema-json"><name>DPP Extension Schema JSON</name>
<figure><artwork><![CDATA[
<CODE BEGINS>
{
    "id": "urn:ietf:params:scim:schemas:extension:dpp:2.0:Device",
    "name": "dppExtension",
    "description": "Device extension schema for Wi-Fi Easy Connect
        / Device Provisioning Protocol (DPP)",
    "attributes" : [
      {
        "name": "dppVersion",
        "type": "integer",
        "description": "Version of DPP this device supports.",
        "multivalues": false,
        "required": true,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      },
      {
        "name": "bootstrappingMethod",
        "type": "string",
        "description": "The list of all the bootstrapping methods
            available on the enrollee device. For example, [QR,
            NFC].",
        "multivalues": true,
        "required": false,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      },
      {
        "name": "bootstrapKey",
        "type": "string",
        "description": "This key is Elliptic-Curve Diffie–Hellman 
           (ECDH) public key. The base64 encoded length for P-256,
            P-384, and P-521 is 80, 96, and 120 characters.",
        "multivalues": false,
        "required": true,
        "caseExact": true,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      },
      {
        "name": "deviceMacAddress",
        "type": "string",
        "pattern": "^[0-9A-Fa-f]{2}(:[0-9A-Fa-f]{2}){5}$",
        "description": "A unique public MAC address assigned by the
            manufacturer.",
        "multivalues": false,
        "required": false,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "Manufacturer"
      },
      {
        "name": "classChannel",
        "type": "string",
        "description": "A list of global operating class and
            channel shared as bootstrapping information. It is
            formatted as class/channel. For example, '81/1',
            '115/36'.",
        "multivalues": true,
        "required": false,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      },
      {
        "name": "serialNumber",
        "type": "string",
        "description": "An alphanumeric serial number that may also
            be passed as bootstrapping information.",
        "multivalues": false,
        "required": false,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "none"
      }

    ],
    "meta" : {
      "resourceType" : "Schema",
      "location" : "/v2/Schemas/urn:ietf:params:scim:schemas
         :extension:dpp:2.0:Device"
    }
  }
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="ethernet-mab-extension-schema-json"><name>Ethernet MAB Extension Schema JSON</name>
<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "id": "urn:ietf:params:scim:schemas:extension:ethernet-mab:2.0
     :Device",
  "name": "ethernetMabExtension",
  "description": "Device extension schema for MAC authentication
      Bypass.",
  "attributes" : [
      {
        "name": "deviceMacAddress",
        "type": "string",
        "pattern": "^[0-9A-Fa-f]{2}(:[0-9A-Fa-f]{2}){5}$",
        "description": "A MAC address assigned by the manufacturer",
        "multivalues": false,
        "required": true,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "Manufacturer"
      }
  ],
  "meta" : {
    "resourceType" : "Schema",
    "location" : "/v2/Schemas/urn:ietf:params:scim:schemas
       :extension:ethernet-mab:2.0:Device"
  }
}
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="fdo-extension-schema-json"><name>FDO Extension Schema JSON</name>
<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "id": "urn:ietf:params:scim:schemas:extension:fido-device-onboard
     :2.0:Devices",
  "name": "FDOExtension",
  "description": "Device extension schema for FIDO Device Onboard 
     (FDO).",
  "attributes" : [
      {
        "name": "fdoVoucher",
        "type": "string",
        "description": "A voucher as defined in the FDO
            specification",
        "multivalues": false,
        "required": true,
        "caseExact": false,
        "mutability": "readWrite",
        "returned": "default",
        "uniqueness": "Manufacturer"
      }
  ],
  "meta" : {
    "resourceType" : "Schema",
    "location" : "/v2/Schemas/urn:ietf:params:scim:schemas
       :extension:fido-device-onboard:2.0:Devices"
  }
}
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="zigbee-extension-schema-json"><name>Zigbee Extension Schema JSON</name>
<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "id": "urn:ietf:params:scim:schemas:extension:zigbee:2.0:Device",
  "name": "zigbeeExtension",
  "description": "Device extension schema for zigbee.",
  "attributes" : [
    {
      "name": "versionSupport",
      "type": "string",
      "description": "Provides a list of all the zigbee versions
          supported by the device. For example, [3.0].",
      "multivalues": true,
      "required": true,
      "caseExact": false,
      "mutability": "readWrite",
      "returned": "default",
      "uniqueness": "none"
    },
    {
      "name": "deviceEui64Address",
      "type": "string",
      "pattern": "^[0-9A-Fa-f]{2}(:[0-9A-Fa-f]{2}){7}$",
      "description": "The EUI-64 (Extended Unique Identifier)
          device address.",
      "multivalues": false,
      "required": true,
      "caseExact": false,
      "mutability": "readWrite",
      "returned": "default",
      "uniqueness": "none"
    }
  ],
  "meta" : {
    "resourceType" : "Schema",
    "location" : "/v2/Schemas/urn:ietf:params:scim:schemas
       :extension:zigbee:2.0:Device"
  }
}
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="endpointappsext-extension-schema-json"><name>EndpointAppsExt JSON Extension Schema</name>
<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "id": "urn:ietf:params:scim:schemas:extension:endpointAppsExt:2.0
     :Device",
  "name": "endpointAppsExt",
  "description": "Extension for partner endpoint applications that
      can onboard, control, and communicate with the device.",
  "attributes" : [
    {
      "name": "applications",
      "type": "complex",
      "description": "Includes references to two types of
          application that connect with entrprise, i.e.,
          deviceControl and telemetry.",
      "multivalues": true,
      "required": true,
      "caseExact": false,
      "mutability": "readWrite",
      "returned": "default",
      "uniqueness": "none",
      "subAttributes" : [
        {
          "name" : "value",
          "type" : "string",
          "description" : "The identifier of the endpointApp.",
          "multiValued" : false,
          "required" : true,
          "caseExact" : false,
          "mutability" : "readWrite",
          "returned" : "default",
          "uniqueness" : "none"
        },
        {
          "name" : "$ref",
          "type" : "reference",
          "referenceTypes" : "EndpointApps",
          "description" : "The URI of the corresponding
              'EndpointApp' resource which will control or obtain
              data from the device.",
          "multiValued" : false,
          "required" : false,
          "caseExact" : true,
          "mutability" : "readOnly",
          "returned" : "default",
          "uniqueness" : "none"
        }
      ]
    },
    {
      "name": "deviceControlEnterpriseEndpoint",
      "type": "reference",
      "description": "The URL of the enterprise endpoint which
          device control apps use to reach enterprise network
          gateway.",
      "multivalues": false,
      "required": true,
      "caseExact": true,
      "mutability": "readOnly",
      "returned": "default",
      "uniqueness": "Enterprise"
    },
    {
      "name": "telemetryEnterpriseEndpoint",
      "type": "reference",
      "description": "The URL of the enterprise endpoint which
          telemetry apps use to reach enterprise network gateway.",
      "multivalues": false,
      "required": false,
      "caseExact": true,
      "mutability": "readOnly",
      "returned": "default",
      "uniqueness": "Enterprise"
    }
  ],
  "meta" : {
    "resourceType" : "Schema",
    "location" : "/v2/Schemas/urn:ietf:params:scim:schemas
       :extension:endpointAppsExt:2.0:Device"
  }
}
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="representation-of-schema"><name>Representation of Schema</name>

<t>The following is the JSON representation of the Schema. Implementors MUST NOT vary from the schema definitions in their implementations.  They may choose not to implement a particular extension, but if they do, they MUST implement all mandatory elements, and they must implement optional elements as specified.</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
{
  "id" : "urn:ietf:params:scim:schemas:core:2.0:Schema",
  "name" : "Schema",
  "description" : "Specifies the schema that describes a SCIM
      schema",
  "attributes" : [
    {
      "name" : "id",
      "type" : "string",
      "multiValued" : false,
      "description" : "The unique URI of the schema. When
          applicable, service providers MUST specify the URI.",
      "required" : true,
      "caseExact" : false,
      "mutability" : "readOnly",
      "returned" : "default",
      "uniqueness" : "none"
    },
    {
      "name" : "name",
      "type" : "string",
      "multiValued" : false,
      "description" : "The schema's human-readable name.  When
          applicable, service providers MUST specify the name,
          e.g., 'Device'.",
      "required" : true,
      "caseExact" : false,
      "mutability" : "readOnly",
      "returned" : "default",
      "uniqueness" : "none"
    },
    {
      "name" : "description",
      "type" : "string",
      "multiValued" : false,
      "description" : "Human-readable description of the schema,
          e.g., 'Device account'.",
      "required" : false,
      "caseExact" : false,
      "mutability" : "readOnly",
      "returned" : "default",
      "uniqueness" : "none"
    },
    {
      "name" : "attributes",
      "type" : "complex",
      "multiValued" : true,
      "description" : "A complex attribute that includes the
          attributes of a schema.",
      "required" : true,
      "mutability" : "readOnly",
      "returned" : "default",
      "subAttributes" : [
        {
          "name" : "name",
          "type" : "string",
          "multiValued" : false,
          "description" : "The attribute's name, e.g.,
              'displayName'.",
          "required" : true,
          "caseExact" : true,
          "mutability" : "readOnly",
          "returned" : "default",
          "uniqueness" : "none"
        },
        {
          "name" : "type",
          "type" : "string",
          "multiValued" : false,
          "description" : "The attribute's data type. Valid values
              include 'string', 'complex', 'boolean', 'decimal',
              'integer', 'dateTime', 'reference'.",
          "required" : true,
          "caseExact" : false,
          "mutability" : "readOnly",
          "returned" : "default",
          "uniqueness" : "none",
          "canonicalValues" : [
            "string",
            "complex",
            "boolean",
            "decimal",
            "integer",
            "dateTime",
            "reference"
          ]
        },
        {
          "name" : "multiValued",
          "type" : "boolean",
          "multiValued" : false,
          "description" : "A Boolean value indicating an
              attribute's plurality.",
          "required" : true,
          "mutability" : "readOnly",
          "returned" : "default"
        },
        {
          "name" : "description",
          "type" : "string",
          "multiValued" : false,
          "description" : "A human-readable description of the
              attribute.",
          "required" : true,
          "caseExact" : false,
          "mutability" : "readOnly",
          "returned" : "default",
          "uniqueness" : "none"
        },
        {
          "name" : "required",
          "type" : "boolean",
          "multiValued" : false,
          "description" : "A boolean value indicating whether or
            not the attribute is required.",
          "required" : true,
          "mutability" : "readOnly",
          "returned" : "default"
        },
        {
          "name" : "canonicalValues",
          "type" : "string",
          "multiValued" : true,
          "description" : "A collection of canonical values.  When
              applicable, service providers MUST specify the
              canonical types, e.g., mutability of an attribute,
              return type, uniqueness.",
          "required" : false,
          "caseExact" : true,
          "mutability" : "readOnly",
          "returned" : "default",
          "uniqueness" : "none"
        },
        {
          "name" : "caseExact",
          "type" : "boolean",
          "multiValued" : false,
          "description" : "A Boolean value indicating whether or
              not a string attribute is case sensitive.",
          "required" : false,
          "mutability" : "readOnly",
          "returned" : "default"
        },
         {
          "name" : "mutability",
          "type" : "string",
          "multiValued" : false,
          "description" : "Indicates whether or not an attribute is
              modifiable.",
          "required" : false,
          "caseExact" : true,
          "mutability" : "readOnly",
          "returned" : "default",
          "uniqueness" : "none",
          "canonicalValues" : [
            "readOnly",
            "readWrite",
            "immutable",
            "writeOnly"
          ]
        },
        {
          "name" : "returned",
          "type" : "string",
          "multiValued" : false,
          "description" : "Indicates when an attribute is returned
              in a response (e.g., to a query).",
          "required" : false,
          "caseExact" : true,
          "mutability" : "readOnly",
          "returned" : "default",
          "uniqueness" : "none",
          "canonicalValues" : [
            "always",
            "never",
            "default",
            "request"
          ]
        },
        {
          "name" : "uniqueness",
          "type" : "string",
          "multiValued" : false,
          "description" : "Indicates how unique a value must be.",
          "required" : false,
          "caseExact" : true,
          "mutability" : "readOnly",
          "returned" : "default",
          "uniqueness" : "none",
          "canonicalValues" : [
            "none",
            "Enterprise",
            "Manufacturer"
          ]
        },
        {
          "name" : "referenceTypes",
          "type" : "string",
          "multiValued" : false,
          "description" : "Used only with an attribute of type
              'reference'.  Specifies a SCIM resourceType that a
              reference attribute MAY refer to, e.g.,
              'EndpointApp'.",
          "required" : false,
          "caseExact" : true,
          "mutability" : "readOnly",
          "returned" : "default",
          "uniqueness" : "none"
        },
        {
          "name" : "subAttributes",
          "type" : "complex",
          "multiValued" : true,
          "description" : "Used to define the sub-attributes of a
              complex attribute.",
          "required" : false,
          "mutability" : "readOnly",
          "returned" : "default",
          "subAttributes" : [
            {
              "name" : "name",
              "type" : "string",
              "multiValued" : false,
              "description" : "The attribute's name.",
              "required" : true,
              "caseExact" : true,
              "mutability" : "readOnly",
              "returned" : "default",
              "uniqueness" : "none"
            },
            {
              "name" : "type",
              "type" : "string",
              "multiValued" : false,
              "description" : "The attribute's data type. Valid
                  values include 'string', 'complex', 'boolean',
                  'decimal', 'integer', 'dateTime', 'reference'.",
              "required" : true,
              "caseExact" : false,
              "mutability" : "readOnly",
              "returned" : "default",
              "uniqueness" : "none",
              "canonicalValues" : [
                "string",
                "complex",
                "boolean",
                "decimal",
                "integer",
                "dateTime",
                "reference"
              ]
            },
            {
              "name" : "multiValued",
              "type" : "boolean",
              "multiValued" : false,
              "description" : "A Boolean value indicating an
                  attribute's plurality.",
              "required" : true,
              "mutability" : "readOnly",
              "returned" : "default"
            },
            {
              "name" : "description",
              "type" : "string",
              "multiValued" : false,
              "description" : "A human-readable description of the
                  attribute.",
              "required" : true,
              "caseExact" : false,
              "mutability" : "readOnly",
              "returned" : "default",
              "uniqueness" : "none"
            },
            {
              "name" : "required",
              "type" : "boolean",
              "multiValued" : false,
              "description" : "A boolean value indicating whether
                  or not the attribute is required.",
              "required" : true,
              "mutability" : "readOnly",
              "returned" : "default"
            },
            {
              "name" : "canonicalValues",
              "type" : "string",
              "multiValued" : true,
              "description" : "A collection of canonical values. 
                  When applicable, service providers MUST specify
                  the canonical types, e.g., mutability of an
                  attribute, return type, uniqueness.",
              "required" : false,
              "caseExact" : true,
              "mutability" : "readOnly",
              "returned" : "default",
              "uniqueness" : "none"
            },
            {
              "name" : "caseExact",
              "type" : "boolean",
              "multiValued" : false,
              "description" : "A Boolean value indicating whether
                  or not a string attribute is case sensitive.",
              "required" : false,
              "mutability" : "readOnly",
              "returned" : "default"
            },
            {
              "name" : "mutability",
              "type" : "string",
              "multiValued" : false,
              "description" : "Indicates whether or not an
                  attribute is modifiable.",
              "required" : false,
              "caseExact" : true,
              "mutability" : "readOnly",
              "returned" : "default",
              "uniqueness" : "none",
              "canonicalValues" : [
                "readOnly",
                "readWrite",
                "immutable",
                "writeOnly"
              ]
            },
            {
              "name" : "returned",
              "type" : "string",
              "multiValued" : false,
              "description" : "Indicates when an attribute is
                  returned in a response (e.g., to a query).",
              "required" : false,
              "caseExact" : true,
              "mutability" : "readOnly",
              "returned" : "default",
              "uniqueness" : "none",
              "canonicalValues" : [
                "always",
                "never",
                "default",
                "request"
              ]
            },
            {
              "name" : "uniqueness",
              "type" : "string",
              "multiValued" : false,
              "description" : "Indicates how unique a value must
                  be.",
              "required" : false,
              "caseExact" : true,
              "mutability" : "readOnly",
              "returned" : "default",
              "uniqueness" : "none",
              "canonicalValues" : [
                "none",
                "Enterprise",
                "Manufacturer"
              ]
            },
            {
              "name" : "referenceTypes",
              "type" : "string",
              "multiValued" : false,
              "description" : "Used only with an attribute of type
                  'reference'.  Specifies a SCIM resourceType that
                  a reference attribute MAY refer to, e.g.,
                  'EndpointApp'.",
              "required" : false,
              "caseExact" : true,
              "mutability" : "readOnly",
              "returned" : "default",
              "uniqueness" : "none"
            }
          ]
        }
      ]
    }
  ]
}
<CODE ENDS>
]]></artwork></figure>

</section>
</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>Because provisioning operations are sensitive, each client must be
appropriately authenticated. Certain objects may be read-only or
not visible based on who is connected.</t>

<section anchor="scim-operations"><name>SCIM operations</name>

<t>An attacker that has authenticated to a trusted SCIM client could
manipulate portions of the SCIM database.  To be clear on the risks,
we discuss each operation below:</t>

<section anchor="object-creation"><name>Object Creation</name>

<t>Object creation in this framework grants a device access to the
infrastructure and will to a greater or lesser extent grant the
infrastructure access to the device.  When IP-layer access is
provisioned, then the access will be at the IP layer.  For non-IP
layer access, such as provisioning of BLE devices, the access may
be to the entire device.  The explicit grant is made when the
credentials of the device are shared with the SCIM server.</t>

</section>
</section>
<section anchor="object-deletion"><name>Object Deletion</name>

<t>Once granted, even if the object is removed, the server may or may not
act on that removal.  The deletion of the object is a signal of intent
by the application that it no longer expects the device to be on the
network.  It is strictly up to the SCIM server and its back end policy
to decide whether or not to revoke access to the infrastructure.  Any
access grant by the device must be separately handled.</t>

</section>
<section anchor="read-operations"><name>Read operations</name>

<t>Read operations are necessary in order for an application to sync its
state to know what devices it is expected to manage.  An attacker with
access to SCIM objects may gain access to the devices themselves.  To
prevent one SCIM client from interfering with devices that it has no
business managing, only clients that have created objects or those
they authorize SHOULD have the ability to read those objects.</t>

</section>
<section anchor="update-operations"><name>Update Operations</name>

<t>Update operations may be necessary if a device has been modified in
some way.  Attackers with update access may be able to disable network
access to devices or device access to networks.  To avoid this, the
same access control policy for read operations is RECOMMENDED here.</t>

</section>
<section anchor="higher-level-protection-for-certain-systems"><name>Higher level protection for certain systems</name>

<t>Devices provisioned with this model may be completely controlled by
the administrator of the SCIM server, depending on how those systems
are defined. For instance, if BLE passkeys are provided, the device
can be connected to, and perhaps paired with. Any additional security
must be provided at higher application layers. For example, if client
applications wish to keep private information to and from the device,
they should encrypt that information over-the-top.</t>

</section>
<section anchor="logging"><name>Logging</name>

<t>An attacker could learn what devices are on a network by examining
SCIM logs.  Due to the sensitive nature of SCIM operations, logs
SHOILD be encrypted both on the disk and in transit.</t>

</section>
</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<section anchor="new-schemas"><name>New Schemas</name>

<t>The IANA is requested to add the following additions to the "SCIM
Schema URIs for Data Resources" registry as follows:</t>

<texttable>
      <ttcol align='left'>URN</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>urn:ietf:params:scim:schemas:core: 2.0:Device</c>
      <c>Core Device Schema</c>
      <c>This memo, <xref target="scim-core-device-schema"></xref></c>
      <c>urn:ietf:params:scim:schemas:core: 2.0:EndpointApp</c>
      <c>Endpoint Application</c>
      <c>This memo, <xref target="endpointapp-schema"/></c>
</texttable>

<t>Note that the line break in URNs should be removed, as should this comment.</t>

</section>
<section anchor="device-schema-extensions"><name>Device Schema Extensions</name>

<t>IANA is requested to create a separate table for Device Schema Extensions,
as described in <xref target="extensions"/>, with the following columns:</t>

<t><list style="symbols">
  <t>schemaExtensionURI</t>
  <t>Short Description</t>
  <t>Reference</t>
</list></t>

<t>The policy for entries into this table shall be and "Specification
Required", as specified in <xref target="RFC8126"/>.  Designated experts shall
check that each schema is produced in the format described in
<xref target="RFC7643"/>, and that the semantics of the schema are clear and
unambiguous.  It is also RECOMMENDED that schemas be made available in
OpenAPI.</t>

<t>The initial table entries shall be as follows:</t>

<texttable>
      <ttcol align='left'>URN</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>urn:ietf:params:scim:schemas:extension: ble:2.0:Device</c>
      <c>BLE Extension</c>
      <c>This memo, <xref target="ble-extension"></xref></c>
      <c>urn:ietf:params:scim:schemas:extension: ethernet-mab:2.0:Device</c>
      <c>Ethernet MAB</c>
      <c>This memo, <xref target="ethernet-mab-extension"></xref></c>
      <c>urn:ietf:params:scim:schemas:extension: fido-device-onboard:2.0:Device</c>
      <c>FIDO Device Onboard</c>
      <c>This memo, <xref target="fido-device-onboard-extension"></xref></c>
      <c>urn:ietf:params:scim:schemas:extension: dpp:2.0:Device</c>
      <c>Wi-fi Easy Connect</c>
      <c>This memo, <xref target="wi-fi-easy-connect-extension"></xref></c>
      <c>urn:ietf:params:scim:schemas:extension: endpointAppsExt:2.0:Device</c>
      <c>Application Endpoint Extension</c>
      <c>This memo, <xref target="ble-pairing-method-extensions"></xref></c>
      <c>urn:ietf:params:scim:schemas:extension: pairingJustWorks:2.0:Device</c>
      <c>Just Works Auth BLE</c>
      <c>This memo, <xref target="ble-pairing-method-extensions"></xref></c>
      <c>urn:ietf:params:scim:schemas:extension: pairingOOB:2.0:Device</c>
      <c>Out of Band Pairing for BLE</c>
      <c>This memo, <xref target="ble-pairing-method-extensions"></xref></c>
      <c>urn:ietf:params:scim:schemas:extension: pairingPassKey:2.0:Device</c>
      <c>Passkey Pairing for BLE</c>
      <c>This memo, <xref target="ble-pairing-method-extensions"></xref></c>
</texttable>

</section>
</section>
<section anchor="acknowledgments"><name>Acknowledgments</name>

<t>The authors would like to thank Bart Brinckman, Rohit Mohan, Lars
Streubesand, Christian Amsüss, Jason Livingwood, Mike Ounsworth, Monty
Wiseman, Geoffrey Cooper, and Phil Hunt for their reviews.</t>

</section>


  </middle>

  <back>


    <references title='Normative References' anchor="sec-normative-references">

<reference anchor="BLE54" >
  <front>
    <title>Bluetooth Core Specification, Version 5.4</title>
    <author >
      <organization>Bluetooth SIG</organization>
    </author>
    <date year="2023"/>
  </front>
</reference>
<reference anchor="DPP2" >
  <front>
    <title>Wi-Fi Easy Connect Specification, Version 2.0</title>
    <author >
      <organization>Wi-Fi Alliance</organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="FDO11" >
  <front>
    <title>FIDO Device Onboard Specification 1.1</title>
    <author >
      <organization>FIDO Alliance</organization>
    </author>
    <date year="2022" month="April"/>
  </front>
</reference>


<reference anchor="RFC7643">
  <front>
    <title>System for Cross-domain Identity Management: Core Schema</title>
    <author fullname="P. Hunt" initials="P." role="editor" surname="Hunt"/>
    <author fullname="K. Grizzle" initials="K." surname="Grizzle"/>
    <author fullname="E. Wahlstroem" initials="E." surname="Wahlstroem"/>
    <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
    <date month="September" year="2015"/>
    <abstract>
      <t>The System for Cross-domain Identity Management (SCIM) specifications are designed to make identity management in cloud-based applications and services easier. The specification suite builds upon experience with existing schemas and deployments, placing specific emphasis on simplicity of development and integration, while applying existing authentication, authorization, and privacy models. Its intent is to reduce the cost and complexity of user management operations by providing a common user schema and extension model as well as binding documents to provide patterns for exchanging this schema using HTTP.</t>
      <t>This document provides a platform-neutral schema and extension model for representing users and groups and other resource types in JSON format. This schema is intended for exchange and use with cloud service providers.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7643"/>
  <seriesInfo name="DOI" value="10.17487/RFC7643"/>
</reference>

<reference anchor="RFC7644">
  <front>
    <title>System for Cross-domain Identity Management: Protocol</title>
    <author fullname="P. Hunt" initials="P." role="editor" surname="Hunt"/>
    <author fullname="K. Grizzle" initials="K." surname="Grizzle"/>
    <author fullname="M. Ansari" initials="M." surname="Ansari"/>
    <author fullname="E. Wahlstroem" initials="E." surname="Wahlstroem"/>
    <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
    <date month="September" year="2015"/>
    <abstract>
      <t>The System for Cross-domain Identity Management (SCIM) specification is an HTTP-based protocol that makes managing identities in multi-domain scenarios easier to support via a standardized service. Examples include, but are not limited to, enterprise-to-cloud service providers and inter-cloud scenarios. The specification suite seeks to build upon experience with existing schemas and deployments, placing specific emphasis on simplicity of development and integration, while applying existing authentication, authorization, and privacy models. SCIM's intent is to reduce the cost and complexity of user management operations by providing a common user schema, an extension model, and a service protocol defined by this document.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7644"/>
  <seriesInfo name="DOI" value="10.17487/RFC7644"/>
</reference>


<reference anchor="I-D.bhutton-json-schema">
   <front>
      <title>JSON Schema: A Media Type for Describing JSON Documents</title>
      <author fullname="Austin Wright" initials="A." surname="Wright">
         </author>
      <author fullname="Henry Andrews" initials="H." surname="Andrews">
         </author>
      <author fullname="Ben Hutton" initials="B." surname="Hutton">
         <organization>Postman</organization>
      </author>
      <author fullname="Greg Dennis" initials="G." surname="Dennis">
         </author>
      <date day="10" month="June" year="2022"/>
      <abstract>
	 <t>   JSON Schema defines the media type &quot;application/schema+json&quot;, a JSON-
   based format for describing the structure of JSON data.  JSON Schema
   asserts what a JSON document must look like, ways to extract
   information from it, and how to interact with it.  The &quot;application/
   schema-instance+json&quot; media type provides additional feature-rich
   integration with &quot;application/schema+json&quot; beyond what can be offered
   for &quot;application/json&quot; documents.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-bhutton-json-schema-01"/>
   
</reference>

<reference anchor="RFC2119">
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname="S. Bradner" initials="S." surname="Bradner"/>
    <date month="March" year="1997"/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="2119"/>
  <seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>

<reference anchor="RFC8174">
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <date month="May" year="2017"/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="8174"/>
  <seriesInfo name="DOI" value="10.17487/RFC8174"/>
</reference>

<reference anchor="RFC8520">
  <front>
    <title>Manufacturer Usage Description Specification</title>
    <author fullname="E. Lear" initials="E." surname="Lear"/>
    <author fullname="R. Droms" initials="R." surname="Droms"/>
    <author fullname="D. Romascanu" initials="D." surname="Romascanu"/>
    <date month="March" year="2019"/>
    <abstract>
      <t>This memo specifies a component-based architecture for Manufacturer Usage Descriptions (MUDs). The goal of MUD is to provide a means for end devices to signal to the network what sort of access and network functionality they require to properly function. The initial focus is on access control. Later work can delve into other aspects.</t>
      <t>This memo specifies two YANG modules, IPv4 and IPv6 DHCP options, a Link Layer Discovery Protocol (LLDP) TLV, a URL, an X.509 certificate extension, and a means to sign and verify the descriptions.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8520"/>
  <seriesInfo name="DOI" value="10.17487/RFC8520"/>
</reference>

<reference anchor="rfc4648">
  <front>
    <title>The Base16, Base32, and Base64 Data Encodings</title>
    <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
    <date month="October" year="2006"/>
    <abstract>
      <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4648"/>
  <seriesInfo name="DOI" value="10.17487/RFC4648"/>
</reference>

<reference anchor="RFC5280">
  <front>
    <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
    <author fullname="D. Cooper" initials="D." surname="Cooper"/>
    <author fullname="S. Santesson" initials="S." surname="Santesson"/>
    <author fullname="S. Farrell" initials="S." surname="Farrell"/>
    <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
    <author fullname="R. Housley" initials="R." surname="Housley"/>
    <author fullname="W. Polk" initials="W." surname="Polk"/>
    <date month="May" year="2008"/>
    <abstract>
      <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="5280"/>
  <seriesInfo name="DOI" value="10.17487/RFC5280"/>
</reference>

<reference anchor="RFC8126">
  <front>
    <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
    <author fullname="M. Cotton" initials="M." surname="Cotton"/>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <author fullname="T. Narten" initials="T." surname="Narten"/>
    <date month="June" year="2017"/>
    <abstract>
      <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
      <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
      <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="26"/>
  <seriesInfo name="RFC" value="8126"/>
  <seriesInfo name="DOI" value="10.17487/RFC8126"/>
</reference>




    </references>

    <references title='Informative References' anchor="sec-informative-references">



<reference anchor="RFC6241">
  <front>
    <title>Network Configuration Protocol (NETCONF)</title>
    <author fullname="R. Enns" initials="R." role="editor" surname="Enns"/>
    <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund"/>
    <author fullname="J. Schoenwaelder" initials="J." role="editor" surname="Schoenwaelder"/>
    <author fullname="A. Bierman" initials="A." role="editor" surname="Bierman"/>
    <date month="June" year="2011"/>
    <abstract>
      <t>The Network Configuration Protocol (NETCONF) defined in this document provides mechanisms to install, manipulate, and delete the configuration of network devices. It uses an Extensible Markup Language (XML)-based data encoding for the configuration data as well as the protocol messages. The NETCONF protocol operations are realized as remote procedure calls (RPCs). This document obsoletes RFC 4741. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="6241"/>
  <seriesInfo name="DOI" value="10.17487/RFC6241"/>
</reference>

<reference anchor="RFC8040">
  <front>
    <title>RESTCONF Protocol</title>
    <author fullname="A. Bierman" initials="A." surname="Bierman"/>
    <author fullname="M. Bjorklund" initials="M." surname="Bjorklund"/>
    <author fullname="K. Watsen" initials="K." surname="Watsen"/>
    <date month="January" year="2017"/>
    <abstract>
      <t>This document describes an HTTP-based protocol that provides a programmatic interface for accessing data defined in YANG, using the datastore concepts defined in the Network Configuration Protocol (NETCONF).</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8040"/>
  <seriesInfo name="DOI" value="10.17487/RFC8040"/>
</reference>

<reference anchor="RFC7950">
  <front>
    <title>The YANG 1.1 Data Modeling Language</title>
    <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund"/>
    <date month="August" year="2016"/>
    <abstract>
      <t>YANG is a data modeling language used to model configuration data, state data, Remote Procedure Calls, and notifications for network management protocols. This document describes the syntax and semantics of version 1.1 of the YANG language. YANG version 1.1 is a maintenance release of the YANG language, addressing ambiguities and defects in the original specification. There are a small number of backward incompatibilities from YANG version 1. This document also specifies the YANG mappings to the Network Configuration Protocol (NETCONF).</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7950"/>
  <seriesInfo name="DOI" value="10.17487/RFC7950"/>
</reference>

<reference anchor="RFC8995">
  <front>
    <title>Bootstrapping Remote Secure Key Infrastructure (BRSKI)</title>
    <author fullname="M. Pritikin" initials="M." surname="Pritikin"/>
    <author fullname="M. Richardson" initials="M." surname="Richardson"/>
    <author fullname="T. Eckert" initials="T." surname="Eckert"/>
    <author fullname="M. Behringer" initials="M." surname="Behringer"/>
    <author fullname="K. Watsen" initials="K." surname="Watsen"/>
    <date month="May" year="2021"/>
    <abstract>
      <t>This document specifies automated bootstrapping of an Autonomic Control Plane. To do this, a Secure Key Infrastructure is bootstrapped. This is done using manufacturer-installed X.509 certificates, in combination with a manufacturer's authorizing service, both online and offline. We call this process the Bootstrapping Remote Secure Key Infrastructure (BRSKI) protocol. Bootstrapping a new device can occur when using a routable address and a cloud service, only link-local connectivity, or limited/disconnected networks. Support for deployment models with less stringent security requirements is included. Bootstrapping is complete when the cryptographic identity of the new key infrastructure is successfully deployed to the device. The established secure connection can be used to deploy a locally issued certificate to the device as well.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8995"/>
  <seriesInfo name="DOI" value="10.17487/RFC8995"/>
</reference>


<reference anchor="I-D.brinckman-nipc">
   <front>
      <title>An Application Layer Interface for Non-IP device control (NIPC)</title>
      <author fullname="Bart Brinckman" initials="B." surname="Brinckman">
         <organization>Cisco Systems</organization>
      </author>
      <author fullname="Rohit Mohan" initials="R." surname="Mohan">
         <organization>Cisco Systems</organization>
      </author>
      <author fullname="Braeden Sanford" initials="B." surname="Sanford">
         <organization>Philips</organization>
      </author>
      <date day="21" month="April" year="2024"/>
      <abstract>
	 <t>   This memo specifies RESTful application layer interface for gateways
   providing operations against non-IP devices.  The described interface
   is extensible.  This memo initially describes Bluetooth Low Energy
   and Zigbee as they are the most commonly deployed.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-brinckman-nipc-01"/>
   
</reference>




    </references>


<?line 2432?>

<section anchor="changes-from-earlier-versions"><name>Changes from Earlier Versions</name>
<t>[RFC Editor to remove this section.]</t>

<t>Draft -09:
  * last call comments, bump BLE version, add acknowledgments.
  * Also, recapture Rohit comments and those of Christian.</t>

<t>Drafts 04-08:
  * Lots of cleanup
  * Security review responses
  * Removal of a tab
  * Dealing with certificate stuff</t>

<t>Draft -03:
  * Add MAB, FDO
  * Some grammar improvements
  * fold OpenAPI
  * IANA considerations</t>

<t>Draft -02:
  *  Clean up examples
  *  Move openapi to appendix
Draft -01:</t>

<t><list style="symbols">
  <t>Doh! We forgot the core device scheme!</t>
</list></t>

<t>Draft -00:</t>

<t><list style="symbols">
  <t>Initial revision</t>
</list></t>

</section>
<section anchor="openapi-representation"><name>OpenAPI representation</name>

<t>The following sections are provided for informational purposes.</t>

<section anchor="device-schema-openapi-representation"><name>Device Core Schema OpenAPI Representation</name>

<t>OpenAPI representation of device core schema is as follows:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
components:
  schemas:
    Device:
      title: Device
      description: Device account
      type: object
      properties:
        displayName:
          type: string
          description: "Human readable name of the device, suitable
                        for displaying to end-users. For example,
                       'BLE Heart Monitor' etc."
          nullable: true
          readOnly: false
          writeOnly: false
        active:
          type: boolean
          description: A mutable boolean value indicating the device
                       administrative status. If set TRUE, the
                       commands (such as connect, disconnect,
                       subscribe) that control app sends to the
                       controller for the devices will be processeed
                       by the controller.  If set FALSE, any command
                       comming from the control app for the device
                       will be rejected by the controller.
          nullable: false
          readOnly: false
          writeOnly: false
        mudUrl:
          type: string
          format: uri
          description: A URL to MUD file of the device (RFC 8520).
              It
                       is added for future use. Current usage is not
                       defined yet.
          nullable: true
          readOnly: false
          writeOnly: false
      required:
        - active
      additionalProperties: false
      allOf:
        - $ref: '#/components/schemas/CommonAttributes'
    CommonAttributes:
      type: object
      properties:
        schemas:
          type: array
          items:
            type: string
            enum:
              - urn:ietf:params:scim:schemas:core:2.0:Device
          description: The list of schemas that define the resource.
          nullable: false
        id:
          type: string
          format: uri
          description: The unique identifier for a resource.
          nullable: false
          readOnly: true
          writeOnly: false
        externalId:
          type: string
          description: An identifier for the resource that is
              defined
                       by the provisioning client.
          nullable: true
          readOnly: false
          writeOnly: false
        meta:
          type: object
          readOnly: true
          properties:
            resourceType:
              type: string
              description: The name of the resource type of the
                           resource.
              nullable: false
              readOnly: true
              writeOnly: false
            location:
              type: string
              format: uri
              description: The URI of the resource being returned.
              nullable: false
              readOnly: true
              writeOnly: false
            created:
              type: string
              format: date-time
              description: The date and time the resource was added
                           to the service provider.
              nullable: false
              readOnly: true
              writeOnly: false
            lastModified:
              type: string
              format: date-time
              description: The most recent date and time that the
                           details of this resource were updated at
                           the service provider.
              nullable: false
              readOnly: true
              writeOnly: false
            version:
              type: string
              description: The version of the resource.
              nullable: true
              readOnly: true
              writeOnly: false
          additionalProperties: false
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="endpointapp-schema-openapi-representation"><name>EndpointApp Schema OpenAPI Representation</name>
<t>OpenAPI representation of endpointApp schema is as follows:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
components:
  schemas:
    EndpointApp:
      title: EndpointApp
      description: Endpoint application resource
      type: object
      properties:
        applicationType:
          type: string
          description: "This attribute will only contain two values;
                       'deviceControl' or 'telemetry'."
          nullable: false
          readOnly: false
          writeOnly: false

        applicationName:
          type: string
          description: Human readable name of the application.
          nullable: false
          readOnly: false
          writeOnly: false

      required:
        - applicationType
        - applicationName

      additionalProperties: true
      oneOf:
        - $ref: '#/components/schemas/clientToken'
        - $ref: '#/components/schemas/certificateInfo'

      allOf:
        - $ref: '#/components/schemas/CommonAttributes'

    clientToken:
      type: string
      description: "This attribute contains a token that the client
                    will use to authenticate itself. Each token may
                    be a string up to 500 characters in length."
      nullable: true
      readOnly: true
      writeOnly: false

    certificateInfo:
      type: object
      description: "Contains x509 certificate's subject name and
                    root CA information associated with the device
                    control or telemetry app."
      properties:
        rootCA:
          type: string
          description: "The base64 encoding of a trust anchor
                        certificate,as per RFC 4648 Section 4."
          nullable: false
          readOnly: false
          writeOnly: false

        subjectName:
          type: string
          description: "Also known as the Common Name (CN), the
                        Subject Name is a field in the X.509
                        certificate that identifies the primary
                        domain or IP address for which the
                        certificate is issued."
          nullable: false
          readOnly: false
          writeOnly: false

      required:
      - subjectName

    CommonAttributes:
      type: object
      properties:
        schemas:
          type: array
          items:
            type: string
            enum:
              - urn:ietf:params:scim:schemas:core:2.0:EndpointApp
          description: The list of schemas that define the resource.
          nullable: false
        id:
          type: string
          format: uri
          description: The unique identifier for a resource.
          nullable: false
          readOnly: true
          writeOnly: false
        meta:
          type: object
          readOnly: true
          properties:
            resourceType:
              type: string
              description: The name of the resource type of the
                           resource.
              nullable: false
              readOnly: true
              writeOnly: false
            location:
              type: string
              format: uri
              description: The URI of the resource being returned.
              nullable: false
              readOnly: true
              writeOnly: false
            created:
              type: string
              format: date-time
              description: The date and time the resource was added
                           to the service provider.
              nullable: false
              readOnly: true
              writeOnly: false
            lastModified:
              type: string
              format: date-time
              description: The most recent date and time that the
                           details of this resource were updated at
                           the service provider.
              nullable: false
              readOnly: true
              writeOnly: false
            version:
              type: string
              description: The version of the resource.
              nullable: true
              readOnly: true
              writeOnly: false
          additionalProperties: false
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="ble-extension-schema-openapi-representation"><name>BLE Extension Schema OpenAPI Representation</name>
<t>OpenAPI representation of BLE extension schema is as follows:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
components:
  schemas:
    BleDevice:
      type: object
      description: BLE Device schema.
      properties:
        schemas:
          type: array
          items:
            type: string
            enum:
              - urn:ietf:params:scim:schemas:extension:ble:2.0
                 :Device
        urn:ietf:params:scim:schemas:extension:ble:2.0:Device:
          $ref: '#/components/schemas/BleDeviceExtension'
          required: true
    BleDeviceExtension:
      type: object
      properties:
        versionSupport:
          type: array
          items:
            type: string
          description: Provides a list of all the BLE versions
                       supported by the device. For example,
                       [4.1, 4.2, 5.0, 5.1, 5.2, 5.3].
          nullable: false
          readOnly: false
          writeOnly: false

        deviceMacAddress:
          type: string
          description: It is the public MAC address assigned by the
                       manufacturer. It is unique 48 bit value. The
                       regex pattern is
                       ^[0-9A-Fa-f]{2}(:[0-9A-Fa-f]{2}){5}.
          nullable: false
          readOnly: false
          writeOnly: false

        isRandom:
          type: boolean
          description: AddressType flag is taken from the BLE core
                       specifications 5.3. If FALSE, the device is
                       using public MAC address. If TRUE, device is
                       using a random address.
          nullable: false
          readOnly: false
          writeOnly: false

        separateBroadcastAddress:
          type: string
          description: "When present, this address is used for
                        broadcasts/advertisements.  This value MUST
                            NOT
                        be set when an IRK is provided.  Its form is
                        the same as deviceMa`cAddress."
          nullable: false
          readOnly: false
          writeOnly: false

        irk:
          type: string
          description: Identity resolving key, which is unique for
                       every device. It is used to resolve random
                       address.
          nullable: true
          readOnly: false
          writeOnly: true
        mobility:
          type: boolean
          description: If set to True, the BLE device will
                       automatically connect to the closest AP. For
                       example, BLE device is connected with AP-1
                           and
                       moves out of range but comes in range of AP
                          -2,
                       it will be disconnected with AP-1 and
                           connects
                       with AP-2.
          nullable: false
          readOnly: false
          writeOnly: false
        pairingMethods:
          type: array
          items:
            type: string
          description: List of pairing methods associated with the
                       ble device, stored as schema URI.
          nullable: true
          readOnly: false
          writeOnly: false
        urn:ietf:params:scim:schemas:extension:pairingNull:2.0
           :Device:
          $ref: '#/components/schemas/NullPairing'
          required: false
        urn:ietf:params:scim:schemas:extension:pairingJustWorks:2.0
           :Device:
          $ref: '#/components/schemas/PairingJustWorks'
          required: false
        urn:ietf:params:scim:schemas:extension:pairingPassKey:2.0
           :Device:
          $ref: '#/components/schemas/PairingPassKey'
          required: false
        urn:ietf:params:scim:schemas:extension:pairingOOB:2.0
           :Device:
          $ref: '#/components/schemas/PairingOOB'
          required: false
      required:
        - versionSupport
        - deviceMacAddress
        - AddressType
        - pairingMethods
      additionalProperties: false

    NullPairing:
      type: object

    PairingJustWorks:
      type: object
      description: Just works pairing method for ble
      properties:
        key:
          type: integer
          description: Just works does not have any key value. For
                       completeness, it is added with a key value
                       'null'.
          nullable: false
          readOnly: false
          writeOnly: false
      required:
        - key

    PairingPassKey:
      type: object
      description: Pass key pairing method for ble
      properties:
        key:
          type: integer
          description: A six digit passkey for ble device.
                       The pattern of key is ^[0-9]{6}$.
          nullable: false
          readOnly: false
          writeOnly: true
      required:
        - key

    PairingOOB:
      type: object
      description: Out-of-band pairing method for BLE
      properties:
        key:
          type: string
          description: The OOB key value for ble device.
          nullable: false
          readOnly: false
          writeOnly: false
        randomNumber:
          type: integer
          description: Nonce added to the key
          nullable: false
          readOnly: false
          writeOnly: true
        confirmationNumber:
          type: integer
          description: Some solutions require a confirmation number
                       in the RESTful message exchange.
          nullable: true
          readOnly: false
          writeOnly: true
      required:
        - key
        - randomNumber
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="dpp-extension-schema-openapi-representation"><name>DPP Extension Schema OpenAPI Representation</name>
<t>OpenAPI representation of DPP extension schema is as follows:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
components:
  schemas:
    DppDevice:
      type: object
      description: Wi-Fi Easy Connect (DPP) device extension schema
      properties:
        schemas:
          type: array
          items:
            type: string
            enum:
              - urn:ietf:params:scim:schemas:extension:dpp:2.0
                 :Device
        urn:ietf:params:scim:schemas:extension:dpp:2.0:Device:
          $ref: '#/components/schemas/DppDeviceExtension'
          required: true
    DppDeviceExtension:
      type: object
      properties:
        dppVersion:
          type: integer
          description: Version of DPP this device supports.
          nullable: false
          readOnly: false
          writeOnly: false
        bootstrappingMethod:
          type: array
          items:
            type: string
          description: The list of all the bootstrapping methods
                       available on the enrollee device. For
                       example, [QR, NFC].
          nullable: true
          readOnly: false
          writeOnly: false
        bootstrapKey:
          type: string
          description: This key is Elliptic-Curve Diffie–Hellman
                       (ECDH) public key. The base64 encoded length
                       for P-256, P-384, and P-521 is 80, 96, and
                           120
                       characters.
          nullable: false
          readOnly: false
          writeOnly: true
        deviceMacAddress:
          type: string
          description: The MAC address assigned by the manufacturer.
                       The regex pattern is
                       ^[0-9A-Fa-f]{2}(:[0-9A-Fa-f]{2}){5}.
          nullable: false
          readOnly: false
          writeOnly: false
        classChannel:
          type: array
          items:
            type: string
          description: A list of global operating class and channel
                       shared as bootstrapping information. It is
                       formatted as class/channel. For example,
                       '81/1', '115/36'.
          nullable: false
          readOnly: false
          writeOnly: false
        serialNumber:
          type: string
          description: An alphanumeric serial number that may also
              be
                       passed as bootstrapping information.
          nullable: false
          readOnly: false
          writeOnly: false
      required:
        - dppVersion
        - bootstrapKey
      additionalProperties: false
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="ethernet-mab-extension-schema-openapi-representation"><name>Ethernet MAB Extension Schema OpenAPI Representation</name>
<t>OpenAPI representation of Ethernet MAB extension schema is as follows:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
components:
  schemas:
    EthernetMABDevice:
      type: object
      description: Ethernet MAC Authenticated Bypass
      properties:
        schemas:
          type: array
          items:
            type: string
            enum:
              - urn:ietf:params:scim:schemas:extension:ethernet-mab
                 :2.0:Device
        urn:ietf:params:scim:schemas:extension:ethernet-mab:2.0
           :Device:
          $ref: '#/components/schemas/EthernetMABDeviceExtension'
          required: true
    EthernetMABDeviceExtension:
      type: object
      properties:
        deviceMacAddress:
          type: string
          description: It is the public MAC address assigned by the
                       manufacturer. It is unique 48 bit value. The
                       regex pattern is
                       ^[0-9A-Fa-f]{2}(:[0-9A-Fa-f]{2}){5}.
          nullable: false
          readOnly: false
          writeOnly: false
      required:
        - deviceMacAddress
      description: Device extension schema for Ethernet-MAB
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="fdo-extension-schema-openapi-representation"><name>FDO Extension Schema OpenAPI Representation</name>
<t>OpenAPI representation of FDO extension schema is as follows:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
components:
  schemas:
    FDODevice:
      type: object
      description: FIDO Device Onboarding Extension
      properties:
        schemas:
          type: array
          items:
            type: string
            enum:
              - urn:ietf:params:scim:schemas:extension:fido-device
                 -onboard:2.0:Devices
        urn:ietf:params:scim:schemas:extension:fido-device-onboard
           :2.0:Devices:
          $ref: '#/components/schemas/FDODeviceExtension'
          required: true
    FDODeviceExtension:
      type: object
      properties:
        fdoVoucher:
          type: string
          description: A FIDO Device Onboard (FDO) Voucher
          nullable: false
          readOnly: false
          writeOnly: false
      required:
        - fdoVoucher
      description: Device Extension for a FIDO Device Onboard (FDO)
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="zigbee-extension-schema-openapi-representation"><name>Zigbee Extension Schema OpenAPI Representation</name>
<t>OpenAPI representation of zigbee extension schema is as follows:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
components:
  schemas:
    ZigbeeDevice:
      type: object
      description: Zigbee Device schema.
      properties:
        schemas:
          type: array
          items:
            type: string
            enum:
              - urn:ietf:params:scim:schemas:extension:zigbee:2.0
                 :Device
        urn:ietf:params:scim:schemas:extension:zigbee:2.0:Device:
          $ref: '#/components/schemas/ZigbeeDeviceExtension'
          required: true
    ZigbeeDeviceExtension:
      type: object
      properties:
        versionSupport:
          type: array
          items:
            type: string
          description: Provides a list of all the Zigbee versions
                       supported by the device. For example, [3.0].
          nullable: false
          readOnly: false
          writeOnly: false
        deviceEui64Address:
          type: string
          description: The EUI-64 (Extended Unique Identifier)
              device
                       address. The regex pattern is
                       ^[0-9A-Fa-f]{16}$.
          nullable: false
          readOnly: false
          writeOnly: false
      required:
        - versionSupport
        - deviceEui64Address
      description: Device extension schema for Zigbee.
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="endpointappsext-extension-schema-openapi-representation"><name>EndpointAppsExt Extension Schema OpenAPI Representation</name>
<t>OpenAPI representation of endpoint Apps extension schema 
is as follows:</t>

<figure><artwork><![CDATA[
<CODE BEGINS>
components:
  schemas:
    EndpointAppsExt:
      type: object
      properties:
        applications:
          $ref: '#/components/schemas/applications'

        deviceControlEnterpriseEndpoint:
          type: string
          format: url
          description: The URL of the enterprise endpoint which
              device
                       control apps use to reach enterprise network
                       gateway.
          nullable: false
          readOnly: true
          writeOnly: false

        telemetryEnterpriseEndpoint:
          type: string
          format: url
          description: The URL of the enterprise endpoint which
                       telemetry apps use to reach enterprise
                           network
                       gateway.
          nullable: false
          readOnly: true
          writeOnly: false

      required:
        - applications
        - deviceControlEnterpriseEndpoint

    applications:
      type: array
      items:
        value:
          type: string
          description: The identifier of the endpointApp.
          nullable: false
          readOnly: false
          writeOnly: false
        ref:
          type: string
          format: uri
          description: The URI of the corresponding 'EndpointApp'
                      resource which will control or obtain data
                          from
                      the device.
          nullable: false
          readOnly: true
          writeOnly: false
      required:
        - value
        - ref


<CODE ENDS>
]]></artwork></figure>

</section>
</section>


  </back>

<!-- ##markdown-source:
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
829McxamqbPMa40Lz7OSp5I2x4Ah8VGCHL8RSv1HpVIFqRc8xaijRVliwoFk
4AC90Cxs17g021Ic3WWo2s1sjZccW6QjYoihdowhn0SXkWzXM9n9vzHLb8zy
kZRFK3HDXDzTTnrwmRTQbyz/98TyS4NEC7b1FGGiwsONOuAQJmjPjhVdvUeo
aGXD5eGiqxzwV1JvyYr/w7gWGeNHxwbqQgDlbnaxQW8lUVFRFLJOW/cyAPLM
LuSik/9jysSzM9q9TJPx5RUHmISZ55YuueWQEzqKHqQDfEfGPxpm8zB7mL3h
sC7GUJ37z+269pLhSO01fPiApa94QzkQ+QQCjpemJkJxOJTVsBxnvRuXyOiS
ywsdRdCxg0EWR+gGqz65LbfrndDDaTbsdT2IH4K7QpSUHiJl34gizDncbe6N
U9Ck9sM+YOx//uu/XwZRhAfPVw729l+uqjhAjyzIi9zhWOidj1TzTvxZc2N7
pwH/bD7b4lGeNbc31gnC3rO1hni+w5fXN9aEOZldd4Kd4WAO+Te8KbZCi4Gk
OHA7EFSGiTKq7PDRDNQRWf6EIGciRuUJ+FzEaHXutDIMTh68FTZqRY1WbUJO
FTGK8YJp6EfWLpMfDUFnHg/gelfwXZm1ulGAQINicUhF7gSqwAlui7olsawI
tSmg4lUTdsXudl2olTMSVpDs4+k6MIknRC5qFWflTkIHraj6L8JLVEoZysVn
UlQ4IVa//PzjeQN3LDGYqjh5r44mpph8F+R6tgcYi4OoLHeIH5fO8TJKOoBY
magRcy5gO8w9utyayiJQj04GJV+QxYF4TE9kMwVwLD9bf7K+3FheX99+srmz
XAIWb8JSmQIsX9wGpZYOWhlWmzwXc2/02GOYchy2DCgbh9rlKWzDLXgceTZs
jeNw7v3aOcZhs78cPOrH8VB4MWxK7bw96jhsdmLg8djjUEkcUTmq3EnEu/U7
iVOe7S1sCcJva1PQczcFxWI3Bd1ZhPKYUP1+oDT87uvosT/TGsdS2S6tNeJ6
gmS7C0kz+TYEM2bmPJNz2Q+2K8ECj+HfaL0XAbhUsoAJMT+e21k3i4/j7s1u
KTiXjvevbw9u//byh+TvR7/9urbX/vFvR/L7fvvH7v7RZXv/zflv7wejsvdH
f0+Ozo/O3v4l+fH4p7W1v758Cw0cXf01Hf/09vS3tZNfo+uj9vcltDCN7+tw
o+xFm3nQ5FHSo1+LRX0pIGwGjB1tPX269erlRmdrbWvLSoVpk9S3/KH0mTt/
aKkDpcCHpnagwNJYjAPFs1qubLjWgXKAvg0sGnzcflE4Omlmp0oo+2ChXvrd
O5nYHFj0CiDyblXcBv51PgmBp90laBO2nQLHL6jAsViBblcbOgrQHM2QlYmB
44MY8gI1Sh29Rwdo8uYmtEBdWskXrKqNaG9RLVtsfwW+XvlDPGA7wBqaqzoL
VM0pT09uZhjvy0xuFzWL5sDvOP4X5SEBxGsdvIACjNb1S6JMd8stdJNRQaNY
gYnP8NlnqpJYhmrq8oNHIw/PP9qHv7DYIB2OIft5HHO53sQcQeG8Hfaq+H0F
PubDtnDJVCtbeLdG2ZpT1SJzc+qs2bbapMjAHVeoSvJMoUQ92j5ZfqFo/rzY
nTOqrisPsupFYo14/j20ipW+JHgmeqNiuj0zT0nzb9sctdscJTK6kuhrZLWz
JWFjcnqZ7dVvekzfQa3sLqvbXS3CzXleX9wk4y4GLlml+qRoO9RNem4pcFUw
PhMfPsCFdawdzeX96KiOyuqIUf9Y0LVPJfs84CxAMVfhUB144KSRTh0mKXqw
iGuaxHhw2soY5MnsRHR6GoU7pVrmku9cux13B3g6DZUYqgcMtTuK7jA1L8wL
MHsry9+FePgK6wpSyXdBw9NNFRISIzTcTZvW1MK+H/aSpkx0IevvLVTm93vJ
TzxtJnyFUu1aZM+iL84Ojptqe0HlWqWcl0na8+MuHyo2SP0CJbaZKvOFSold
7YKTEhupu1pi4937S2zjDOEAaZLYlgdkWnntjuZR5HQ2q6AuIXIjq+12v3SB
XbFaPVvryCxHx5KhSRzYh1arpVcgfP/0TWbPL7MLhD+trAacPIiILm23WjKj
aP57eNkJAlsazx6KQGHEdoAB5qqXDTuVJeY/HzmtMPuNenXk19GoeH7ULVmI
t+wkDZ51sG9SVqOKoAFl6h6Mw50tk9coFgdvjpo7W2LlQOXikkLoSEEjXVVw
rtybvk/8gLWl5i1+8/mp2Xyu3LgtSZFRvo+p9molJRXTYigvR8Xe7GZrrXxf
tjbR09e4AVkgNTv366MeNcsfwHMPmc3is5BYr1aC5AN120SP7roojOmL9FoU
mOSCtB45+0XG+BaHWhvmC0s+F+Zrrwoc4/ba7ubG7vbh7iH8d7B78HR35+nu
xrNvatD8alAZ0dftMDiqECN4hk2GGdShqrZrNCJUiXCKKgUqppI1paS0llQs
A5UrHuV5aAKMwgHlEombR2e6XqhKdMA57Fn1QZ80QFNCUiceie0SM+ISCO0W
pCTVQu/77JAY+LF/SRAatOzMxZlO4yb9AjJ33SjRWS5F7FMCoqOzJqcx1uk3
vFyZLLe0MmX6LJT2UdmGoQMv4GrtGIgqBy31v1yzSi8rz5BFueCwRkRJwoop
9UnvfuGnufGWukUKwaKek7L4QINCkZSug2cVh81kgC1MA8u4SreTBUZd2oyy
0vndKy/3gIbzW7WhZN1UZZcKWaoxRJZakqYk5YAcDimHGqifmXBrHlG2q5Es
Fo9WAfzo+N1rzIlFCRuHsEq0n8xts1YRy5V0mkILI/xbxYnCDKgOeEzXeAgN
AICidf7vMoRc6OTgc+GCKO1rx4UOyntoXAiBIdROHRDmVar+EvK94D3meKeV
3Rc1uDM5T+SwiGeo5z2LxrS4Al42xDLOMqu6tFd1+fG6mFOn5Je1eenrUkil
nIwiKZ3cM8RC0UouL1nIyXgcPuJOTKYtg9YwcTJXd6I2ZZlFJC9gnE6oPOYA
wsku0fC48NjSH9Ogv4TJfOiiHT2r2WlqlkBxrI4L982bo33akEWtVxfvKWZR
g25B01TNmvqWgV35z1N57FS9okaNkVtjrOEM7XlRxv0gNu58KxWfnY5cD0su
T0+a4aGV659d/iblnioiUZV8rya76RdoUyLlHeB/Eu05o7JQY0VZcvCOWKhR
CWRvj0N2dyicET3SWJx1qr38s1m4CzO2iUCcT63h/6CDwXUmphtM5ViKxV9I
TZyqAAw9WXAGeLbKuF+kaZsrG8VzgganeHFFQ3W6xrRFabz6qjRI1t8L03xZ
JZppo1TzSvmsEauf61DyrKEaRV2+LFrj2zHnRzzmbHdVPOc87+HkkrPEBSR/
hgw596VTfVpZ4d8WRRa8rChyqenNUoNHvkl6obhHiRj81JSJIdA07jXizc3N
Rxkx9qNGTP/qUOelCXJC++VMF7lxcQP/kJ6AfwBG/6Hw/8T4GGvkyeQu9Mu5
1r+dSJ/X31ktMDlipzwhnDdN0LVThihDf2KpY9SUOvKmP8A+Qx+1hY8YGDSB
c+d+RbkjXfUIrOpzZVRp/2m+vFB1VTLkb5JIZ9Y4NMs+t8lbSQIW+A6lL8VO
ZTF1NbCW3RM3FGWJ3apDRaDSydfudpMxvNCwR47359CU8qcjplkQ9oSzJ/nV
nF/tDnhc+fWQoC8pkabgX3LLQULJ/RwiDsrcFsoJ38u5YmMTFmScLfMir2Rs
EzFYyccLuCy2Pj1CvXdVRdpgkUrK3cMcS/Zq/5Arh0WcyJtQRpARPDOxl62/
ihXmWytsyZh7qAuwSqSBrdq0FXYjZCXEOABhyZLxTqcvx5gkAV095IGxay0z
dLBORUjuGUux4BKM1GvIMZ1AxM1xRlkQnLCFZW0+WK9LQ2JZBKOuVaDQOBsz
V5kWVq20/A30SJEbqXCH/LxKNV9KlbVpExd7rgiGbGWam8b/i7djMOklvTXK
kSDtoQL8ZX2aSgS0dT5rVclG1kmKe7S4ZSARI8OCod8bhHFI1dnQ1Yf1oMaZ
rm5j6luhs9JHf/qKqjdi2pB7XA2rrgyiu8P7aat6I0xt60jP/Cix2uA+6JEI
3dBO+ZLMqnNOob6BKf7iDEO+rsfPNb2ogoOcAP1LRRtkXbBiAzTEXP0U1T8X
F5/Q+8ykaJ/i/GIocTDuvUmjIiVqT3ENLeIOEazm4zf7oh9GOVYgVs4P98Sz
7Y211UWuWgeIDwQqT5o5LLBEuXmA1hYLiIKGLtS51yUUXPxQ9mQmMVCjlrOc
sqs/u3KqqkLoAmVVXvpWKixTqSOmWg7YV7TxAtifQaLlC+fOKtVy24HEBCiN
rKyGQ7tJTLN/tljBsmMAL2MIw7JWm5YfkT2gl/Sh5FSu2vACFQa7nvfvg5Xm
qy0XgCX3SSuhtaeqL73fXntulxFfzlR1eQahrakLgaWcxV7brZdXUn4sp+4n
qS2Y7SCAr0jL0vcAPu0SZmEjyiALebcsgO0cXx8pxp4j6wKyBKdHdPKCyb10
OnN+cK6vWU3gRz4B6LLw63ZEMKf9zx525EDQBXzpXQN9kc8c4WJAlKLARYMo
wUMeF8JZHfj51JgAfLu6+PwYaIOZRpvr2I5Y2TtZVeBV1QH3TsT3OQT04qzY
7UwgL8D0S4C4/PaunkNRdNxFch3E95WSulIcnoW4DmKVId1Rlqk7FqhjDsex
cg+A1TLKgqjfEhzPwc1gCgDTAhWxlen8xkNsYHvNzqKHrj1OxveIOuYi5O0X
r2IW6nTbWuY0bsop9MkJu5uabOGuHkaFn+tFZAdEkseh6CCpUCidPRjVZ25/
0dprqVgvxTGd6fqmOuSprNKpw5/yVU/Lj3fkaps6LTh1Tt+17PG5CyOXVKhC
u6oT51MI9AkLpGaJlG+RaS9Wfn93KgTJAz54c5pUkjW4basaypOrsTvYcQqz
V+MmD+YvAzl2HrBpkKT31UuQk/d0lQEZNSxddYyKvWMYW6Hee07AF6u/Z7r6
O3u6JGswhd9zLRTquu/ni5ITpOfDX/7Wl7i6KiMf5mGD05Vnd1BQXaqd682X
12p3mqis254v3K6CNZ23FXv5d13FfR4++jWgOkyv58LqUWmleasEqeSPedTi
2fq7CRXn8+vPaaAa/4RzV5pW0LEsRfv1LeBZObAON6rgwHUI7qtqvRyfp9QW
y1XuwBo0+wSdD13Qce7sAzHk84+SLAAVqH3majJOC1brWP+0onT9IMHzA5is
PXHzxqVYClSAbofOf86PzpdA78IK93SWQHr43cWu9zMKncnrmb688fXRzLSc
IBeDNg9TeCXV3EI99KI3yuX3kbWBaA5860NLi9Zic7ceFOL0rw7/c6y9ifae
a/FNb+sZ4FbbWNoOtQMcZjLacjXWVacVRhyW/D7jNypsOCrKnqvIhpYcDFxJ
Cl1P3BYr9g6iXZSdy7rnCyQtfQGoKK9OvziU6KrvGifVxnX+lQrkVJeMVyia
2cSmmuVFLiMLTNSwGWssul49Izu+o3rcsk7BYU73cAvWh1zjgEpgE1fyzbuq
Qv3jWmi65P3vjPPkSexBaF7GKE9P8brEZCm9412ih89O7W2Rhe9BSbkEglUF
1OQotB59kROoKpMJyGJZn578He8+7Hz641fndviiibqksNjCSDpXaKyenE1V
rs9FyhPVw7bFYFNVUYxdOazPi467swkWHEfMqojFk8O9hZPvYyqDNeq3U0ht
LkZxksScOImtaVSLsIDRV73cawAGtlk/lPvd9wEbpavTGat1/gm7eVknyKFM
MC/PD15f9McRrKcswzwUwXssDXP5tTsGvzQWmytYaNhrfSDv2dmMm1fzcOpc
jYUca4a7kzauZBxv4ewmMueSKncKSk/qa9utYGW7mfm6VQtirpX0U778W6hj
zHX9t98rNyorkzGPjLxQyQwm1etymJGp3TVV6S6s3OW8D3J1vq3CL4ZpTYOa
H+bUW8jlLPXoSRUEbbC61QTriwlatQQdzBTqCsIYaqoK/k6Vo/9/t3u/pt0G
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
CqmJ0Pa8crH3/wD3sr7Z9psBAA==

-->

</rfc>

