{ "$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": "taylor.lee@example.com" }, "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" } } } } }