When there is no Notice of Assessment available for a particular Year of Assessment, Myinfo will return no value.
For example:
- Assessable Income available for 2024 but not available for 2023. Myinfo will return:
{
"noahistory": {
"noas": [
{
"amount": { ... },
"yearofassessment": {
"value": "2024"
},
"employment": { ... },
"trade": { ... },
"rent": { ... },
"interest": { ... },
"taxclearance": { ... },
"category": { ... }
}
],
"classification": "C",
"source": "1",
"lastupdated": "2019-03-26"
}
}
- Assessable Income available for both 2024 and 2023. Myinfo will return:
{
"noahistory": {
"noas": [
{
"amount": { ... },
"yearofassessment": {
"value": "2024"
},
"employment": { ... },
"trade": { ... },
"rent": { ... },
"interest": { ... },
"taxclearance": { ... },
"category": { ... }
},
{
"amount": { ... },
"yearofassessment": {
"value": "2023"
},
"employment": { ... },
"trade": { ... },
"rent": { ... },
"interest": { ... },
"taxclearance": { ... },
"category": { ... }
}
],
"classification": "C",
"source": "1",
"lastupdated": "2024-12-31"
}
}
Comments
0 comments
Please sign in to leave a comment.