Conversion of FHIR questionaire to ODK x-form

I am developing an android application in which I will need to display FHIR questionaire format in ODK forms.
Is there a way to generate x-form programmatically with FHIR questions?

What is FHIR questionnaire? I guess it would need to provide more information so that the community can help.

Hi Trung, Thanks for the response, FHIR is the Healthcare resource specification. I have attached the xml format of fhir , which I have to convert to x-form. I need to display the FHIR questions (question data format defined by FHIR) using ODK. I need suggestions in converting the attached xml format to x-form specification.

{
"resourceType": "Questionnaire",
"id": "2031396",
"meta": {
"versionId": "1",
"lastUpdated": "2018-04-03T12:27:14.191+00:00"
},
"language": "fi",
"title": "Koirat kissoja",
"status": "active",
"date": "2018-01-15T10:45:08.205Z",
"item": [
{
"linkId": "kysymys",
"text": "Kissat koiria?",
"type": "choice",
"required": true,
"option": [
{
"valueInteger": 1
},
{
"valueInteger": 0
}
]
}
]
}

Ah I see. I think the best shot would be to do conversion between xlm and FHIR on server side. So, the process would be: ODK -> xml -> FHIR.

Others may have a better idea.