AMC Entertainment Holdings · Schema
AMC Movie
Schema for an AMC movie as returned by the AMC Theatres API.
EntertainmentMoviesTheatresShowtimesTicketingConcessionsLoyaltyFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| sortableName | string | |
| slug | string | |
| synopsis | string | |
| synopsisTagLine | string | |
| productionCompany | string | |
| directors | string | |
| starringActors | string | |
| genre | string | |
| mpaaRating | string | |
| runTime | integer | Run time in minutes. |
| releaseDateUtc | string | |
| earliestShowingUtc | string | |
| hasScheduledShowtimes | boolean | |
| websiteUrl | string | |
| showtimesUrl | string | |
| media | object | |
| attributes | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/amc-entertainment-holdings/json-schema/amc-theatres-movie-schema.json",
"title": "AMC Movie",
"description": "Schema for an AMC movie as returned by the AMC Theatres API.",
"type": "object",
"required": ["id", "name", "slug"],
"properties": {
"id": { "type": "integer" },
"name": { "type": "string" },
"sortableName": { "type": "string" },
"slug": { "type": "string" },
"synopsis": { "type": "string" },
"synopsisTagLine": { "type": "string" },
"productionCompany": { "type": "string" },
"directors": { "type": "string" },
"starringActors": { "type": "string" },
"genre": { "type": "string" },
"mpaaRating": { "type": "string", "enum": ["G", "PG", "PG-13", "R", "NC-17", "NR", "Not Rated"] },
"runTime": { "type": "integer", "description": "Run time in minutes." },
"releaseDateUtc": { "type": "string", "format": "date-time" },
"earliestShowingUtc": { "type": "string", "format": "date-time" },
"hasScheduledShowtimes": { "type": "boolean" },
"websiteUrl": { "type": "string", "format": "uri" },
"showtimesUrl": { "type": "string", "format": "uri" },
"media": {
"type": "object",
"additionalProperties": { "type": "string", "format": "uri" }
},
"attributes": {
"type": "array",
"items": { "$ref": "amc-theatres-attribute-schema.json" }
}
}
}