/
Board

Board

Structure

FieldTypeRequiredDescription
idinttrueUnique identifier for the Board.
chainIdinttrueChainBoard Identifier related to the Board.
codestringtrueCode of the Board.
namestringtrueName of the Board.
propertyIdintfalsePropertyId of the Board.
serviceListArray of ServicefalseA list of associated Service to this Board.
forecastList

Array of BoardAvailability

falseA list of associated BoardAvailability to this Board. Only apears if we have data.

JSON representation

{
	"id": 2,
	"chainBoard": 1,
	"name": "Bed And Breakfast",
	"code": "BB",
	"serviceList": [
		 {
 			"id": 61,
			"code":"BR",
 			"name": "Breakfast"
 		 }
	],
	"forecastList":[
			{
				"boardId": 2,
				"date": "2022-08-15",
				"quantityConsumedAdult": 5,
				"quantityConsumedJunior": 4,
				"quantityConsumedChild": 8,
				"quantityConsumedInfant": 2,
			}
		]
}

Related content