Fuel Product

The Fuel Product can describe any product used as fuel for an aircraft.

The units of measure available are volumetric since the billed amounts are always metered by volume.

Property

Type

Description

aid

string

A string with the AID of the Fuel Product, with FPR as namespace.

name

string

A label for this fuel product.

description

string, null

A free text description for this product. This should not be used to enter information in contradiction with other properties in this or other models.

type

string

A string indicating the type of fuel product being described. Possible values are: – JET_A for JET A fuel – JET_A1 for JET A-1 fuel – JET_B for JET B fuel – TS1 for TS-1 fuel – AVGAS_100_130 for AvGas 100/130 – AVGAS_100LL for AvGas 100LL – AVGAS_91_96UL for AvGas 91/96UL – JP5 for military kerosene JP-5 – JP8 for military kerosene JP-8 – MO_GAS for regular automotive gasoline – DIESEL for regular automotive diesel null if this information was not added.

price

number

The unit price for this Fuel Product.

currency

string

The ISO 4217 3-letters currency code.

unit

string

The unit of measure to which the price refers. possible values are: – LTR for litersUSG for US GallonsIMP for Imperial Gallons

limitedAvailability

boolean, null

true indicates that this Fuel Product is available in limited quantity only and that, therefore, operators should make reasonable prior arrangements before planning on uplifting it. false if the stock level allows usual uplifts to happen without prior arrangement. This property only indicates stock levels, and any other prior arrangement required for payment or other purposes is not taken into consideration.

minimumVolume

number, null

A number between 0 and 999999 thatindicates the minimum volume to which the price is applicable.

maximumVolume

number, null

A number between 0 and 999999 thatindicates the minimum volume to which the price is applicable.

selfService

boolean, null

A boolean which indicates if the fuel is applicable to self-service only.

true indicates that the price is for full service only.

false indicates that the price includes service.

minimumHandlingWaiver

number, null

Indicates the minimum amount in unit required to waive handling charges.

It is a number from 0 to 999999, where 999999 indicates that handling charges are always applicable.

parent

string

The AID of the Provider which offers this Fuel Product.

Example


{
  "type": "JET_A1",
  "unit": "USG",
  "currency": "USD",
  "price": 3.47,
  "limitedAvailability": false,
  "selfService": false,
  "minimumVolume": 0,
  "maximumVolume": 200,
  "minimumHandlingWaiver": 50,
  "aid": "FPR-8P21-2ZOY",
  "parent": "PRV-234K-APDB"
}

Last updated