From 29cf090a0d35546a3dd334d5ea17b22b40afef1a Mon Sep 17 00:00:00 2001 From: William Entriken Date: Fri, 23 Feb 2018 10:39:15 -0500 Subject: [PATCH] Correct typos in JSON schema --- EIPS/eip-721.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EIPS/eip-721.md b/EIPS/eip-721.md index 9fc9fbe5..fdcc0ba3 100644 --- a/EIPS/eip-721.md +++ b/EIPS/eip-721.md @@ -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.", } }