{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "EthOrderDataRaribleV2DataV1", "type": "object", "properties": { "@type": { "type": "string", "enum": [ "ETH_RARIBLE_V2" ] }, "payouts": { "type": "array", "default": [], "items": { "$ref": "#/components/schemas/Payout" } }, "originFees": { "type": "array", "default": [], "items": { "$ref": "#/components/schemas/Payout" } } }, "required": [ "@type", "payouts", "originFees" ] }