-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: add is owner relationship and cleanup legacy naming (#204)
* feat(authz): add isCreator relationship * feat: rename isCreator to isOwner and fix legacy namings
- Loading branch information
Showing
1 changed file
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
{ | ||
"@context": { | ||
"Client": "https://ontology.eglobalmark.com/authorization#Client", | ||
"Group": "https://ontology.eglobalmark.com/authorization#Group", | ||
"User": "https://ontology.eglobalmark.com/authorization#User", | ||
"canAdmin": "https://ontology.eglobalmark.com/authorization#canAdmin", | ||
"canRead": "https://ontology.eglobalmark.com/authorization#canRead", | ||
"canWrite": "https://ontology.eglobalmark.com/authorization#canWrite", | ||
"clientId": "https://ontology.eglobalmark.com/authorization#clientId", | ||
"familyName": "https://ontology.eglobalmark.com/authorization#familyName", | ||
"givenName": "https://ontology.eglobalmark.com/authorization#givenName", | ||
"Group": "https://ontology.eglobalmark.com/authorization#Group", | ||
"isMemberOf": "https://ontology.eglobalmark.com/authorization#isMemberOf", | ||
"isOwner": "https://ontology.eglobalmark.com/authorization#isOwner", | ||
"kind": "https://ontology.eglobalmark.com/authorization#kind", | ||
"name": "https://schema.org/name", | ||
"profile": "https://ontology.eglobalmark.com/authorization#profile", | ||
"rCanAdmin": "https://ontology.eglobalmark.com/authorization#rCanAdmin", | ||
"rCanRead": "https://ontology.eglobalmark.com/authorization#rCanRead", | ||
"rCanWrite": "https://ontology.eglobalmark.com/authorization#rCanWrite", | ||
"right": "https://ontology.eglobalmark.com/authorization#right", | ||
"roles": "https://ontology.eglobalmark.com/authorization#roles", | ||
"serviceAccountId": "https://ontology.eglobalmark.com/authorization#serviceAccountId", | ||
"specificAccessPolicy": "https://ontology.eglobalmark.com/authorization#specificAccessPolicy", | ||
"subjectInfo": "https://ontology.eglobalmark.com/authorization#subjectInfo", | ||
"User": "https://ontology.eglobalmark.com/authorization#User", | ||
"username": "https://ontology.eglobalmark.com/authorization#username", | ||
"kind": "https://ontology.eglobalmark.com/authorization#kind" | ||
"username": "https://ontology.eglobalmark.com/authorization#username" | ||
} | ||
} |