8000 docs: correct typos in scim docs by Rehket · Pull Request #9013 · JanssenProject/jans · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

docs: correct typos in scim docs #9013

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By 8000 clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
8 changes: 4 additions & 4 deletions docs/admin/scim/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ tags:

# Overview

**S**ystem for **C**ross-domain **I**dentity **M**anagement, in short **SCIM**, is a specification that simplifies the exchange of user identity information across different domains. The Janssen Server provides implementation for the SCIM specification.
**S**ystem for **C**ross-domain **I**dentity **M**anagement, in short **SCIM**, is a specification that simplifies the exchange of user identity information across different domains. The Janssen Server provides an implementation for the SCIM specification.

The specification defines reference schemas for users and groups along with REST API to manage them. For more details, refer to the current version of the specification that is governed by the following documents: [RFC 7642](https://tools.ietf.org/html/rfc7642), [RFC 7643](https://tools.ietf.org/html/rfc7643), and [RFC 7644](https://tools.ietf.org/html/rfc7644).
The specification defines reference schemas for users and groups along with REST API to manage them. For more details, refer to the current version of the specification governed by the following documents: [RFC 7642](https://tools.ietf.org/html/rfc7642), [RFC 7643](https://tools.ietf.org/html/rfc7643), and [RFC 7644](https://tools.ietf.org/html/rfc7644).

Developers can think of **SCIM** merely as a **REST API** with endpoints exposing **CRUD** functionality (create, read, update and delete).
Developers can think of **SCIM** merely as a **REST API** with endpoints exposing **CRUD** functionality (create, read, update, and delete).

This section covers how to configure, protect and monitor the Janssen Server SCIM module and its APIs.
This section covers how to configure, protect, and monitor the Janssen Server SCIM module and its APIs.
3 changes: 1 addition & 2 deletions docs/admin/scim/bulk-users.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,9 @@ An operation is a JSON document with the following:
}
]
}
}
```

The above paylod illustrates how to insert three users with different details each.
The above payload illustrates how to insert three users with different details each.

## Bulk response

Expand Down
4 changes: 2 additions & 2 deletions docs/admin/scim/custom-attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Although the schema covers many attributes one might think of, at times you will

* Add an attribute to LDAP schema

* Include the new attribute in an LDAP's objectclass such as jansPerson
* Include the new attribute in an LDAP's object class such as jansPerson

* Register and activate your new attribute through **Jans TUI**.

Expand All @@ -39,7 +39,7 @@ To customize the URI associated to the extension (whose default value is `urn:ie
* Set a value in the field `User Extension Schema URI`
* Save the changes

![scim-extention](https://github.com/JanssenProject/jans/assets/43112579/fb5b9d5c-8b17-4be0-af6c-d36389de82d2)
![scim-extension](https://github.com/JanssenProject/jans/assets/43112579/fb5b9d5c-8b17-4be0-af6c-d36389de82d2)



Expand Down
0