{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Meta", "type": "object", "properties": { "name": { "type": "string", "description": "Name of the NFT item" }, "description": { "type": "string", "description": "Description of the NFT item" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "tags": { "type": "array", "items": { "type": "string" } }, "genres": { "type": "array", "items": { "type": "string" } }, "language": { "description": "Language in RFC 1176 format", "type": "string" }, "rights": { "type": "string" }, "rightsUri": { "type": "string" }, "externalUri": { "description": "URI to external page related to the Item", "type": "string" }, "originalMetaUri": { "description": "URI to the original meta JSON", "type": "string" }, "attributes": { "type": "array", "description": "Attributes of the NFT item", "items": { "$ref": "#/components/schemas/MetaAttribute" } }, "content": { "type": "array", "description": "NFT content information", "items": { "$ref": "#/components/schemas/MetaContent" } }, "extraContent": { "type": "array", "description": "NFT additional content information", "items": { "$ref": "#/components/schemas/MetaContent" } } }, "required": [ "name", "attributes", "content" ] }