[scim] Correction: draft-ietf-scim-api-19

Phil Hunt <phil.hunt@oracle.com> Mon, 06 July 2015 15:50 UTC

Return-Path: <phil.hunt@oracle.com>
X-Original-To: scim@ietfa.amsl.com
Delivered-To: scim@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0F9581B2E36 for <scim@ietfa.amsl.com>; Mon, 6 Jul 2015 08:50:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.21
X-Spam-Level:
X-Spam-Status: No, score=-4.21 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01] autolearn=ham
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FjaxuDUpjARy for <scim@ietfa.amsl.com>; Mon, 6 Jul 2015 08:50:26 -0700 (PDT)
Received: from userp1040.oracle.com (userp1040.oracle.com [156.151.31.81]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 83E591B2E34 for <scim@ietf.org>; Mon, 6 Jul 2015 08:50:26 -0700 (PDT)
Received: from aserv0021.oracle.com (aserv0021.oracle.com [141.146.126.233]) by userp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id t66FoPhK021202 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 6 Jul 2015 15:50:25 GMT
Received: from userv0122.oracle.com (userv0122.oracle.com [156.151.31.75]) by aserv0021.oracle.com (8.13.8/8.13.8) with ESMTP id t66FoP2v015492 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Mon, 6 Jul 2015 15:50:25 GMT
Received: from abhmp0019.oracle.com (abhmp0019.oracle.com [141.146.116.25]) by userv0122.oracle.com (8.13.8/8.13.8) with ESMTP id t66FoOZ3004069; Mon, 6 Jul 2015 15:50:24 GMT
Received: from [192.168.1.9] (/174.7.250.104) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Mon, 06 Jul 2015 08:50:24 -0700
From: Phil Hunt <phil.hunt@oracle.com>
Content-Type: multipart/alternative; boundary="Apple-Mail=_06B5C191-34D3-47E0-8F57-FB783442A62F"
Date: Mon, 06 Jul 2015 08:50:23 -0700
Message-Id: <3B7B7208-E3B3-4E69-B43B-273D74188A48@oracle.com>
To: RFC System <rfc-editor@rfc-editor.org>, SCIM WG <scim@ietf.org>
Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2102\))
X-Mailer: Apple Mail (2.2102)
X-Source-IP: aserv0021.oracle.com [141.146.126.233]
Archived-At: <http://mailarchive.ietf.org/arch/msg/scim/wscYlKJ8YW093ySP8ENz2zntMu8>
Cc: Gregg Wilson <gregg.wilson@oracle.com>
Subject: [scim] Correction: draft-ietf-scim-api-19
X-BeenThere: scim@ietf.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Simple Cloud Identity Management BOF <scim.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/scim>, <mailto:scim-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/scim/>
List-Post: <mailto:scim@ietf.org>
List-Help: <mailto:scim-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/scim>, <mailto:scim-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 06 Jul 2015 15:50:28 -0000

There are a couple of locations in the SCIM-API examples where the older response attribute “code” was used and should be made consistent with the normative text.  Per the text in 3.12 and in the Bulk status 3.7, all examples should simply have a “status” attribute and an http status value.

On Page 46
  s/“code”:”404”/“status”:”404”

On Page 53

The example: 
> HTTP/1.1 200 OK
>    Content-Type: application/json
> 
>    {
>      "schemas": ["urn:ietf:params:scim:api:messages:2.0:BulkResponse"],
>      "Operations": [
>        {
>          "location":
>    "https://example.com/v2/Users/92b725cd-9465-4e7d-8c16-01f8e146b87a",
>          "method": "POST",
>          "bulkId": "qwerty",
>          "version": "W\/\"4weymrEsh5O6cAEK\"",
>          "status": {
>            "code": "201"
>          }
>        },
>        {
>          "location":
>    "https://example.com/v2/Groups/e9e30dba-f08f-4109-8486-d5c6a331660a",
>          "method": "POST",
>          "bulkId": "ytrewq",
>          "version": "W\/\"lha5bbazU3fNvfe5\"",
>          "status": {
>            "code": "201"
>          }
>        }
>      ]
>    }

Should be:

> HTTP/1.1 200 OK
>    Content-Type: application/json
> 
>    {
>      "schemas": ["urn:ietf:params:scim:api:messages:2.0:BulkResponse"],
>      "Operations": [
>        {
>          "location":
>    "https://example.com/v2/Users/92b725cd-9465-4e7d-8c16-01f8e146b87a",
>          "method": "POST",
>          "bulkId": "qwerty",
>          "version": "W\/\"4weymrEsh5O6cAEK\"",
>          "status”: "201"
>        },
>        {
>          "location":
>    "https://example.com/v2/Groups/e9e30dba-f08f-4109-8486-d5c6a331660a",
>          "method": "POST",
>          "bulkId": "ytrewq",
>          "version": "W\/\"lha5bbazU3fNvfe5\"",
>          "status": "201"
>        }
>      ]
>    }


Phil

@independentid
www.independentid.com
phil.hunt@oracle.com