# Metadata Standards

NFT Standards on Hedera are important to ensure display across the many marketplaces and wallets in the ecosystem.

HashPack authored [HIP-412](https://hips.hedera.com/hip/hip-412) in order to formalize these standards - it is recommended that anyone minting NFTs adheres to these standards.

The basic metadata is as follows:

{% code fullWidth="true" %}

```json
{
    "name": "NFT Name",
    "creator": "Creator Name",
    "description": "Human readable description of the asset - RECOMMENDED",
    "image": "cid or path to the NFT's image file, or for non-image NFTs, a preview image for display in wallets - REQUIRED",
    "type": "mime type - ie image/jpeg - REQUIRED",
    "files": [ // object array that contains uri, type and metadata - can contain multiple files
        {
            "uri": "cid or uri to file - REQUIRED",
            "is_default_file": "(Type: boolean) indicates if the file is the main file for this NFT - OPTIONAL",
            "type": "mime type - REQUIRED"
        }
    ],
    "properties": {
        // arbitrary json objects that cover the overarching properties of the token
    }
}
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hashpack.app/nft-creators/metadata-standards.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
