xattr
xattr refers to extended attributes, a filesystem feature that lets applications associate arbitrary metadata with files and directories beyond standard attributes (such as size, timestamps, and permissions). Extended attributes store small name/value pairs and are commonly implemented on Unix-like systems, including Linux (ext2/3/4, XFS, Btrfs), macOS (HFS+, APFS) and other filesystems that support metadata extensions.
Attribute names are typically namespaced and use a domain-like form (for example, user.comment or com.apple.quarantine). Namespaces
Usage scenarios include storing application-specific metadata, filesystem-level security labels, access control information, resource forks and Finder
Limitations and considerations include per-attribute and total-size limits imposed by filesystems, inconsistent propagation across network protocols