@sasrsc
Hey Mate,
You JSON does not complain, although I had to use Parse JSON twice.

The First schema was generated using
{
"ParseJSON_Content": "{\"AcceptJetRide\":\"Y\",\"Company\":\"CONSULTANT\",\"Email\":\"jamesastorer@comcast.net\",\"GovBoard\":\"N\",\"GovOfficial\":\"N\",\"GovOwned\":\"N\",\"ID\":302,\"Nationality\":\"US\",\"PaxID\":\"118\",\"PaxName\":\"Storer, James\",\"Routing\":\"RDU-KGGG-RDU\",\"Start\":\"2020-10-13\",\"TripId\":\"38\",\"TripPurpose\":null}"
}
The Second one was created using the Output of the First Parse JSON action:
{
"type": "object",
"properties": {
"AcceptJetRide": {
"type": "string"
},
"Company": {
"type": "string"
},
"Email": {
"type": "string"
},
"GovBoard": {
"type": "string"
},
"GovOfficial": {
"type": "string"
},
"GovOwned": {
"type": "string"
},
"ID": {
"type": "integer"
},
"Nationality": {
"type": "string"
},
"PaxID": {
"type": "string"
},
"PaxName": {
"type": "string"
},
"Routing": {
"type": "string"
},
"Start": {
"type": "string"
},
"TripId": {
"type": "string"
},
"TripPurpose": {}
}
}
Final Output:

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!