MealMe · Schema

PaymentMethod

PaymentMethod schema from MealMe Food Ordering API

DeliveryFoodGroceryOrderingRestaurants

Properties

Name Type Description
payment_method_id string
type string
last4 string
View JSON Schema on GitHub

JSON Schema

mealme-api-payment-method-schema.json Raw ↑
{
  "$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"
    }
  }
}