What is the SUI NFT metadata structure when building your collection?

Having worked on solana we have used the hashlips art generator which combine images & json files. However I cant seem to find a clear documentation like in solanas metaplex that clearly defines the proper metadata json file structure.

Here is an example refrence on how I would expect to structure my metadata on SUI from Solana’s example: Metaplex Metadata Standard. Metadata standard for SPL Tokens… | by Adam Jeffries | Metaplex Studios | Medium

{
“name”: “Solflare X NFT”,
“symbol”: “”,
“description”: “Celebratory Solflare NFT for the Solflare X launch”,
“seller_fee_basis_points”: 0,
“image”: “ipfs website”,
“animation_url”: “ipfs website”,
“external_url”: “website”,
“attributes”: [
{
“trait_type”: “web”,
“value”: “yes”
},
{
“trait_type”: “mobile”,
“value”: “yes”
},
{
“trait_type”: “extension”,
“value”: “yes”
}
],
“collection”: {
“name”: “Solflare X NFT”,
“family”: “Solflare”
},
“properties”: {
“files”: [
{
“uri”: “ipfs website abcd5678?ext=png”,
“type”: “image/png”
},
{
“uri”: “watch video”,
“type”: “unknown”,
“cdn”: true
},
{
“uri”: “ipfs website efgh1234?ext=mp4”,
“type”: “video/mp4”
}
],
“category”: “video”,
“creators”: [
{
“address”: “Wallet address”,
“share”: 100
}
]
}
}

Would this same structure work in SUI when preparing a collection?

3 Likes