{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-volume-schema.json", "title": "Volume", "description": "Volume used by the Kubernetes workload.", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "name" }, "description": "Volume name." } ] }, "HostPath": { "allOf": [ { "$ref": "#/components/schemas/HostPath" }, { "xml": { "name": "hostPath" }, "description": "Represents a pre-existing file or directory on the host machine that the volume maps to." } ] } } }