MealMe · JSON Structure

Mealme Api Payment Method Structure

PaymentMethod schema from MealMe Food Ordering API

Type: object Properties: 3
DeliveryFoodGroceryOrderingRestaurants

PaymentMethod is a JSON Structure definition published by MealMe, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

payment_method_id type last4

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mealme/refs/heads/main/json-structure/mealme-api-payment-method-structure.json",
  "name": "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"
    }
  }
}