<?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-08" 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="2024" month="August" day="26"/>

    
    
    <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 Wifi EasyConnect, 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 devices. 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 Onboarding (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 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 or RESTCONF with YANG. 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 are 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 Easyconnect 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 this SCIM devices is not supported.</t>

<t>Several additional schemas specify specific onboarding mechanisms,
such as BLE and Wifi 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"/>). The resource "Devices" 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 is attribute 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 mutable, required, 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 of the public key of a certificate as
described in <xref target="rfc4648"/> Section 4.  It used as the trust anchor for
certificates that may used for client application access.  This 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 contains a dnsName, as specified in Section
4.2.1.6 of <xref target="RFC5280"/>.  It is NOT expected that the dnsName will
necessarily bind to the incoming IP address of the application client.
This attribute is not required, read write, singular and NOT case
sensitive.  This name may also appear as an subjectAlternateName (SAN)
of type dnsName, in which case the subject MUST be ignored.  If
multiple dnsNames are present, it is left to server implementations to
address any authorization conflicts associated with those names.</t>

<texttable title="Characteristics of EndpointApp schema attributes. (Req = Required, T = True, F = False, R = ReadOnly, RW = ReadWrite, Manuf = Manufacturer 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>T</c>
      <c>T</c>
      <c>R</c>
      <c>Def</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>rootPublicKey</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 involving Devices 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 resolved using IRK. This attribute is not required, it is 
mutable, and returned by default. Its 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, Identity resolving key, which is unique for every 
device. It is used to resolve the random address. It is required when 
isRandom is TRUE. It is mutable and never returned.</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="BLE53"/>. 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 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 return 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 pass key 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  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  It represents a nounce added to the key. It is and 
integer value that is required attribute. It is mutable and 
returned by default.</t>

<t>confirmationNumber  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>T</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," implying 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",
      "randNumber": 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",
      "randNumber": 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="easyconnect-extension"><name>EasyConnect Extension</name>

<t>A schema that extends the device schema to enable WiFi EasyConnect
(otherwise known as Device Provisioning Protocol or 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>

<figure 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"><artwork><![CDATA[
+====================+=====+===+======+=========+========+========+
| Attribute          |Multi|Req| Case | Mutable | Return | Unique |
|                    |Value|   | Exact|         |        |        |
+====================+=====+===+======+=========+========+========+
| dppVersion         |  F  | T |  F   |   RW    |  Def   | None   |
+--------------------+-----+---+------+---------+--------+--------+
| bootstrapKey       |  F  | T |  T   |   WO    |  Nev   | None   |
+--------------------+-----+---+------+---------+--------+--------+
| deviceMacAddress   |  F  | F |  F   |   RW    |  Def   | Manuf  |
+--------------------+-----+---+------+---------+--------+--------+
| serialNumber       |  F  | F |  F   |   RW    |  Def   | None   |
+--------------------+-----+---+------+---------+--------+--------+
| bootstrappingMethod|  T  | F |  F   |   RW    |  Def   | None   |
+--------------------+-----+---+------+---------+--------+--------+
| classChannel       |  T  | F |  F   |   RW    |  Def   | None   |
+--------------------+-----+---+------+---------+--------+--------+
]]></artwork></figure>

<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-onboarding-extension"><name>Fido Device Onboarding Extension</name>

<t>This extension specifies a voucher to be used by a Fido Device Onboarding
(FDO) owner process <xref target="FDO11"/>, so that a trusted introduction can be made using that mechanism.</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 the FDO
specification (citation needed).</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 required,
case-sensitive, mutable, and returned by default. The uniqueness is
enforced by the enterprise.</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 readOnly, 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>T</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>R</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:pairingNull:2.0
           :Device",
        "urn:ietf:params:scim:schemas:extension:pairingJustWorks
           :2.0:Device",
        "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:pairingNull:2.0:Device"
       : null,
    "urn:ietf:params:scim:schemas:extension:pairingJustWorks:2.0
       :Device": {
      "key": null
    },
    "urn:ietf:params:scim:schemas:extension:pairingPassKey:2.0
       :Device" : {
      "key": 123456
    },
    "urn:ietf:params:scim:schemas:extension:pairingOOB:2.0:Device":
        {
      "key": "TheKeyvalueRetrievedFromOOB",
      "randNumber": 238796813516896
    }
  },

  "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
         ://enterprise.com/device_control_app_endpoint/",
      "telemetryEnterpriseEndpoint": "https
         ://enterprise.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",
          "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",
        "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}.",
        "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
              Random address which is resolved using IRK.  If not
              present, the 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 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",
        "description": "The 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}.",
        "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",
        "description": "A 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}.",
        "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.",
  "attributes" : [
      {
        "name": "fdoVoucher",
        "type": "string",
        "description": "A Fido 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",
      "description": "The EUI-64 (Extended Unique Identifier)
          device address. The regex pattern is ^[0-9A-Fa-f]{16}$.",
      "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" : "readOnly",
          "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": true,
      "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 both "Expert Review"
and "Specification Required", as specified in <xref target="RFC8126"/>.  Reviewers
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-onboarding-extension"></xref></c>
      <c>urn:ietf:params:scim:schemas:extension: dpp:2.0:Device</c>
      <c>Wifi EasyConnect</c>
      <c>This memo, <xref target="easyconnect-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>


  </middle>

  <back>


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

<reference anchor="BLE53" >
  <front>
    <title>Bluetooth Core Specification, Version 5.3</title>
    <author >
      <organization>Bluetooth SIG</organization>
    </author>
    <date year="2021"/>
  </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 Onboading 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="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 2426?>

<section anchor="changes-from-earlier-versions"><name>Changes from Earlier Versions</name>

<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 Random address which is resolved using
                       the IRK.
          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: 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 Voucher Extension
      properties:
        schemas:
          type: array
          items:
            type: string
            enum:
              - urn:ietf:params:scim:schemas:extension:ethernet-mab
                 :2.0:Devices
        urn:ietf:params:scim:schemas:extension:ethernet-mab:2.0
           :Devices:
          $ref: '#/components/schemas/FDODeviceExtension'
          required: true
    FDODeviceExtension:
      type: object
      properties:
        fdoVoucher:
          type: string
          description: A Fido Device Onboarding Voucher
          nullable: false
          readOnly: false
          writeOnly: false
      required:
        - fdoVoucher
      description: Device Extension for a Fido Device Onboarding
          Voucher
<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
        - telemetryEnterpriseEndpoint

    applications:
      type: array
      items:
        value:
          type: string
          description: The identifier of the endpointApp.
          nullable: false
          readOnly: true
          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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
AA==

-->

</rfc>

