Skip to content

Commit bf3ead3

Browse files
committed
fix: ServiceProviderConfig documentation and typos
1 parent 3a73524 commit bf3ead3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scim2_models/resources/service_provider_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Filter(ComplexAttribute):
3838
"""A Boolean value specifying whether or not the operation is supported."""
3939

4040
max_results: Annotated[Optional[int], Mutability.read_only, Required.true] = None
41-
"""A Boolean value specifying whether or not the operation is supported."""
41+
"""An integer value specifying the maximum number of resources returned in a response."""
4242

4343

4444
class ChangePassword(ComplexAttribute):
@@ -66,7 +66,7 @@ class Type(str, Enum):
6666

6767
type: Annotated[Optional[Type], Mutability.read_only, Required.true] = Field(
6868
None,
69-
examples=["oauth", "oauth2", "oauthbreakertoken", "httpbasic", "httpdigest"],
69+
examples=["oauth", "oauth2", "oauthbearertoken", "httpbasic", "httpdigest"],
7070
)
7171
"""The authentication scheme."""
7272

0 commit comments

Comments
 (0)