Lyft · Schema

Lyft Ride Type

A Lyft ride type representing an available category of ride at a given location, including pricing details and passenger capacity.

Properties

Name Type Description
ride_type string Identifier for the ride type.
display_name string Human-readable name for the ride type.
seats integer Maximum number of passenger seats available for this ride type.
image_url string URL to an image representing the ride type.
pricing_details object Pricing breakdown for this ride type.
View JSON Schema on GitHub

JSON Schema

lyft-ride-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://lyft.com/schemas/lyft/ride-type.json",
  "title": "Lyft Ride Type",
  "description": "A Lyft ride type representing an available category of ride at a given location, including pricing details and passenger capacity.",
  "type": "object",
  "required": ["ride_type", "display_name"],
  "properties": {
    "ride_type": {
      "type": "string",
      "description": "Identifier for the ride type.",
      "enum": ["lyft", "lyft_line", "lyft_plus", "lyft_premier", "lyft_lux", "lyft_luxsuv"]
    },
    "display_name": {
      "type": "string",
      "description": "Human-readable name for the ride type."
    },
    "seats": {
      "type": "integer",
      "description": "Maximum number of passenger seats available for this ride type.",
      "minimum": 1,
      "maximum": 10
    },
    "image_url": {
      "type": "string",
      "format": "uri",
      "description": "URL to an image representing the ride type."
    },
    "pricing_details": {
      "$ref": "#/$defs/PricingDetails",
      "description": "Pricing breakdown for this ride type."
    }
  },
  "$defs": {
    "PricingDetails": {
      "type": "object",
      "description": "Pricing breakdown for a ride type. All monetary amounts are in the smallest denomination of the currency (e.g., cents for USD).",
      "properties": {
        "base_charge": {
          "type": "integer",
          "description": "Base fare amount in the smallest currency denomination.",
          "minimum": 0
        },
        "cost_per_mile": {
          "type": "integer",
          "description": "Per-mile charge in the smallest currency denomination.",
          "minimum": 0
        },
        "cost_per_minute": {
          "type": "integer",
          "description": "Per-minute charge in the smallest currency denomination.",
          "minimum": 0
        },
        "cost_minimum": {
          "type": "integer",
          "description": "Minimum fare amount in the smallest currency denomination.",
          "minimum": 0
        },
        "trust_and_service": {
          "type": "integer",
          "description": "Trust and service fee in the smallest currency denomination.",
          "minimum": 0
        },
        "cancel_penalty_amount": {
          "type": "integer",
          "description": "Cancellation penalty amount in the smallest currency denomination.",
          "minimum": 0
        },
        "currency": {
          "type": "string",
          "description": "ISO 4217 currency code.",
          "pattern": "^[A-Z]{3}$"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/lyft-ride-type"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.