AMC Attribute

An attribute applied to a movie, showtime, or theatre (e.g., IMAX, Atmos, Reserved Seating).

EntertainmentMoviesTheatresShowtimesTicketingConcessionsLoyaltyFortune 500

Properties

Name Type Description
id integer
code string Stable code identifier (e.g., imax, atmos, reald3d).
name string
shortDescription string
longDescription string
url string
sort integer
appliesToMovie boolean
appliesToShowtime boolean
appliesToTheatre boolean
View JSON Schema on GitHub

JSON Schema

amc-theatres-attribute-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-attribute-schema.json",
  "title": "AMC Attribute",
  "description": "An attribute applied to a movie, showtime, or theatre (e.g., IMAX, Atmos, Reserved Seating).",
  "type": "object",
  "properties": {
    "id": { "type": "integer" },
    "code": { "type": "string", "description": "Stable code identifier (e.g., imax, atmos, reald3d)." },
    "name": { "type": "string" },
    "shortDescription": { "type": "string" },
    "longDescription": { "type": "string" },
    "url": { "type": "string", "format": "uri" },
    "sort": { "type": "integer" },
    "appliesToMovie": { "type": "boolean" },
    "appliesToShowtime": { "type": "boolean" },
    "appliesToTheatre": { "type": "boolean" }
  }
}