Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Structure

Excerpt


FieldTypeRequiredDescription
ticketNumberstringtrueIdentifier of this Ticket.
paxinttrueNumber of pax.
remarksstringfalseRemarks of this Ticket.
ticketItemsarray of TicketItemfalseDetailed items of the Ticket.



JSON representation

Code Block
languagepowershell
themeDJango
{
	"pax": 1,
	"remarks": "Some remarks",
	"ticketItems": [{
			"name": "test1",
			"quantity": 1,
			"price": 1.2
		},
		{
			"name": "test2",
			"quantity": 1,
			"price": 5.0
		}
	],
	"ticketNumber": "this-is-a-test"
}