Correct typos in JSON schema

This commit is contained in:
William Entriken 2018-02-23 10:39:15 -05:00 committed by GitHub
parent ab00c60414
commit 29cf090a0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -162,15 +162,15 @@ This is the "ERC721 Metadata JSON Schema" referenced above. Learn more about [JS
"type": "object",
"properties": {
"name": {
"type": "string"
"type": "string",
"description": "Identifies the thing to which the deed grants ownership",
},
"description": {
"type": "string"
"type": "string",
"description": "Describes the thing to which the deed grants ownership",
},
"image": {
"type": "string"
"type": "string",
"description": "A URI pointing to a resource with mime type image/* representing the thing to which the deeds grants ownership. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive.",
}
}