web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / I'm getting following ...
Power Automate
Answered

I'm getting following error when I "Parse JSON".

(0) ShareShare
ReportReport
Posted on by 5

 

My scheme:

{
    "type""object",
    "properties": {
        "@@count": {
            "type""integer"
        },
        "@@start": {
            "type""integer"
        },
        "@@totalcount": {
            "type""integer"
        },
        "Messages": {
            "type""array"
        },
        "ResourceName": {
            "type""string"
        },
        "ReturnCode": {
            "type""integer"
        },
        "content": {
            "type""array",
            "items": {
                "type""object",
                "properties": {
                    "Change": {
                        "type""object",
                        "properties": {
                            "CustomerVisible": {
                                "type""boolean"
                            },
                            "EffectOfNotImplementing": {
                                "type""array",
                                "items": {
                                    "type""string"
                                }
                            },
                            "ExeGroups": {
                                "type""array"
                            },
                            "Impact": {
                                "type""string"
                            },
                            "ImplementationEnd": {
                                "type""string"
                            },
                            "ImplementationStart": {
                                "type""string"
                            },
                            "RequestedEndDate": {
                                "type""string"
                            },
                            "Service": {
                                "type""string"
                            },
                            "Urgency": {
                                "type""string"
                            },
                            "close": {
                                "type""object",
                                "properties": {
                                    "ClosureCode": {
                                        "type""integer"
                                    }
                                }
                            },
                            "description.structure": {
                                "type""object",
                                "properties": {
                                    "Description": {
                                        "type""array"
                                    },
                                    "ImplementationComments": {
                                        "type""array",
                                        "items": {
                                            "type""string"
                                        }
                                    }
                                }
                            },
                            "header": {
                                "type""object",
                                "properties": {
                                    "ApprovalStatus": {
                                        "type""string"
                                    },
                                    "AssignedTo": {
                                        "type""string"
                                    },
                                    "AssignmentGroup": {
                                        "type""string"
                                    },
                                    "BackoutDuration": {
                                        "type""string"
                                    },
                                    "Category": {
                                        "type""string"
                                    },
                                    "ChangeCoordinator": {
                                        "type""string"
                                    },
                                    "ChangeID": {
                                        "type""string"
                                    },
                                    "ChangeModel": {
                                        "type""string"
                                    },
                                    "Company": {
                                        "type""string"
                                    },
                                    "DateEntered": {
                                        "type""string"
                                    },
                                    "InitiatedBy": {
                                        "type""string"
                                    },
                                    "Open": {
                                        "type""boolean"
                                    },
                                    "Phase": {
                                        "type""string"
                                    },
                                    "PlannedEnd": {
                                        "type""string"
                                    },
                                    "PlannedStart": {
                                        "type""string"
                                    },
                                    "Priority": {
                                        "type""string"
                                    },
                                    "Status": {
                                        "type""string"
                                    },
                                    "Subcategory": {
                                        "type""string"
                                    },
                                    "Title": {
                                        "type""string"
                                    }
                                }
                            },
                            "middle": {
                                "type""object",
                                "properties": {
                                    "Assets": {
                                        "type""array",
                                        "items": {
                                            "type""string"
                                        }
                                    },
                                    "ConfigurationItem": {
                                        "type""string"
                                    }
                                }
                            }
                        }
                    }
                },
                "required": [
                    "Change"
                ]
            }
        }
    }
}



 

 

 

 

 

 

 


Error:

{
    "errors": [
        {
            "message""Invalid type. Expected String but got Null.",
            "lineNumber"0,
            "linePosition"0,
            "path""content[0].Change.EffectOfNotImplementing[0]",
            "schemaId""#/properties/content/items/properties/Change/properties/EffectOfNotImplementing/items",
            "errorType""type",
            "childErrors": []
        }
    ]
}





Categories:
I have the same question (0)
  • Verified answer
    v-bofeng-msft Profile Picture
    on at

    Hi @juan12 ,

     

    Please try:

     

    {
    "type": "object",
    "properties": {
    "@@count": {
    "type": "integer"
    },
    "@@start": {
    "type": "integer"
    },
    "@@totalcount": {
    "type": "integer"
    },
    "Messages": {
    "type": "array"
    },
    "ResourceName": {
    "type": "string"
    },
    "ReturnCode": {
    "type": "integer"
    },
    "content": {
    "type": "array",
    "items": {
    "type": "object",
    "properties": {
    "Change": {
    "type": "object",
    "properties": {
    "CustomerVisible": {
    "type": "boolean"
    },
    "EffectOfNotImplementing": {
    "type": "array",
    "items": {
    "type": ["string", "null"]
    }
    },
    "ExeGroups": {
    "type": "array"
    },
    "Impact": {
    "type": "string"
    },
    "ImplementationEnd": {
    "type": "string"
    },
    "ImplementationStart": {
    "type": "string"
    },
    "RequestedEndDate": {
    "type": "string"
    },
    "Service": {
    "type": "string"
    },
    "Urgency": {
    "type": "string"
    },
    "close": {
    "type": "object",
    "properties": {
    "ClosureCode": {
    "type": "integer"
    }
    }
    },
    "description.structure": {
    "type": "object",
    "properties": {
    "Description": {
    "type": "array"
    },
    "ImplementationComments": {
    "type": "array",
    "items": {
    "type": "string"
    }
    }
    }
    },
    "header": {
    "type": "object",
    "properties": {
    "ApprovalStatus": {
    "type": "string"
    },
    "AssignedTo": {
    "type": "string"
    },
    "AssignmentGroup": {
    "type": "string"
    },
    "BackoutDuration": {
    "type": "string"
    },
    "Category": {
    "type": "string"
    },
    "ChangeCoordinator": {
    "type": "string"
    },
    "ChangeID": {
    "type": "string"
    },
    "ChangeModel": {
    "type": "string"
    },
    "Company": {
    "type": "string"
    },
    "DateEntered": {
    "type": "string"
    },
    "InitiatedBy": {
    "type": "string"
    },
    "Open": {
    "type": "boolean"
    },
    "Phase": {
    "type": "string"
    },
    "PlannedEnd": {
    "type": "string"
    },
    "PlannedStart": {
    "type": "string"
    },
    "Priority": {
    "type": "string"
    },
    "Status": {
    "type": "string"
    },
    "Subcategory": {
    "type": "string"
    },
    "Title": {
    "type": "string"
    }
    }
    },
    "middle": {
    "type": "object",
    "properties": {
    "Assets": {
    "type": "array",
    "items": {
    "type": "string"
    }
    },
    "ConfigurationItem": {
    "type": "string"
    }
    }
    }
    }
    }
    },
    "required": [
    "Change"
    ]
    }
    }
    }
    }

     

    Best Regards,

    Bof

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Automate

#1
trice602 Profile Picture

trice602 378 Super User 2025 Season 2

#2
David_MA Profile Picture

David_MA 273 Super User 2025 Season 2

#3
Expiscornovus Profile Picture

Expiscornovus 135 Most Valuable Professional

Last 30 days Overall leaderboard