{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccessPolicyRequest", "title": "AccessPolicyRequest", "type": "object", "properties": { "policy": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "permissions": { "type": "array", "items": { "type": "object", "properties": { "serviceId": { "type": "string" }, "actions": { "type": "array", "items": { "type": "string" } } } } } }, "example": "example_value" } } }