Server (Cells) Messaging Home
Space shortcuts
Space Tools

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. ONT server performs the following steps:
    1. Parses <parent> to obtain the table key and path. Queries the table of tables to confirm that the user / role can access the table that is reference by the table key passed in. This call returns the table name referenced by that key. If not, return coded error. The client receives error message with code "TABLE_ACCESS_DENIED".
    2. If max is set, the database is queried for that number of children associated with the parent passed in.
    3. (New in 1.7.13) If numLevel is set, the query will return up to and including the number of levels specified by numLevel (eg. numlevel=2 returns two levels of descendants, numLevel=4 returns four levels of descendants). By default, the function assumes numLevel = 1 and will return the direct descendants of the concept, which is one level of children.  When the numLevel = -1 the function will return ALL descendants of the concept... 
    4. If count < max or no mas set, the database is queried for the entire list of children that meets the parent criteria.
    5. If count > max a coded error message is sent back.

...

  • The get_children message implies that the user is passing a key / path for a parent and wants the children returned. The parent tag will tell the service what metadata table / path to search in and for the get_children message must be specified. The structure of a parent is organized as follows:
    \\table_key\path
    The key (i2b2) plus the path (\RPDR\Diagnoses\Circulatory system (390-459)) is the parent:
    <parent>\\i2b2\RPDR\Diagnoses\Circulatory system (390-459)</parent>

    The remaining attributes provide information about the results to be returned.
  • If the number of rows found is greater than max, then an error message will be return in the i2b2 header. If max is left out then it is interpreted that there is no max.
  • The hiddens and synonyms attributes tell whether to return hiddens and synonyms. By default hiddens and synonyms are false, so if they are left out it will be false.
  • The type tells which columns to select (default / core / all). By default, the type is set to default so you don't have to actually include it if you want the default set of columns returned. Each message will interpret "default" to be a different set of columns. get_children's default set of columns is set to all columns except the blob and the system / date information. If type = core, then all columns except the blob and the system / date information will be returned (same as "default" in this case). If type = all then all columns except the blob are returned.
  • The blob attribute indicates whether or not to return the blob along with the default / core / all return columnscolumns.
  • The numLevel attribute (added in 1.7.13) specifies how many levels of children will be returned. 1 By default, the default, will return immediate children. 0 will return all children. Larger numbers will return the specified number of levels of children. function assumes numLevel = 1 and will return the direct descendants of the concept, which is one level of children.  When the numLevel = -1 the function will return ALL descendants of the concept, otherwise the function will return up to and including the number of levels specified by numLevel (eg. numlevel=2 returns two levels of descendants, numLevel=4 returns four levels of descendants).
    <message_body>
    <get_children max="200" numLevel="1" hiddens="true" synonyms="true" type="default" blob="false">
    <parent>\\i2b2\RPDR\Diagnoses\Circulatory system (390-459)</parent>
    </get_children>
    </message_body>

...