<?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-07" 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="13"/>

    
    
    <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>rootPublicKey</t>

<t>this is the base64 encoding of the public key of a certficate that is
used to sign 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 may 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": {
      "rootPublicKey" : "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" : "rootPublicKey",
          "type" : "string",
          "description" : "The base64 encoding of the public key 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="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 2425?>

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

<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:
        rootPublicKey:
          type: string
          description: "The base64 encoding of the root public key."
          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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
+YROa2B7lKjEJIV9cYvr/VWJnnbWnRL5syQsdoGG72i6KyzVrAJq9YvzCqrf
zvMfiK2Wkq1yC2tZFpECoUChTKFBC/Cgmn4d7r9eAtnCVu6BWkGz81GpkkRX
yHd+SiY9TEKpJ/r7JFbZPVCrbFZypddqVjJVfGFO8jToJ3Jh55Z5piDKw21y
M4ea7W32JzvWlw/eGoBqsnLX/zW86AbBEjb+b9zQPex9HuJ8219O6yv2ymR4
LtUsZpqcUwCxV2DWTV36zlfnoSnxaClOmuLnrfb68p0uzZQI1JPwyfYdrBcH
b49aT7bFKi0Z2nzesoh1pGN61nJAmJb0SjrzLWzV2Fjuidkdz7lt+M4rhzEy
tWtUSDdr5axU2Q3Vz6Bvk/nw7oH7mC8zK07IW2oUPyXpnI842MnBZyVk9jsr
eXdlGUVvChSp8c0VIBfV7S7M1yWjNALdjYE0eQvOtb2s3GeZCpxOKZ2w1b5K
sF/RxgXo7pi9f849Ni04T9/TYcVfGGRNz3bccyUYq94meH1OCE9JZ5AVaFgl
oltP1iwa91u2/YpcOceRSUNfhC1ZIaV6lTXxuK+wUiQk8yBobWysFfnYS1Iu
L0iahlN0qwKDTFAb+ROTN6gVuJ90KWEIFlWqwVJ06q+4bYks9wLLUkbr+Ca1
ENqeV84b/z9T9dpCIZkBAA==

-->

</rfc>

