{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "user_permissions_response", "type": "object", "properties": { "data": { "type": "object", "properties": { "id": { "type": "integer", "format": "int32" }, "permissions": { "$ref": "#/components/schemas/user_permissions" } } }, "meta": { "type": "object", "properties": { "status": { "type": "string", "example": "success" } } } } }