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

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-sipcore-callinfo-rcd-01" category="std">

  <front>
    <title abbrev="Call-Info Rich Call Data">SIP Call-Info Parameters for Rich Call Data</title>

    <author initials="C." surname="Wendt" fullname="Chris Wendt">
      <organization>Comcast</organization>
      <address>
        <postal>
          <street>Comcast Technology Center</street>
          <city>Philadelphia, PA  19103</city>
          <country>USA</country>
        </postal>
        <email>chris-ietf@chriswendt.net</email>
      </address>
    </author>
    <author initials="J." surname="Peterson" fullname="Jon Peterson">
      <organization>Neustar Inc.</organization>
      <address>
        <postal>
          <street>1800 Sutter St Suite 570</street>
          <city>Concord, CA  94520</city>
          <country>US</country>
        </postal>
        <email>jon.peterson@neustar.biz</email>
      </address>
    </author>

    <date year="2020" month="November" day="18"/>

    <area>art</area>
    
    <keyword>Identity</keyword>

    <abstract>


<t>This document describes a SIP Call-Info header field usage defined to include rich data associated with the identity of the calling party that can be rendered to called party for providing more useful information about the caller or the specific reason for the call. This includes extended comprehensive information about the caller such as what a jCard object can represent for describing the calling party or other call specific information such as describing the reason or intent of the call.  The elements defined for this purpose are intended to be extensible to accommodate related information about calls that helps people decide whether to pick up the phone and additionally, with the use of jCard and other elements, to be compatible with the STIR/PASSporT Rich Call Data framework.</t>



    </abstract>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>Traditional telephone network signaling protocols have long supported delivering a ‘calling name’ from the originating side, though in practice, the terminating side is often left to derive a name from the calling party number by consulting a local address book or an external database. SIP similarly can carry a ‘display-name’ in the From header field value from the originating to terminating side, though it is an unsecured field that is not commonly trusted. The same is true of information in the Call-Info header field.</t>

<t>To allow calling parties to initiate, and called parties to receive, a more comprehensive, deterministic, and extensible rich call data for incoming calls, we describe new tokens for the SIP <xref target="RFC3261"/> Call-Info header field and a corresponding “purpose” parameter.  We also define a new parameter of Call-Info designed for carrying a “reason” value.  For this document, depending on the policies of the communications system, calling parties could either be the end user device or an originating service provider, and called parties could also similarly be an end user device or the terminating service provider acting on behalf of the recipient of the call.</t>

<t>Used on its own, this specification assumes that called party user agent can trust the SIP network or the SIP provider to deliver the correct rich call data (RCD) information.  This may not always be the case and thus, the entity inserting the Call-Info header field and the UAS relying on it SHOULD be part of the same trust domain <xref target="RFC3324"/>.  Alternatively, and likely the recommended approach, is that the entity inserting the call-info header should also sign the caller information via STIR mechanisms <xref target="RFC8224"/> and specifically through the <xref target="I-D.ietf-stir-passport-rcd"/>. This STIR signature would likely be provided by the caller itself or the originating service provider using an authoritative signature to authenticate the information is from the originator and hasn’t been tampered with in transmission.</t>

<t><xref target="RFC7852"/> provides a means of carrying additional data about callers for the purposes of emergency services (especially its Section 4.4 “Owner/Subscriber” information).  This specification provides an overlapping functionality for non-emergency cases.  Rather than overloading its “EmergencyCallData” Call-Info “purpose” parameter value, this document defines a separate “purpose” parameter for the more generic delivery of information via jCard <xref target="RFC7095"/>.  This document borrows from <xref target="RFC7852"/> the capability to carry a data structure as a body, through the use of the “cid” URI scheme <xref target="RFC2392"/>.</t>

</section>
<section anchor="terminology" title="Terminology">

<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 anchor="overview" title="Overview">

<t>The Call-Info header field, defined in <xref target="RFC3261"/> Section 20.9, defines a purpose parameter currently with “info”, “icon”, and “card” tokens.  This document defines one new purpose value and one new generic parameter for Call-Info.</t>

