AMC Showtime

Schema for an AMC showtime as returned by the AMC Theatres API.

EntertainmentMoviesTheatresShowtimesTicketingConcessionsLoyaltyFortune 500

Properties

Name Type Description
id integer
movieId integer
movieName string
movieSlug string
sortableMovieName string
showDateTimeUtc string
showDateTimeLocal string
utcOffset string
theatreId integer
auditorium integer
layoutId integer
wamc string
runTime integer
mpaaRating string
genre string
purchaseUrl string
mobilePurchaseUrl string
isSoldOut boolean
isAlmostSoldOut boolean
isCanceled boolean
isPrivateRental boolean
isDiscountMatineePriced boolean
ticketPrices array
attributes array
View JSON Schema on GitHub

JSON Schema

amc-theatres-showtime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amc-entertainment-holdings/json-schema/amc-theatres-showtime-schema.json",
  "title": "AMC Showtime",
  "description": "Schema for an AMC showtime as returned by the AMC Theatres API.",
  "type": "object",
  "required": ["id", "movieId", "theatreId", "showDateTimeUtc"],
  "properties": {
    "id": { "type": "integer" },
    "movieId": { "type": "integer" },
    "movieName": { "type": "string" },
    "movieSlug": { "type": "string" },
    "sortableMovieName": { "type": "string" },
    "showDateTimeUtc": { "type": "string", "format": "date-time" },
    "showDateTimeLocal": { "type": "string" },
    "utcOffset": { "type": "string" },
    "theatreId": { "type": "integer" },
    "auditorium": { "type": "integer" },
    "layoutId": { "type": "integer" },
    "wamc": { "type": "string" },
    "runTime": { "type": "integer" },
    "mpaaRating": { "type": "string" },
    "genre": { "type": "string" },
    "purchaseUrl": { "type": "string", "format": "uri" },
    "mobilePurchaseUrl": { "type": "string", "format": "uri" },
    "isSoldOut": { "type": "boolean" },
    "isAlmostSoldOut": { "type": "boolean" },
    "isCanceled": { "type": "boolean" },
    "isPrivateRental": { "type": "boolean" },
    "isDiscountMatineePriced": { "type": "boolean" },
    "ticketPrices": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "priceType": { "type": "string" },
          "sku": { "type": "string" },
          "price": { "type": "number" },
          "tax": { "type": "number" },
          "formattedPrice": { "type": "string" }
        }
      }
    },
    "attributes": {
      "type": "array",
      "items": { "$ref": "amc-theatres-attribute-schema.json" }
    }
  }
}