{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "EthOrderDataRaribleV2DataV3", "type": "object", "properties": { "@type": { "type": "string", "enum": [ "ETH_RARIBLE_V2_3" ] }, "payouts": { "type": "array", "default": [], "items": { "$ref": "#/components/schemas/Payout" } }, "originFees": { "type": "array", "default": [], "items": { "$ref": "#/components/schemas/Payout" } }, "isMakeFill": { "type": "boolean", "description": "If true, the 'fill' part of the order applies to the 'make' side, otherwise to the 'take' side" } }, "required": [ "@type", "payouts", "originFees", "isMakeFill" ] }