{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-access-key-details-schema.json", "title": "AccessKeyDetails", "description": "Contains information about the access keys.", "type": "object", "properties": { "AccessKeyId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "accessKeyId" }, "description": "The access key ID of the user." } ] }, "PrincipalId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "principalId" }, "description": "The principal ID of the user." } ] }, "UserName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "userName" }, "description": "The name of the user." } ] }, "UserType": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "userType" }, "description": "The type of the user." } ] } } }