Sealed Product
The Sealed Product Data Model describes the properties for the purchaseable product of a Set Data Model.
TypeScript Model
Show/Hide Model
TypeScript
export type SealedProduct = {
category?: string;
identifiers: Identifiers;
name: string;
productSize?: number;
purchaseUrls: PurchaseUrls;
releaseDate: string | null;
subtype?: string;
uuid: string;
};
Model Properties
category optional
The category of this product.
- Type:
string
- Introduced:
v5.2.1
identifiers
The identifiers associated to a product. See the Identifiers Data Model.
- Type:
Identifiers
- Introduced:
v5.2.0
name
The name of the product.
- Type:
string
- Introduced:
v5.2.0
productSize optional
The size of the product.
- Type:
number
- Introduced:
v5.2.1
purchaseUrls
Links that navigate to websites where the product can be purchased. See the Purchase Urls Data Model.
- Type:
PurchaseUrls
- Introduced:
v5.2.0
releaseDate
The release date in ISO 8601 format for the product. Returns
null
if the set was not formally released as a product.
- Type:
string | null
- Introduced:
v5.2.0
subtype optional
The category subtype of this product.
- Type:
string
- Introduced:
v5.2.1
uuid
The universal unique identifier (v5) generated by MTGJSON.
- Type:
string
- Introduced:
v5.2.0