mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 14:25:17 +00:00
Added some descriptions and missing properties to Semantics
This commit is contained in:
@@ -55,24 +55,64 @@ export interface Semantics {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @iOSVersion 18
|
* @iOSVersion 18
|
||||||
* @passStyle eventTicket (new layout)
|
*
|
||||||
|
* Additional ticket attributes that other tags or keys in the pass don’t include.
|
||||||
|
* Use this key for any type of event ticket.
|
||||||
*/
|
*/
|
||||||
additionalTicketAttributes?: string;
|
additionalTicketAttributes?: string;
|
||||||
|
|
||||||
balance?: SemanticTagType.CurrencyAmount;
|
balance?: SemanticTagType.CurrencyAmount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A group number for boarding.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
boardingGroup?: string;
|
boardingGroup?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A sequence number for boarding.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
boardingSequenceNumber?: string;
|
boardingSequenceNumber?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The number of the passenger car.
|
||||||
|
* A train car is also called a carriage, wagon, coach, or bogie in some countries.
|
||||||
|
* Use this key only for a train or other rail boarding pass.
|
||||||
|
*/
|
||||||
carNumber?: string;
|
carNumber?: string;
|
||||||
|
|
||||||
confirmationNumber?: string;
|
confirmationNumber?: string;
|
||||||
currentArrivalDate?: string;
|
currentArrivalDate?: string;
|
||||||
currentBoardingDate?: string;
|
currentBoardingDate?: string;
|
||||||
currentDepartureDate?: string;
|
currentDepartureDate?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The IATA airport code for the departure airport, such as `MPM` or `LHR`.
|
||||||
|
* Use this key only for airline boarding passes.
|
||||||
|
*/
|
||||||
departureAirportCode?: string;
|
departureAirportCode?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The full name of the departure airport, such as Maputo International Airport. Use this key only for airline boarding passes.
|
||||||
|
*/
|
||||||
departureAirportName?: string;
|
departureAirportName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The gate number or letters of the departure gate, such as 1A. Don’t include the word gate.
|
||||||
|
*/
|
||||||
departureGate?: string;
|
departureGate?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An object that represents the geographic coordinates of the transit departure location,
|
||||||
|
* suitable for display on a map.
|
||||||
|
* If possible, use precise locations, which are more useful to travelers;
|
||||||
|
* for example, the specific location of an airport gate.
|
||||||
|
*
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
departureLocation?: SemanticTagType.Location;
|
departureLocation?: SemanticTagType.Location;
|
||||||
|
|
||||||
departureLocationDescription?: string;
|
departureLocationDescription?: string;
|
||||||
departurePlatform?: string;
|
departurePlatform?: string;
|
||||||
departureStationName?: string;
|
departureStationName?: string;
|
||||||
@@ -155,18 +195,54 @@ export interface Semantics {
|
|||||||
homeTeamAbbreviation?: string;
|
homeTeamAbbreviation?: string;
|
||||||
homeTeamLocation?: string;
|
homeTeamLocation?: string;
|
||||||
homeTeamName?: string;
|
homeTeamName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The abbreviated league name for a sports event. Use this key only for a sports event ticket.
|
||||||
|
*/
|
||||||
leagueAbbreviation?: string;
|
leagueAbbreviation?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The unabbreviated league name for a sports event.
|
||||||
|
* Use this key only for a sports event ticket.
|
||||||
|
*/
|
||||||
leagueName?: string;
|
leagueName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of a frequent flyer or loyalty program.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
membershipProgramName?: string;
|
membershipProgramName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The ticketed passenger’s frequent flyer or loyalty number.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
membershipProgramNumber?: string;
|
membershipProgramNumber?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @iOSVersion 26
|
||||||
|
*
|
||||||
|
* The ticketed passenger’s frequent flyer or loyalty program status.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
|
membershipProgramStatus?: string;
|
||||||
|
|
||||||
originalArrivalDate?: string;
|
originalArrivalDate?: string;
|
||||||
originalBoardingDate?: string;
|
originalBoardingDate?: string;
|
||||||
originalDepartureDate?: string;
|
originalDepartureDate?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An object that represents the name of the passenger.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
passengerName?: SemanticTagType.PersonNameComponents;
|
passengerName?: SemanticTagType.PersonNameComponents;
|
||||||
|
|
||||||
performerNames?: string[];
|
performerNames?: string[];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The priority status the ticketed passenger holds, such as `Gold` or `Silver`.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
priorityStatus?: string;
|
priorityStatus?: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -187,8 +263,23 @@ export interface Semantics {
|
|||||||
tailgatingAllowed?: boolean;
|
tailgatingAllowed?: boolean;
|
||||||
|
|
||||||
totalPrice?: SemanticTagType.CurrencyAmount;
|
totalPrice?: SemanticTagType.CurrencyAmount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of the transit company. Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
transitProvider?: string;
|
transitProvider?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A brief description of the current boarding status for the vessel, such as `On Time` or `Delayed`.
|
||||||
|
* For delayed status, provide `currentBoardingDate`, `currentDepartureDate`, and `currentArrivalDate` where available.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
transitStatus?: string;
|
transitStatus?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A brief description that explains the reason for the current transitStatus, such as `Thunderstorms`.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
transitStatusReason?: string;
|
transitStatusReason?: string;
|
||||||
|
|
||||||
vehicleName?: string;
|
vehicleName?: string;
|
||||||
@@ -312,22 +403,67 @@ export const Semantics = Joi.object<Semantics>().keys({
|
|||||||
awayTeamLocation: Joi.string(),
|
awayTeamLocation: Joi.string(),
|
||||||
awayTeamName: Joi.string(),
|
awayTeamName: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @iOSVersion 18
|
||||||
|
*
|
||||||
|
* Additional ticket attributes that other tags or keys in the pass don’t include.
|
||||||
|
* Use this key for any type of event ticket.
|
||||||
|
*/
|
||||||
additionalTicketAttributes: Joi.string(),
|
additionalTicketAttributes: Joi.string(),
|
||||||
|
|
||||||
balance: SemanticTagType.CurrencyAmount,
|
balance: SemanticTagType.CurrencyAmount,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A group number for boarding.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
boardingGroup: Joi.string(),
|
boardingGroup: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A sequence number for boarding.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
boardingSequenceNumber: Joi.string(),
|
boardingSequenceNumber: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The number of the passenger car.
|
||||||
|
* A train car is also called a carriage, wagon, coach, or bogie in some countries.
|
||||||
|
* Use this key only for a train or other rail boarding pass.
|
||||||
|
*/
|
||||||
carNumber: Joi.string(),
|
carNumber: Joi.string(),
|
||||||
|
|
||||||
confirmationNumber: Joi.string(),
|
confirmationNumber: Joi.string(),
|
||||||
currentArrivalDate: Joi.string(),
|
currentArrivalDate: Joi.string(),
|
||||||
currentBoardingDate: Joi.string(),
|
currentBoardingDate: Joi.string(),
|
||||||
currentDepartureDate: Joi.string(),
|
currentDepartureDate: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The IATA airport code for the departure airport, such as `MPM` or `LHR`.
|
||||||
|
* Use this key only for airline boarding passes.
|
||||||
|
*/
|
||||||
departureAirportCode: Joi.string(),
|
departureAirportCode: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The full name of the departure airport, such as `Maputo International Airport`.
|
||||||
|
* Use this key only for airline boarding passes.
|
||||||
|
*/
|
||||||
departureAirportName: Joi.string(),
|
departureAirportName: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The gate number or letters of the departure gate, such as 1A. Don’t include the word gate.
|
||||||
|
*/
|
||||||
departureGate: Joi.string(),
|
departureGate: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An object that represents the geographic coordinates of the transit departure location,
|
||||||
|
* suitable for display on a map.
|
||||||
|
* If possible, use precise locations, which are more useful to travelers;
|
||||||
|
* for example, the specific location of an airport gate.
|
||||||
|
*
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
departureLocation: SemanticTagType.Location,
|
departureLocation: SemanticTagType.Location,
|
||||||
|
|
||||||
departureLocationDescription: Joi.string(),
|
departureLocationDescription: Joi.string(),
|
||||||
departurePlatform: Joi.string(),
|
departurePlatform: Joi.string(),
|
||||||
departureStationName: Joi.string(),
|
departureStationName: Joi.string(),
|
||||||
@@ -385,18 +521,54 @@ export const Semantics = Joi.object<Semantics>().keys({
|
|||||||
homeTeamAbbreviation: Joi.string(),
|
homeTeamAbbreviation: Joi.string(),
|
||||||
homeTeamLocation: Joi.string(),
|
homeTeamLocation: Joi.string(),
|
||||||
homeTeamName: Joi.string(),
|
homeTeamName: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The abbreviated league name for a sports event. Use this key only for a sports event ticket.
|
||||||
|
*/
|
||||||
leagueAbbreviation: Joi.string(),
|
leagueAbbreviation: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The unabbreviated league name for a sports event. Use this key only for a sports event ticket.
|
||||||
|
*/
|
||||||
leagueName: Joi.string(),
|
leagueName: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of a frequent flyer or loyalty program.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
|
|
||||||
membershipProgramName: Joi.string(),
|
membershipProgramName: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The ticketed passenger’s frequent flyer or loyalty number.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
membershipProgramNumber: Joi.string(),
|
membershipProgramNumber: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @iOSVersion 26
|
||||||
|
*
|
||||||
|
* The ticketed passenger’s frequent flyer or loyalty program status.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
|
membershipProgramStatus: Joi.string(),
|
||||||
|
|
||||||
originalArrivalDate: Joi.string(),
|
originalArrivalDate: Joi.string(),
|
||||||
originalBoardingDate: Joi.string(),
|
originalBoardingDate: Joi.string(),
|
||||||
originalDepartureDate: Joi.string(),
|
originalDepartureDate: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An object that represents the name of the passenger.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
passengerName: SemanticTagType.PersonNameComponents,
|
passengerName: SemanticTagType.PersonNameComponents,
|
||||||
|
|
||||||
performerNames: Joi.array().items(Joi.string()),
|
performerNames: Joi.array().items(Joi.string()),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The priority status the ticketed passenger holds, such as `Gold` or `Silver`.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
priorityStatus: Joi.string(),
|
priorityStatus: Joi.string(),
|
||||||
|
|
||||||
playlistIDs: Joi.array().items(Joi.string()),
|
playlistIDs: Joi.array().items(Joi.string()),
|
||||||
@@ -409,8 +581,23 @@ export const Semantics = Joi.object<Semantics>().keys({
|
|||||||
tailgatingAllowed: Joi.boolean(),
|
tailgatingAllowed: Joi.boolean(),
|
||||||
|
|
||||||
totalPrice: SemanticTagType.CurrencyAmount,
|
totalPrice: SemanticTagType.CurrencyAmount,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of the transit company. Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
transitProvider: Joi.string(),
|
transitProvider: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A brief description of the current boarding status for the vessel, such as `On Time` or `Delayed`.
|
||||||
|
* For delayed status, provide `currentBoardingDate`, `currentDepartureDate`, and `currentArrivalDate` where available.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
transitStatus: Joi.string(),
|
transitStatus: Joi.string(),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A brief description that explains the reason for the current transitStatus, such as `Thunderstorms`.
|
||||||
|
* Use this key for any type of boarding pass.
|
||||||
|
*/
|
||||||
transitStatusReason: Joi.string(),
|
transitStatusReason: Joi.string(),
|
||||||
|
|
||||||
vehicleName: Joi.string(),
|
vehicleName: Joi.string(),
|
||||||
|
|||||||
Reference in New Issue
Block a user