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