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:
Albert 2018-12-03 23:06:25 +01:00 committed by Nick Johnson
parent c6a476b64d
commit c7a29f363f

View File

@ -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."
}
}
}