Skip to main content

ResourceType

Resource type definition as defined in RFC 7644 Section 6

descriptionstring

The resource type's human-readable description

endpointstringrequired

The resource type's HTTP-addressable endpoint relative to the base URL

idstringrequired

The resource type's unique identifier

meta object

Resource metadata as defined in RFC 7643 Section 3.1

createdstring<date-time>

The timestamp when the resource was created

lastModifiedstring<date-time>

The timestamp when the resource was last modified

locationstring<uri>

The URI of the resource

resourceTypestring

The name of the resource type (e.g., User, Group)

versionstring

The version of the resource. Used for ETag-based versioning. Weak ETags are prefixed with W/

namestringrequired

The resource type's name (e.g., User, Group)

schemastringrequired

The resource type's primary/base schema URI

schemaExtensions object[]

List of schema extensions for this resource type

  • Array [
  • requiredbooleanrequired

    Indicates whether the schema extension is required

    schemastringrequired

    The URI of the extended schema

  • ]
  • schemasstring[]required

    Possible values: [urn:ietf:params:scim:schemas:core:2.0:ResourceType]

    ResourceType
    {
    "description": "string",
    "endpoint": "string",
    "id": "string",
    "meta": {
    "created": "2024-07-29T15:51:28.071Z",
    "lastModified": "2024-07-29T15:51:28.071Z",
    "location": "string",
    "resourceType": "string",
    "version": "string"
    },
    "name": "string",
    "schema": "string",
    "schemaExtensions": [
    {
    "required": true,
    "schema": "string"
    }
    ],
    "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:ResourceType"
    ]
    }