Asset Properties Standard
We advice that, when creating/modifying the properties of the assets, Universe owners adhere to the standards that are common to the NFT community. A great reference is provided by OpenSea Standards.
One of the main reasons for adhering to standards is that most marketplaces need to parse the properties in order to display them nicely.
The following are the main things to take into account:
mandatory fields:
name
,description
.strongly-suggested extra field:
image
. For future-proofness, it shall be a pointer to an ipfs route, so that anyone, including the owner of the asset, can upload to ipfs at any point in the future.to associate a video or music file, just place it in the
animation_url
field; theimage
field may then be used as a thumbnail for such content.any further properties should go under the
attributes
field, in the form of an array. Each entry in the array must contain:the name of the property under
trait_type
the value of the property under
value
. If the value is a string, place it between ""; if it is numeric, no need.
Here is an example of an asset's typical JSON:
Last updated