{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "NftAssetType", "type": "object", "properties": { "@type": { "type": "string", "enum": [ "NFT" ] }, "collectionId": { "$ref": "#/components/schemas/CollectionId" }, "itemId": { "$ref": "#/components/schemas/ItemId" }, "standard": { "type": "string", "enum": [ "SINGLE", "MULTIPLE" ] } }, "required": [ "@type", "itemId", "collectionId" ] }