{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PolicyDetail", "title": "PolicyDetail", "type": "object", "properties": { "PolicyName": { "allOf": [ { "$ref": "#/components/schemas/policyNameType" }, { "description": "The name of the policy." } ] }, "PolicyDocument": { "allOf": [ { "$ref": "#/components/schemas/policyDocumentType" }, { "description": "The policy document." } ] } }, "description": "

Contains information about an IAM policy, including the policy document.

This data type is used as a response element in the GetAccountAuthorizationDetails operation.

" }