SCIM User Resource

The SCIM user resource object.

APIs.ioEngineeringPlatform

Properties

Name Type Description
schemas array The [SCIM schema URI](https://www.iana.org/assignments/scim/scim.xhtml).
id string The team member's SCIM ID.
userName string The team member's SCIM username.
name object Information about the Postman team member.
externalId string The team member's external ID.
active boolean If true, the team member is active.
meta object The response's non-standard meta information.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-scimuserresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scimUserResource",
  "title": "SCIM User Resource",
  "description": "The SCIM user resource object.",
  "type": "object",
  "properties": {
    "schemas": {
      "type": "array",
      "description": "The [SCIM schema URI](https://www.iana.org/assignments/scim/scim.xhtml).",
      "items": {
        "type": "string",
        "example": "urn:ietf:params:scim:schemas:core:2.0:User"
      }
    },
    "id": {
      "type": "string",
      "description": "The team member's SCIM ID.",
      "example": "405775fe15ed41872a8eea4c8aa2b38cda9749812cc55c99"
    },
    "userName": {
      "type": "string",
      "description": "The team member's SCIM username.",
      "example": "[email protected]"
    },
    "name": {
      "type": "object",
      "description": "Information about the Postman team member.",
      "properties": {
        "givenName": {
          "type": "string",
          "description": "The team member's first name.",
          "example": "Taylor"
        },
        "familyName": {
          "type": "string",
          "description": "The team member's last name.",
          "example": "Lee"
        }
      }
    },
    "externalId": {
      "type": "string",
      "description": "The team member's external ID.",
      "example": "12345678"
    },
    "active": {
      "type": "boolean",
      "description": "If true, the team member is active.",
      "example": true
    },
    "meta": {
      "type": "object",
      "description": "The response's non-standard meta information.",
      "properties": {
        "resourceType": {
          "type": "string",
          "description": "The resource type.",
          "example": "User"
        },
        "created": {
          "type": "string",
          "format": "date-time",
          "description": "The date and time at which the team member was created.",
          "example": "2021-02-22T04:24:13.000Z"
        },
        "lastModified": {
          "type": "string",
          "format": "date-time",
          "description": "The date and time at which the team member was last modified.",
          "example": "2021-02-22T04:24:13.000Z"
        }
      }
    }
  }
}