in SCIM validator tool, in request, at attribute role the 'primary' value is string but should be boolean

Siqing Zheng 110 Reputation points
2024-11-27T20:55:14.5733333+00:00

in SCIM validator tool, (maybe in SCIM as well, i haven't test) , the role in request should be boolean rather than string.

  "roles": [
    {
      "primary": "True",
      "display": "NYCCGMHBJBNC",
      "value": "IIQIQVLJMKQB",
      "type": "LWMJELYSHKEV"
    }
Microsoft Security | Microsoft Entra | Microsoft Entra External ID
Microsoft Security | Microsoft Entra | Microsoft Entra ID
0 comments No comments
{count} votes

Accepted answer
  1. Danny Zollner 10,801 Reputation points Microsoft Employee Moderator
    2024-11-28T04:13:40.6333333+00:00

    This appears to be a bug in the SCIM Validator. We're planning some improvements and fixes for the validator early next year and will look into correcting this when we start that work.

    Thank you for taking the time to report this.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. James Hamil 27,221 Reputation points Microsoft Employee Moderator
    2024-11-27T21:04:12.3633333+00:00

    Hi @Siqing Zheng , please format as follows and this should work for you:

    "roles": [
        {
          "primary": true,  // Boolean value
          "display": "NYCCGMHBJBNC",
          "value": "IIQIQVLJMKQB",
          "type": "LWMJELYSHKEV"
        }
    ]
    

    Please let me know if you have any questions and I can help you further.

    If this answer helps you please mark "Accept Answer" so other users can reference it.

    Thank you,

    James


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.