FHIR Chat · Code system property coding binding · terminology

Stream: terminology

Topic: Code system property coding binding


view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 01:45):

Is there a way to bind a valueset to a codesystem property?
I couldn't see any extension for that.
(creating a simple editor for CS and can't spot that)

view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 01:46):

https://forms-lab.azurewebsites.net/CodeSystem/

view this post on Zulip Grahame Grieve (Feb 08 2022 at 02:40):

bind a valueset to a codesystem property

what does that mean?

view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 02:55):

When the server is validating a coding based property attached to a concept in the CodeSystem, which Valueset the property code comes from.

view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 02:56):

(or when I'm using a UI to enter in the concepts in the code system - where to source the possible codes from)

view this post on Zulip Grahame Grieve (Feb 08 2022 at 03:00):

I don't understand. Properties don't come from value sets

view this post on Zulip Grahame Grieve (Feb 08 2022 at 03:00):

value sets aren't 'bound' to code system properties

view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 03:01):

Code System Properties can have a coded value in them - what does that bind to?

view this post on Zulip Grahame Grieve (Feb 08 2022 at 03:01):

why would you be validating a coding based property?

view this post on Zulip Grahame Grieve (Feb 08 2022 at 03:01):

I don't know what you mean by 'bind'?

view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 03:01):

Don't we normally have a way of binding any Coding type property?

view this post on Zulip Grahame Grieve (Feb 08 2022 at 03:02):

you bind an element to a value set. is that what you're asking about?

view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 03:02):

Yes, the element is a property on a codesystem concept.

view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 03:03):

e.g. with this example CodeSystem, how do I define the ValueSet to bind for what the Advertising Category property should be bound to?
https://sqlonfhir-r4.azurewebsites.net/fhir/CodeSystem/0d2ff289b6b54d4d85c40ccf5d696034/

view this post on Zulip Grahame Grieve (Feb 08 2022 at 04:00):

well, are you asking about slicing the properties so you can bind, or about what the value set would look like?

view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 04:24):

I'm asking how I can update this CodeSystem to indicate what valueset to bind to the AdvertisingCategory property definition
i.e. something like this:

<property >
    <extension value="???">
        <valueCanonical value="http://example.org/fhir/ValueSet/advertisingCategories"/>
    </extension>
    <code value="adv"/>
    <description value="Advertising Category"/>
    <type value="Coding"/>
</property>

so that then in the concepts that are listed in that code system lower down...

  <concept>
    <code value="Excel" />
    <display value="Excellent" />
    <property>
      <code value="adv" />
      <valueCoding>
        <system value="http://example.org/fhir/CodeSystem/advertisingCategories" />
        <code value="general" />
      </valueCoding>
    </property>
  </concept>

view this post on Zulip Grahame Grieve (Feb 08 2022 at 06:02):

we haven't defined any extension like that

view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 06:35):

I'll log it...

view this post on Zulip Brian Postlethwaite (Feb 08 2022 at 06:51):

https://jira.hl7.org/browse/FHIR-35978


Last updated: Apr 12 2022 at 19:14 UTC