PaymentMethod schema from MealMe Food Ordering API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/mealme/refs/heads/main/json-schema/mealme-api-payment-method-schema.json", "title": "PaymentMethod", "description": "PaymentMethod schema from MealMe Food Ordering API", "type": "object", "properties": { "payment_method_id": { "type": "string", "example": "id_7b2c4e" }, "type": { "type": "string", "example": "card" }, "last4": { "type": "string", "example": "4242" } } }