cedar-policy-cli 4.10.0

CLI interface for the Cedar Policy language.
Documentation
1
2
3
4
5
6
7
8
9
entity ScreenTime;
entity UserGroup;
entity Album in [Album];
entity Photo in [Album] { owner: User };
entity User in [UserGroup] { account: Account };
entity Account { age: Long };

action edit appliesTo { principal: [User], resource: [Photo] };
action view appliesTo { principal: [User], resource: [Photo, ScreenTime] };