{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ConversionDate",
"title": "ConversionDate",
"description": "The date when the organisation starts using Xero",
"type": "object",
"properties": {
"Month": {
"description": "The month the organisation starts using Xero. Value is an integer between 1 and 12",
"type": "integer",
"example": 1
},
"Year": {
"description": "The year the organisation starts using Xero. Value is an integer greater than 2006",
"type": "integer",
"example": 2020
}
}
}