<t>The value “jcard” is to be used to associate rich call data related to the identity of the calling party in the form of a jCard <xref target="RFC7095"/>.  While there is a “card” token that is already defined with similar purpose, there are two primary reasons for the definition and usage of jCard and the use of JSON over the XML based vCard <xref target="RFC2426"/>.  First, JSON has become the default and optimally supported for transmission, parsing, and manipulation of data on IP networks. Second, jCard has also been defined in <xref target="I-D.ietf-stir-passport-rcd"/> and has been adopted by PASSporT <xref target="RFC8225"/> because of the usage of JSON Web Tokens (JWT) <xref target="RFC7519"/>.</t>

<t>A generic parameter for “call-reason” is to be used to provide a string or other object that is used to convey the intent or reason the caller is calling to help the called party understand better the context of the call and why they may want to answer the call.</t>

</section>
<section anchor="jcard-call-info-token" title="“jcard” Call-Info Token">

<t>The use of the new Call-Info Token “jcard” is for the purpose of supporting RCD associated with the identity of a calling party in a SIP call <xref target="RFC3261"/> Section 20.9.  The format of a Call-Info header field when using the “jcard” is as follows.</t>

<t>The Call-Info header should include a URI where the resource pointed to by the URI is a jCard JSON object defined in <xref target="RFC7095"/>. The web server serving this file MUST use the MIME media type for JSON text as application/json with a default encoding of UTF-8 <xref target="RFC4627"/>. This also MAY be carried in the body of the SIP request bearing this Call-Info via the “cid” URI scheme <xref target="RFC2392"/>. Alternatively, the URI MUST define the use HTTPS or a transport that can validate the integrity of the source of the resource as well as the transport channel the resource is retrieved.</t>

<t>An example of a Call-Info header field is:</t>

<figure><artwork><![CDATA[
  Call-Info: <https://example.com/jbond.json>;purpose=jcard
]]></artwork></figure>

<t>An example contents of a URL linked jCard JSON file is shown as follows:</t>

