mirror of
https://github.com/status-im/EIPs.git
synced 2025-01-27 07:05:47 +00:00
Fix JSON syntax (#1578)
While the previous JSON may be valid for some interpreters (like JavaScript's) it's not valid according to RFC 4627 due to the trailing commas.
This commit is contained in:
parent
c6a476b64d
commit
c7a29f363f
@ -202,15 +202,15 @@ This is the "ERC721 Metadata JSON Schema" referenced above.
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"description": "Identifies the asset to which this NFT represents",
|
||||
"description": "Identifies the asset to which this NFT represents"
|
||||
},
|
||||
"description": {
|
||||
"type": "string",
|
||||
"description": "Describes the asset to which this NFT represents",
|
||||
"description": "Describes the asset to which this NFT represents"
|
||||
},
|
||||
"image": {
|
||||
"type": "string",
|
||||
"description": "A URI pointing to a resource with mime type image/* representing the asset to which this NFT represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive.",
|
||||
"description": "A URI pointing to a resource with mime type image/* representing the asset to which this NFT represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user