Hi ,
Can anyone please suggest where I can download negative test data, i.e. resource data fails on validation. Specifically I need patient data ( not bundle)
Thanks
פורום זה נועד להתייעצויות עם צוות ILCORE ועם חברי הקהילה.
דגשים לשאילת שאלות בפורום:
לפני שאתם שואלים שאלה, בדקו בבקשה אם השאלה לא נשאלה בפוסטים קודמים.
אנא פרסמו את השאלה בערוץ הפורום הרלוונטי (משאבים ופרופילים, טרמינולוגיה או פרויקטים של FHIR)
וודאו כי הפרטים הבאים מופיעים בשאלה:
מהם הרכיבים של פרופילי FHIR שעליהם אתם שואלים
תארו בפירוט את המקרה העסקי השלם שאתם מעוניינים להשיג
צרפו מידע רלוונטי תומך (למשלjsons, מסמכים וכו')
אם רלוונטי, פרטו את הפרטים הטכניים של מקרה השימוש (למשל, ספק שרת FHIR)
לדוגמא: "במקרה העסקי שלנו למטופל יש גם מין בלידה, שהוא שונה ממגדר. האם מין בלידה צריך להיות חלק מפרופיל המטופל?"
Creating separate files for the resources in a bundle is not a very common practice, though it can easily be done with a little scripting. The main purpose of a bundle, and of FHIR resources in general is to represent states of entities in a Restful framework. So for example you can POST the transaction bundle to a public FHIR server like http://hapi-fhir.outburn.co.il/ so the individual resources will be saved on the server. This will allow you to search for them and with the appropriate Accept header you can ask the server to return them as XML. You can also perform a Bulk export and get them as NDJSON.
Another option is to POST the bundle to the /Bundle endpoint (i.e. http://hapi-fhir.outburn.co.il/Bundle) - this will only create the Bundle on the server and not the individual resources. You can still do a GET request for that bundle and ask it to be returned in XML.