{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EntityInfo", "title": "EntityInfo", "type": "object", "required": [ "Arn", "Name", "Type", "Id" ], "properties": { "Arn": { "$ref": "#/components/schemas/arnType" }, "Name": { "allOf": [ { "$ref": "#/components/schemas/userNameType" }, { "description": "The name of the entity (user or role)." } ] }, "Type": { "allOf": [ { "$ref": "#/components/schemas/policyOwnerEntityType" }, { "description": "The type of entity (user or role)." } ] }, "Id": { "allOf": [ { "$ref": "#/components/schemas/idType" }, { "description": "The identifier of the entity (user or role)." } ] }, "Path": { "allOf": [ { "$ref": "#/components/schemas/pathType" }, { "description": "The path to the entity (user or role). For more information about paths, see IAM identifiers in the IAM User Guide. " } ] } }, "description": "

Contains details about the specified entity (user or role).

This data type is an element of the EntityDetails object.

" }