> For the complete documentation index, see [llms.txt](https://metacity-tokau.gitbook.io/metacity/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://metacity-tokau.gitbook.io/metacity/metacity-nft-metadata-standards.md).

# MetaCity NFT Metadata Standards

Contract:

MetaCity Land NFT is Using standard ERC721 metadata structure

| Param          | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| -------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| image          | This is the URL to the image of the item. Can be just about any type of image (including SVGs, which will be cached into PNGs by Tokau, and even MP4s), and can be [IPFS](https://github.com/ipfs/is-ipfs) URLs or paths.                                                                                                                                                                                                                                                  |
| external\_url  | This is the URL that will appear below the asset's image on Tokau and will allow users to leave Tokau and view the item on your site.                                                                                                                                                                                                                                                                                                                                      |
| description    | A human readable description of the item. Markdown is supported.                                                                                                                                                                                                                                                                                                                                                                                                           |
| name           | Name of the item.                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| attributes     | These are the attributes for the item, which will show up on the Tokau page for the item. (`trait_type` is the name of the trait, `value` is the value of the trait)                                                                                                                                                                                                                                                                                                       |
| animation\_url | <p>A URL to a multi-media attachment for the item. The file extensions GLTF, GLB, WEBM, MP4, M4V, OGV, and OGG are supported, along with the audio-only extensions MP3, WAV, and OGA.<br><br>Animation\_url also supports HTML pages, allowing you to build rich experiences and interactive NFTs using JavaScript canvas, WebGL, and more. Scripts and relative paths within the HTML page are now supported. However, access to browser extensions is not supported.</p> |

### Example

```
{
  "name": "NFT name",
  "description": "Description of this NFT",
  "external_url": "https://metacity.tokau.io",
  "image":"https://ipfs.io/ipfs/QmRCEv5dEyF5h7grTLuYPwEBNEBV8omnHBs4STbp2QoJFM",    
  "attributes": [
    {
      "trait_type": "Color",
      "value": "Read"                                                                                                                                               
    },
    {
      "trait_type": "Size",
      "value": "M"
    }
  ]
}
```
