{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Fields", "title": "Fields", "description": "String dictionary with the names of the fields and their respective values that must be inserted into the order.", "required": [ "marketplacePaymentMethod" ], "type": "object", "properties": { "marketplacePaymentMethod": { "type": "string", "title": "marketplacePaymentMethod", "description": "String with field's key and value.", "example": "credit card" } }, "example": { "marketplacePaymentMethod": "credit card" } }