Spoonacular · Schema

ComparableProduct

ComparableProduct schema from spoonacular API

RestaurantFood And DrinkRecipesNutritionMeal PlanningPublic APIs

Properties

Name Type Description
difference number
id integer
image string
title string
View JSON Schema on GitHub

JSON Schema

spoonacular-comparable-product-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ComparableProduct",
  "description": "ComparableProduct schema from spoonacular API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/spoonacular/refs/heads/main/json-schema/spoonacular-comparable-product-schema.json",
  "type": "object",
  "properties": {
    "difference": {
      "type": "number",
      "example": 1.0
    },
    "id": {
      "type": "integer",
      "example": 716429
    },
    "image": {
      "type": "string",
      "minLength": 1,
      "example": "example"
    },
    "title": {
      "type": "string",
      "minLength": 1,
      "example": "example"
    }
  },
  "required": [
    "difference",
    "id",
    "image",
    "title"
  ]
}