Issue
The type for ScimMeta field on the ScimResource interface is incompliant with the official SCIM RFC.
To Reproduce
See
|
export interface ScimMeta { |
|
readonly created: Date; |
|
readonly lastModified: Date; |
|
readonly location?: string; |
|
} |
and compare with Section 2.3.5 of
https://datatracker.ietf.org/doc/html/rfc7643#section-2.3.5
Expected behavior
- Both of these fields should be optional properties and should not be required.
- The type for the lastModified and created fields should just be a string and not a Date.
Screenshots
N.A.
Desktop (please complete the following information):
N.A.
Smartphone (please complete the following information):
N.A.
Issue
The type for ScimMeta field on the ScimResource interface is incompliant with the official SCIM RFC.
To Reproduce
See
scim-patch/src/types/types.ts
Lines 34 to 38 in 85b4fc5
and compare with Section 2.3.5 of https://datatracker.ietf.org/doc/html/rfc7643#section-2.3.5
Expected behavior
Screenshots
N.A.
Desktop (please complete the following information):
N.A.
Smartphone (please complete the following information):
N.A.