<figure><artwork><![CDATA[
["vcard",
 [
  ["version", {}, "text", "4.0"],
  ["fn", {}, "text", "James Bond"],
  ["n", {}, "text", ["Bond", "James", "", "", "Mr."]],
  ["adr", {"type":"work"}, "text",
    ["", "", "3100 Massachusetts Avenue NW", "Washington", "DC",
    "20008", "USA"]
  ],
  ["email", {}, "text", "007@mi6-hq.com"],
  ["tel", { "type": ["voice", "text", "cell"], "pref": "1" }, "uri",
    "tel:+1-202-555-1000"],
  ["tel", { "type": ["fax"] }, "uri", "tel:+1-202-555-1001"],
  ["bday", {}, "date", "19241116"]
  ["logo", {}, "uri",
  "https://upload.wikimedia.org/wikipedia/en/c/c5
  /Fleming007impression.jpg"]
 ]
]
]]></artwork></figure>

<t>An example SIP INVITE using the “cid” URI scheme is as follows.</t>

<figure><artwork><![CDATA[
INVITE sip:alice@example.com SIP/2.0
Via: SIP/2.0/TLS pc33.atlanta.example.com;branch=z9hG4bKnashds8
To: Alice <sip:alice@example.com>
From: Bob <sip:12155551212@example.com;user=phone>;tag=1928301774>
Call-ID: a84b4c76e66710
Call-Info: <cid:12155551212@example.com>;purpose=jcard;call-reason= \
  "For your ears only"
CSeq: 314159 INVITE
Max-Forwards: 70
Date: Fri, 25 Sep 2015 19:12:25 GMT
Contact: <sip:12155551212@gateway.example.com>
Content-Type: multipart/mixed; boundary=boundary1
Content-Length: ...

--boundary1

Content-Type: application/sdp

v=0
o=UserA 2890844526 2890844526 IN IP4 pc33.atlanta.example.com
s=Session SDP
c=IN IP4 pc33.atlanta.example.com
t=0 0
m=audio 49172 RTP/AVP 0
a=rtpmap:0 PCMU/8000

--boundary1

Content-Type: application/vcard+json
Content-ID: <12155551212@example.com>

["vcard",[["version",{},"text","4.0"],["fn",{},"text","James Bond"
],["n",{},"text",["Bond","James","","","Mr."]],["adr",{"type":
"work"},"text",["","","3100 Massachusetts Avenue NW","Washington",
"DC","20008","USA"]],["email",{},"text","007@mi6-hq.com"],["tel",
{"type":["voice","text","cell"],"pref":"1"},"uri",
"tel:+1-202-555-1000"],["tel",{"type":["fax"]},"uri",
"tel:+1-202-555-1001"],["bday",{},"date","19241116"]["logo",{},
"uri","https://upload.wikimedia.org/wikipedia/en/c/c5
/Fleming007impression.jpg"]]]
]]></artwork></figure>

</section>
<section anchor="call-reason-call-info-parameter" title="‘call-reason’ Call-Info Parameter">

<t>In addition to the jCard value defined here, this specification also defines a generic parameter of the Call-Info header called “call-reason”. The “call-reason” parameter is intended to convey a short textual message suitable for display to an end user during call alerting.  As a general guideline, this message SHOULD be no longer than 160 characters; displays that support this specification may be forced to truncate messages that cannot fit onto a screen.  This message conveys the caller’s intention in contacting the callee.  It is an optional parameter, and the sender of a SIP request cannot guarantee that its display will be supported by the terminating endpoint.  The manner in which this reason is set by the caller is outside the scope of this specification.</t>

<t>One alternative approach would be to use the baseline <xref target="RFC3261"/> Subject header field value to convey the reason for the call. Because the Subject header has seen little historical use in SIP implementations, however, and its specification describes its potential use in filtering, it seems more prudent to define a new means of carrying a call reason indication.</t>

<t>An example of a Call-Info header field value with the “call-reason” parameter follows:</t>

<figure><artwork><![CDATA[
Call-Info: <https://example.com/jbond.json>;purpose=jcard;
  call-reason="For your ears only"
]]></artwork></figure>

<t>One can readily imagine a need for more structured call reason data that could be reliably processed automatically.  Future versions of this specification may explore ways to provide a structured data object in place of a textual string to support things like internationalization or categories of reason that can be parsed by machines.</t>

</section>
<section anchor="usage-of-jcard-and-property-specific-usage" title="Usage of jCard and property specific usage">

<t>Beyond the definition of the specific properties or JSON arrays associated with each property. This specification defines a few rules above and beyond <xref target="RFC7095"/> specific to making sure there is a mimimum level of supported properties that every implementation of this specification should adhere to.  This includes the support of intepreting the value of this property and the ability to render in some form appropriate to the display capabilities of the device. This includes requirements specific to either textual displays and graphics capable displays.</t>

<section anchor="identification-properties" title="Identification properties">
<t>These types are used to capture information associated with the identification and naming of the entity associated with the jCard.</t>

<section anchor="fn-property" title="“fn” property">

<t>The “fn” property MUST be supported with the intent of providing a formatted text corresponding to the name of the object the jCard represents.  Reference <xref target="RFC6350"/> Section 6.2.1.</t>

<figure><artwork><![CDATA[
Example:
["fn", {}, "text", "Mr. John Q. Public\, Esq."]
]]></artwork></figure>

</section>
<section anchor="n-property" title="“n” property">

<t>The “n” property SHOULD be supported with the intent of providing the components of the name of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.2.2.</t>

<figure><artwork><![CDATA[
Example:
["n", {}, "text", "Public;John;Quinlan;Mr.;Esq."]
["n", {}, "text", "Stevenson;John;Philip,Paul;Dr.;Jr.,M.D.,A.C.P."]
]]></artwork></figure>

</section>
<section anchor="nickname-property" title="“nickname” property">

<t>The “nickname” property SHOULD be supported with the intent of providing the text corresponding to the nickname of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.2.3.</t>

<figure><artwork><![CDATA[
Example:
["nickname", {}, "text", "Robbie"]
["nickname", {}, "text", "Jim,Jimmie"]
["nickname", {}, "text", "TYPE=work:Boss"]
]]></artwork></figure>

</section>
<section anchor="photo-property" title="“photo” property">

<t>The “photo” property MUST be supported with the intent of an image or photograph information that annotates some aspect of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.2.4.</t>

<t>In addition to the definition of jCard, and to promote interoperability and proper formatting and rendering of images, the photo SHOULD correspond to a square image size of the sizes 128x128, 256x256, 512x512, or 1024x1024 pixels.</t>

<figure><artwork><![CDATA[
Example:
["photo", {}, "uri", "http://www.example.com/photos/jqpublic.gif"]
]]></artwork></figure>

</section>
</section>
<section anchor="delivery-addressing-properties" title="Delivery Addressing Properties">

<t>These properties are concerned with information related to the delivery addressing or label for the jCard object.</t>

<section anchor="adr-property" title="“adr” property">

<t>The “adr” property MUST be supported with the intent of providing the delivery address of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.3.1.</t>

<figure><artwork><![CDATA[
Example:
["adr", {"type":"work"}, "text",
  ["", "", "3100 Massachusetts Avenue NW", "Washington", "DC",
  "20008", "USA"]
]]></artwork></figure>

</section>
</section>
<section anchor="communications-properties" title="Communications Properties">

<t>These properties describe information about how to communicate with the object the jCard represents.</t>

<section anchor="tel-property" title="“tel” property">

<t>The “tel” property MUST be supported with the intent of providing the telephone number for telephony communication of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.4.1.</t>

<t>Relative to the SIP From header field this information may provide alternate telephone number or other related telephone numbers for other uses.</t>

<figure><artwork><![CDATA[
Example:
["tel", { "type": ["voice", "text", "cell"], "pref": "1" }, "uri",
  "tel:+1-202-555-1000"]
["tel", { "type": ["fax"] }, "uri", "tel:+1-202-555-1001"]
]]></artwork></figure>

</section>
<section anchor="email-property" title="“email” property">

<t>The “email” property MUST be supported with the intent of providing the electronic mail address for communication of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.4.2.</t>

<figure><artwork><![CDATA[
Example:
["email", {"type":"work"}, "text", "jqpublic@xyz.example.com"]
["email", {"pref":"1"}, "text", "jane_doe@example.com"]
]]></artwork></figure>

</section>
<section anchor="lang-property" title="“lang” property">

<t>The “lang” property MUST be supported with the intent of providing the language(s) that may be used for contacting of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.4.4.</t>

<figure><artwork><![CDATA[
Example:
["lang", {"type":"work", "pref":"1"}, "language-tag", "en"]
["lang", {"type":"work", "pref":"2"}, "language-tag", "fr"]
["lang", {"type":"home"}, "language-tag", "fr"]
]]></artwork></figure>

</section>
</section>
<section anchor="geographical-properties" title="Geographical Properties">

<t>These properties are concerned with information associated with geographical positions or regions associated with the object the jCard represents.</t>

<section anchor="tz-property" title="“tz” property">

<t>The “tz” property MUST be supported with the intent of providing the time zone of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.5.1.</t>

<t>Note: Seems the up-to-date reference for where time-zone names are maintained is currently at this web address, https://www.iana.org/time-zones.</t>

<figure><artwork><![CDATA[
Example:
["tz", {}, "text", "Raleigh/North America"]
]]></artwork></figure>

</section>
<section anchor="geo-property" title="“geo” property">

<t>The “geo” property MUST be supported with the intent of providing the global positioning of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.5.2.</t>

<figure><artwork><![CDATA[
Example:
["geo", {}, "uri", "geo:37.386013,-122.082932"]
]]></artwork></figure>

</section>
</section>
<section anchor="organizational-properties" title="Organizational Properties">

<t>These properties are concerned with information associated with characteristics of the organization or organizational units of the object that the jCard represents.</t>

<section anchor="title-property" title="“title” property">

<t>The “title” property MUST be supported with the intent of providing the position or job of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.6.1.</t>

<figure><artwork><![CDATA[
Example:
["title", {}, "text", "Research Scientist"]
]]></artwork></figure>

</section>
<section anchor="role-property" title="“role” property">

<t>The “role” property MUST be supported with the intent of providing the position or job of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.6.2.</t>

<figure><artwork><![CDATA[
Example:
["role", {}, "text", "Project Leader"]
]]></artwork></figure>

</section>
<section anchor="logo-property" title="“logo” property">

<t>The “logo” property MUST be supported with the intent of specifying a graphic image of a logo associated with the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.6.3.</t>

<figure><artwork><![CDATA[
Example:
["logo", {}, "uri", "http://www.example.com/pub/logos/abccorp.jpg"]

["logo", {}, "uri", "data:image/jpeg;base64,MIICajCCAdOgAwIBAgIC
      AQEEBQAwdzELMAkGA1UEBhMCVVMxLDAqBgNVBAoTI05ldHNjYXBlIENvbW11bm
      ljYXRpb25zIENvcnBvcmF0aW9uMRwwGgYDVQQLExNJbmZvcm1hdGlvbiBTeXN0
      <...the remainder of base64-encoded data...>"]
]]></artwork></figure>

</section>
<section anchor="org-property" title="“org” property">

<t>The “org” property MUST be supported with the intent of specifying the organizational name and units of the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.6.2.</t>

<figure><artwork><![CDATA[
Example:
["org", {}, "text", "ABC\, Inc.;North American Division;Marketing"]
]]></artwork></figure>

</section>
</section>
<section anchor="explanatory-properties" title="Explanatory Properties">

<t>These properties are concerned with additional explanations, such as that related to informational notes or revisions specific to the jCard.</t>

<section anchor="catagories-property" title="“catagories” property">

<t>The “catagories” property MUST be supported with the intent of specifying application category information the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.7.1.</t>

<figure><artwork><![CDATA[
Example:
["catagories", {}, "text", "TRAVEL AGENT"]

["catagories", {}, "text", "INTERNET,IETF,INDUSTRY"]
]]></artwork></figure>

</section>
<section anchor="note-property" title="“note” property">

<t>The “note” property MUST be supported with the intent of specifying supplemental information or a comment the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.7.2.</t>

<figure><artwork><![CDATA[
Example:
["note", {}, "text", "This fax number is operational 0800 to 1715
             EST\, Mon-Fri."]
]]></artwork></figure>

</section>
<section anchor="sound-property" title="“sound” property">

<t>The “sound” property MUST be supported with the intent of specifying a digital sound content information that annotates some aspect with the object the jCard represents. This property is often used to specify the proper pronunciation of the name property value of the jCard. Reference <xref target="RFC6350"/> Section 6.7.5.</t>

<figure><artwork><![CDATA[
Example:
["sound", {}, "uri", "http://www.example.com/pub/logos/abccorp.mp3"]

["sound", {}, "uri", "data:audio/basic;base64,MIICajCCAdOgAwIBAgICBE
      AQEEBQAwdzELMAkGA1UEBhMCVVMxLDAqBgNVBAoTI05ldHNjYXBlIENvbW11bm
      ljYXRpb25zIENvcnBvcmF0aW9uMRwwGgYDVQQLExNJbmZvcm1hdGlvbiBTeXN0
      <...the remainder of base64-encoded data...>"]
]]></artwork></figure>

</section>
<section anchor="uid-property" title="“uid” property">

<t>The “uid” property MUST be supported with the intent of specifying a globally unique identifier corresponding to the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.7.6.</t>

<figure><artwork><![CDATA[
Example:
["uid", {}, "uri", "urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6"]
]]></artwork></figure>

</section>
<section anchor="url-property" title="“url” property">

<t>The “url” property MUST be supported with the intent of specifying a uniform resource locator associated to the object the jCard represents. Reference <xref target="RFC6350"/> Section 6.7.8.</t>

<figure><artwork><![CDATA[
Example:
["url", {}, "uri", "https://example.org/french-rest/chezchic.html"]
]]></artwork></figure>

</section>
<section anchor="version-property" title="“version” property">

<t>The “version” property MUST be included and is intended to specify version of the vCard specification used to format this vCard. Reference <xref target="RFC6350"/> Section 6.7.9.</t>

<figure><artwork><![CDATA[
Example:
["version", {}, "text", "4.0"]
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="extension-of-jcard" title="Extension of jCard">

<t>Part of the intent of the usage of jCard is that it has it’s own extensibility properties where new properties can be defined to relay newly defined information related to a caller.  This capability is inherently supported as part of standard extensibility.  However, usage of those new properties should be published and registered following <xref target="RFC7095"/> Section 3.6 or new specifications.</t>

</section>
<section anchor="acknowledgements" title="Acknowledgements">

<t>We would like to thank David Hancock and other members of the STIR working group for helpful suggestions and comments for the creation of this draft.</t>

</section>
<section anchor="IANA" title="IANA Considerations">

<section anchor="sip-call-info-header-field-purpose-token-request" title="SIP Call-Info Header Field Purpose Token Request">

<t>[this RFC] defines the “jcard” token for use as a new token in the Call-Info header in the “Header Field Parameters and Parameter Values” registry defined by <xref target="RFC3968"/>.</t>

<figure><artwork><![CDATA[
  +--------------+----------------+-------------------+------------+
  | Header Field | Parameter Name | Predefined Values | Reference  |
  +--------------+----------------+-------------------+------------+
  | Call-Info    | jcard          | No                | [this RFC] |
  +--------------+----------------+-------------------+------------+
]]></artwork></figure>

</section>
<section anchor="sip-call-info-header-field-purpose-token-request-1" title="SIP Call-Info Header Field Purpose Token Request">

<t>[this RFC] defines the “call-reason” generic parameter for use as a new parameter in the Call-Info header in the “Header Field Parameters and Parameter Values” registry defined by <xref target="RFC3968"></xref>. The parameter’s token is “call-reason” and it takes the value of a quoted string.</t>

</section>
</section>
<section anchor="Security" title="Security Considerations">

<t>Revealing information such as the name, location, and affiliation of a person necessarily entails certain privacy risks. SIP and Call-Info has no particular confidentiality requirement, as the information sent in SIP is in the clear anyway. Transport-level security can be used to hide information from eavesdroppers, and the same confidentiality mechanisms would protect any Call-Info or jCard information carried or referred to in SIP.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC2392" target='https://www.rfc-editor.org/info/rfc2392'>
<front>
<title>Content-ID and Message-ID Uniform Resource Locators</title>
<author initials='E.' surname='Levinson' fullname='E. Levinson'><organization /></author>
<date year='1998' month='August' />
<abstract><t>The Uniform Resource Locator (URL) schemes, &quot;cid:&quot; and &quot;mid:&quot; allow references to messages and the body parts of messages.  For example, within a single multipart message, one HTML body part might include embedded references to other parts of the same message.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2392'/>
<seriesInfo name='DOI' value='10.17487/RFC2392'/>
</reference>



<reference  anchor="RFC2426" target='https://www.rfc-editor.org/info/rfc2426'>
<front>
<title>vCard MIME Directory Profile</title>
<author initials='F.' surname='Dawson' fullname='F. Dawson'><organization /></author>
<author initials='T.' surname='Howes' fullname='T. Howes'><organization /></author>
<date year='1998' month='September' />
<abstract><t>This memo defines the profile of the MIME Content-Type for directory information for a white-pages person object, based on a vCard electronic business card.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2426'/>
<seriesInfo name='DOI' value='10.17487/RFC2426'/>
</reference>



<reference  anchor="RFC3261" target='https://www.rfc-editor.org/info/rfc3261'>
<front>
<title>SIP: Session Initiation Protocol</title>
<author initials='J.' surname='Rosenberg' fullname='J. Rosenberg'><organization /></author>
<author initials='H.' surname='Schulzrinne' fullname='H. Schulzrinne'><organization /></author>
<author initials='G.' surname='Camarillo' fullname='G. Camarillo'><organization /></author>
<author initials='A.' surname='Johnston' fullname='A. Johnston'><organization /></author>
<author initials='J.' surname='Peterson' fullname='J. Peterson'><organization /></author>
<author initials='R.' surname='Sparks' fullname='R. Sparks'><organization /></author>
<author initials='M.' surname='Handley' fullname='M. Handley'><organization /></author>
<author initials='E.' surname='Schooler' fullname='E. Schooler'><organization /></author>
<date year='2002' month='June' />
<abstract><t>This document describes Session Initiation Protocol (SIP), an application-layer control (signaling) protocol for creating, modifying, and terminating sessions with one or more participants.  These sessions include Internet telephone calls, multimedia distribution, and multimedia conferences.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='3261'/>
<seriesInfo name='DOI' value='10.17487/RFC3261'/>
</reference>



<reference  anchor="RFC3324" target='https://www.rfc-editor.org/info/rfc3324'>
<front>
<title>Short Term Requirements for Network Asserted Identity</title>
<author initials='M.' surname='Watson' fullname='M. Watson'><organization /></author>
<date year='2002' month='November' />
</front>
<seriesInfo name='RFC' value='3324'/>
<seriesInfo name='DOI' value='10.17487/RFC3324'/>
</reference>



<reference  anchor="RFC3968" target='https://www.rfc-editor.org/info/rfc3968'>
<front>
<title>The Internet Assigned Number Authority (IANA) Header Field Parameter Registry for the Session Initiation Protocol (SIP)</title>
<author initials='G.' surname='Camarillo' fullname='G. Camarillo'><organization /></author>
<date year='2004' month='December' />
<abstract><t>This document creates an Internet Assigned Number Authority (IANA) registry for the Session Initiation Protocol (SIP) header field parameters and parameter values.  It also lists the already existing parameters and parameter values to be used as the initial entries for this registry.  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='98'/>
<seriesInfo name='RFC' value='3968'/>
<seriesInfo name='DOI' value='10.17487/RFC3968'/>
</reference>



<reference  anchor="RFC4627" target='https://www.rfc-editor.org/info/rfc4627'>
<front>
<title>The application/json Media Type for JavaScript Object Notation (JSON)</title>
<author initials='D.' surname='Crockford' fullname='D. Crockford'><organization /></author>
<date year='2006' month='July' />
<abstract><t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.  This memo provides information for the Internet community.</t></abstract>
</front>
<seriesInfo name='RFC' value='4627'/>
<seriesInfo name='DOI' value='10.17487/RFC4627'/>
</reference>



<reference  anchor="RFC6350" target='https://www.rfc-editor.org/info/rfc6350'>
<front>
<title>vCard Format Specification</title>
<author initials='S.' surname='Perreault' fullname='S. Perreault'><organization /></author>
<date year='2011' month='August' />
<abstract><t>This document defines the vCard data format for representing and exchanging a variety of information about individuals and other entities (e.g., formatted and structured name and delivery addresses, email address, multiple telephone numbers, photograph, logo, audio clips, etc.).  This document obsoletes RFCs 2425, 2426, and 4770, and updates RFC 2739.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6350'/>
<seriesInfo name='DOI' value='10.17487/RFC6350'/>
</reference>



<reference  anchor="RFC7095" target='https://www.rfc-editor.org/info/rfc7095'>
<front>
<title>jCard: The JSON Format for vCard</title>
<author initials='P.' surname='Kewisch' fullname='P. Kewisch'><organization /></author>
<date year='2014' month='January' />
<abstract><t>This specification defines &quot;jCard&quot;, a JSON format for vCard data. The vCard data format is a text format for representing and exchanging information about individuals and other entities, for example, telephone numbers, email addresses, structured names, and delivery addresses.  JSON is a lightweight, text-based, language- independent data interchange format commonly used in Internet applications.</t></abstract>
</front>
<seriesInfo name='RFC' value='7095'/>
<seriesInfo name='DOI' value='10.17487/RFC7095'/>
</reference>



<reference  anchor="RFC7519" target='https://www.rfc-editor.org/info/rfc7519'>
<front>
<title>JSON Web Token (JWT)</title>
<author initials='M.' surname='Jones' fullname='M. Jones'><organization /></author>
<author initials='J.' surname='Bradley' fullname='J. Bradley'><organization /></author>
<author initials='N.' surname='Sakimura' fullname='N. Sakimura'><organization /></author>
<date year='2015' month='May' />
<abstract><t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties.  The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t></abstract>
</front>
<seriesInfo name='RFC' value='7519'/>
<seriesInfo name='DOI' value='10.17487/RFC7519'/>
</reference>



<reference  anchor="RFC7852" target='https://www.rfc-editor.org/info/rfc7852'>
<front>
<title>Additional Data Related to an Emergency Call</title>
<author initials='R.' surname='Gellens' fullname='R. Gellens'><organization /></author>
<author initials='B.' surname='Rosen' fullname='B. Rosen'><organization /></author>
<author initials='H.' surname='Tschofenig' fullname='H. Tschofenig'><organization /></author>
<author initials='R.' surname='Marshall' fullname='R. Marshall'><organization /></author>
<author initials='J.' surname='Winterbottom' fullname='J. Winterbottom'><organization /></author>
<date year='2016' month='July' />
<abstract><t>When an emergency call is sent to a Public Safety Answering Point (PSAP), the originating device, the access network provider to which the device is connected, and all service providers in the path of the call have information about the call, the caller, or the location, which is helpful for the PSAP to have in handling the emergency. This document describes data structures and mechanisms to convey such data to the PSAP.  The intent is that every emergency call carry as much of the information described here as possible using the mechanisms described here.</t><t>The mechanisms permit the data to be conveyed by reference (as an external resource) or by value (within the body of a SIP message or a location object).  This follows the tradition of prior emergency services standardization work where data can be conveyed by value within the call signaling (i.e., in the body of the SIP message) or by reference.</t></abstract>
</front>
<seriesInfo name='RFC' value='7852'/>
<seriesInfo name='DOI' value='10.17487/RFC7852'/>
</reference>



<reference  anchor="RFC8224" target='https://www.rfc-editor.org/info/rfc8224'>
<front>
<title>Authenticated Identity Management in the Session Initiation Protocol (SIP)</title>
<author initials='J.' surname='Peterson' fullname='J. Peterson'><organization /></author>
<author initials='C.' surname='Jennings' fullname='C. Jennings'><organization /></author>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<author initials='C.' surname='Wendt' fullname='C. Wendt'><organization /></author>
<date year='2018' month='February' />
<abstract><t>The baseline security mechanisms in the Session Initiation Protocol (SIP) are inadequate for cryptographically assuring the identity of the end users that originate SIP requests, especially in an interdomain context.  This document defines a mechanism for securely identifying originators of SIP requests.  It does so by defining a SIP header field for conveying a signature used for validating the identity and for conveying a reference to the credentials of the signer.</t><t>This document obsoletes RFC 4474.</t></abstract>
</front>
<seriesInfo name='RFC' value='8224'/>
<seriesInfo name='DOI' value='10.17487/RFC8224'/>
</reference>



<reference  anchor="RFC8225" target='https://www.rfc-editor.org/info/rfc8225'>
<front>
<title>PASSporT: Personal Assertion Token</title>
<author initials='C.' surname='Wendt' fullname='C. Wendt'><organization /></author>
<author initials='J.' surname='Peterson' fullname='J. Peterson'><organization /></author>
<date year='2018' month='February' />
<abstract><t>This document defines a method for creating and validating a token that cryptographically verifies an originating identity or, more generally, a URI or telephone number representing the originator of personal communications.  The Personal Assertion Token, PASSporT, is cryptographically signed to protect the integrity of the identity of the originator and to verify the assertion of the identity information at the destination.  The cryptographic signature is defined with the intention that it can confidently verify the originating persona even when the signature is sent to the destination party over an insecure channel.  PASSporT is particularly useful for many personal-communications applications over IP networks and other multi-hop interconnection scenarios where the originating and destination parties may not have a direct trusted relationship.</t></abstract>
</front>
<seriesInfo name='RFC' value='8225'/>
<seriesInfo name='DOI' value='10.17487/RFC8225'/>
</reference>



<reference anchor="I-D.ietf-stir-passport-rcd">
<front>
<title>PASSporT Extension for Rich Call Data</title>

<author initials='J' surname='Peterson' fullname='Jon Peterson'>
    <organization />
</author>

<author initials='C' surname='Wendt' fullname='Chris Wendt'>
    <organization />
</author>

<date month='November' day='16' year='2020' />

<abstract><t>This document extends PASSporT, a token for conveying cryptographically-signed call information about personal communications, to include rich meta-data about a call and caller that can be signed and integrity protected, transmitted, and subsequently rendered to users.  This framework is intended to extend caller and call specific information beyond human-readable display name comparable to the "Caller ID" function common on the telephone network.  The JSON element defined for this purpose, Rich Call Data (RCD), is an extensible object defined to either be used as part of STIR or with SIP Call-Info to include related information about calls that helps people decide whether to pick up the phone.  This signing of the RCD information is also enhanced with a integrity mechanism that is designed to protect the authoring and transport of this information between authoritative and non-authoritative parties authoring and signing the Rich Call Data for support of different usage and content policies.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-stir-passport-rcd-08' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-stir-passport-rcd-08.txt' />
</reference>




    </references>

    <references title='Informative References'>





<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<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" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<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>




    </references>



  </back>

<!-- ##markdown-source:
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

-->

</rfc>

