Hi Prashanth,
This definitely doesn't work with the OAS currently generated by TM Forum. You will need to generate your own OAS.
You would need to extend the RequestBody:
GeographicAddress_FVO:
description: The GeographicAddress to be created
content:
application/json:
schema:
$ref: '#/components/schemas/GeographicAddress_FVO'
by something like
GeographicAddress_FVO:
description: The GeographicAddress to be created
content:
application/json:
schema:
$ref: '#/components/schemas/GeographicAddress_FVO'
application/json-patch+json:
schema:
$ref: '#/components/schemas/JsonPatch_FVO'
application/json-patch-query+json:
schema:
$ref: '#/components/schemas/JsonPatchQuery_FVO'
Once this is added some code-generators (e.g. OpenAPI generator for java/spring) will generate code with proper content negotiation.
Your mileage might vary with other generators.
Regards
------------------------------
Koen Peeters
Ciminko SA
------------------------------