You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Section 5.2 marks the id as required, however there are situations in which an ID is not yet known. How might I construct a request to create a resource? Should I attempt to pre-generate the ID before making the policy request, or make a request with an optional ID?
{
"subject": {
"type": "account",
"id": "12345678-aaaa-bbbb-cccc-1234567890ab"
},
"action": {
"name": "create"
},
"resource": {
"type": "home_listing",
"id": null | "pre-generated" // should this be optional?
}
}