{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://opensea.io/schemas/Price", "title": "Price", "type": "object", "properties": { "currency": { "type": "string" }, "decimals": { "type": "integer", "format": "int32" }, "value": { "type": "string" } }, "required": [ "currency", "decimals", "value" ] }