{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "SolanaNftAssetType", "type": "object", "properties": { "@type": { "type": "string", "enum": [ "SOLANA_NFT" ] }, "contract": { "$ref": "#/components/schemas/ContractAddress" }, "collection": { "$ref": "#/components/schemas/CollectionId" }, "itemId": { "$ref": "#/components/schemas/ItemId" } }, "required": [ "@type", "itemId" ] }