# Attachment Represents a file or link attached to a product. ## Type Definition ```graphql type Attachment { name: String href: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | name | String | The display name of the attachment | | href | String | The URL or path to the attachment | ## Relationships The Attachment type is used to associate files and links with products, enabling product documentation, manuals, certificates, or other supplementary resources to be referenced within the product data structure. ## Example ```graphql { name href } ``` ## Implements This type does not implement any interfaces. ## Related Types No related types.