openapi: 3.0.3
info:
  title: CCDI Data Federation Resource API
  description: |
    ## Overview

    The Childhood Cancer Data Initiative (CCDI) Data Federation Resource API supports the
    querying of federated pediatric cancer within the broader community. The goal
    of the API is to support identification of pediatric cancer samples of interest
    via a variety of query parameters.
    The API is integrated with the [Childhood Participant Index (CPI) Service](https://ccdi.cancer.gov/ccdi-participant-index)
    through "subject-mapping" endpoint.
    ### CCDI Data Federation Participating Nodes API Access
    * Visit the [documentation homepage](https://cbiit.github.io/ccdi-federation-api)
      to view the complete set of requirements to maintain and deploy a CCDI
      Federation node.
    * Additionally, you can view the Swagger specification in a more traditional
      theme by visiting
      [this link](https://editor-next.swagger.io/?url=https://cbiit.github.io/ccdi-federation-api/swagger.yml).
 
  contact:
    name: Childhood Cancer Data Initiative support email
    email: NCIChildhoodCancerDataInitiative@mail.nih.gov
  version: v1.2.1
servers:
  - url: https://federation.ccdi.cancer.gov/api/v1
    description: CCDI Data Federation Resource API server
paths:
  /subject:
    get:
      tags:
      - Subject
      summary: Gets the subjects known by this server.
      description: |-
        Gets the subjects known by this server.

        ### Pagination

        This endpoint is paginated. Users may override the default pagination
        parameters by providing one or more of the pagination-related query
        parameters below.

        ### Filtering

        All harmonized (top-level) and unharmonized (nested under the
        `metadata.unharmonized` key) metadata fields are filterable. To achieve
        this, you can provide the field name as a [`String`]. Filtering follows the
        following rules:

        * For single-value metadata field, the subject is included in the results if
        its value _exactly_ matches the query string. Matches are case-sensitive.
        * For multiple-value metadata fields, the subject is included in the results
        if any of its values for the field _exactly_ match the query string (a
        logical OR [`||`]). Matches are case-sensitive.
        * When the metadata field is `null` (in the case of singular or
        multiple-valued metadata fields) or empty, the subject is not included.
        * When multiple fields are provided as filters, a logical AND (`&&`) strings
        together the predicates. In other words, all filters must match for a
        subject to be returned. Note that this means that servers do not natively
        support logical OR (`||`) across multiple fields: that must be done by
        calling this endpoint with each of your desired queries and performing a
        set union of those subjects out of band.

        ### Ordering

        This endpoint has default ordering requirements—those details are documented
        in the `responses::Subjects` schema.
      operationId: subject_index
      parameters:
      - name: sex
        in: query
        description: Matches any subject where the `sex` field matches the string provided.
        required: false
        schema:
          type: string
      - name: race
        in: query
        description: |-
          Matches any subject where any member of the `race` field matches the
          string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: ethnicity
        in: query
        description: |-
          Matches any subject where the `ethnicity` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: identifiers
        in: query
        description: |-
          Matches any subject where any member of the `identifiers` field matches
          the string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: vital_status
        in: query
        description: |-
          Matches any subject where the `vital_status` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: age_at_vital_status
        in: query
        description: |-
          Matches any subject where the `age_at_vital_status` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: depositions
        in: query
        description: |-
          Matches any subject where any member of the `depositions` fields match
          the string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: metadata.unharmonized.<field>
        in: query
        description: |-
          All unharmonized fields should be filterable in the same manner as harmonized fields:

          * Filtering on a singular field should include the `Subject` in the results if the query exactly matches the value of that field for the `Subject` (case-sensitive).
          * Filtering on field with multiple values should include the `Subject` in the results if the query exactly matches any of the values of the field for that `Subject` (case-sensitive).
          * Unlike harmonized fields, unharmonized fields must be prefixed with `metadata.unharmonized`.

          **Note:** this query parameter is intended to be symbolic of any unharmonized field. Because of limitations within Swagger UI, it will show up as a query parameter that can be optionally be submitted as part of a request within Swagger UI. Please keep in mind that the literal query parameter `?metadata.unharmonized.<field>=value` is not supported, so attempting to use it within Swagger UI will not work!
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: |-
          The page to retrieve.

          This is a 1-based index of a page within a page set. The value of `page`
          **must** default to `1` when this parameter is not provided.
        required: false
        schema:
          type: integer
          minimum: 0
      - name: per_page
        in: query
        description: |-
          The number of results per page.

          Each server can select its own default value for `per_page` when this
          parameter is not provided. That said, the convention within the
          community is to use `100` as a default value if any value is equally
          reasonable.
        required: false
        schema:
          type: integer
          minimum: 0
      responses:
        '200':
          description: Successful operation.
          headers:
            link:
              schema:
                type: string
              description: "Links to URLs that may be of interest when paging through paginated responses. This header contains two or more links of interest. The format of the field is as follows: \n\n`Link: <URL>; rel=\"REL\"` \n### Relationships\n\nIn the format above, `URL` represents a valid URL for the link of interest and `REL` is one of four values: \n- `first` (_Required_). A link to the first page in the results (can be the same as `last` if there is only one page).\n- `last` (_Required_). A link to the first page in the results (can be the same as `first` if there is only one page).\n- `next` (_Optional_). A link to the next page (if it exists).\n- `prev` (_Optional_). A link to the previous page (if it exists).\n\n### Requirements\n\n- This header _must_ provide links for at least the `first` and `last` rels.\n - The `prev` and `next` links must exist only (a) when there are multiple pages in the result page set and (b) when the current page is not the first or last page, respectively.\n- This list of links is unordered.\n\n ### Notes\n\n- HTTP 1.1 and HTTP 2.0 dictate that response headers are case insensitive. Though not required, we recommend an all lowercase name of `link` for this response header."
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.SubjectsArray'
        '404':
          description: |-
            Not found.
            Servers that cannot provide line-level data should use this response rather than Forbidden (403), as there is no level of authorization that would allow one to access the information included in the API.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: UnshareableData
                  entity: Subjects
                  reason: Our agreement with data providers prohibits us from sharing line-level data.
                  message: 'Unable to share data for subjects: our agreement with data providers prohibits us from sharing line-level data.'
        '422':
          description: Invalid query or path parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: InvalidParameters
                  parameters:
                  - page
                  - per_page
                  reason: Unable to calculate offset.
                  message: 'Invalid value for parameters ''page'' and ''per_page'': unable to calculate offset.'
  /subject/{organization}/{namespace}/{name}:
    get:
      tags:
      - Subject
      summary: Gets the subject matching the provided id (if the subject exists).
      description: Gets the subject matching the provided id (if the subject exists).
      operationId: subject_show
      parameters:
      - name: organization
        in: path
        description: The organization identifier of the namespace to which the subject belongs.
        required: true
        schema:
          type: string
      - name: namespace
        in: path
        description: The name of the namespace to which the subject belongs.
        required: true
        schema:
          type: string
      - name: name
        in: path
        description: The name portion of the subject identifier.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.SubjectArray'
        '404':
          description: |-
            Not found.
            Servers that cannot provide line-level data should use this response rather than Forbidden (403), as there is no level of authorization that would allow one to access the information included in the API.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: NotFound
                  entity: Subjects
                  message: Subjects not found.
  /subject/by/{field}/count:
    get:
      tags:
      - Subject
      summary: Groups the subjects by the specified metadata field and returns counts.
      description: Groups the subjects by the specified metadata field and returns counts.
      operationId: subjects_by_count
      parameters:
      - name: field
        in: path
        description: The field to group by and count with.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.by.count.subject.ResultsArray'
        '422':
          description: Unsupported field.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: UnsupportedField
                  field: handedness
                  reason: This field is not present for subjects.
                  message: 'Field ''handedness'' is not supported: this field is not present for subjects.'
  /subject/summary:
    get:
      tags:
      - Subject
      summary: Reports summary information for the subjects known by this server.
      description: Reports summary information for the subjects known by this server.
      operationId: subject_summary
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.SummaryArray'
  /subject-mapping:
    get:
      tags:
      - Subject
      summary: Gets the subjects IDs known by this server.
      description: |-
        Finds the subjects known by this server and
        returns domain ID/ID pair and all mapped organizational domain ID/ID 
        pairs for each found subject ID. Find more information on
        [Get Relevant
        Domain IDs](https://participantindex-docs.ccdi.cancer.gov).

        ### Pagination

        This endpoint is paginated. Users may override the default pagination
        parameters by providing one or more of the pagination-related query
        parameters below.

        ### Filtering

        All harmonized (top-level) and unharmonized (nested under the
        `metadata.unharmonized` key) metadata fields are filterable. To achieve
        this, you can provide the field name as a [`String`]. Filtering follows the
        following rules:

        * For single-value metadata field, the subject is included in the results if
        its value _exactly_ matches the query string. Matches are case-sensitive.
        * For multiple-value metadata fields, the subject is included in the results
        if any of its values for the field _exactly_ match the query string (a
        logical OR [`||`]). Matches are case-sensitive.
        * When the metadata field is `null` (in the case of singular or
        multiple-valued metadata fields) or empty, the subject is not included.
        * When multiple fields are provided as filters, a logical AND (`&&`) strings
        together the predicates. In other words, all filters must match for a
        subject to be returned. Note that this means that servers do not natively
        support logical OR (`||`) across multiple fields: that must be done by
        calling this endpoint with each of your desired queries and performing a
        set union of those subjects out of band.

        ### Ordering

        This endpoint has default ordering requirements—those details are documented
        in the `responses::Subjects` schema.
      operationId: subject_cpi
      parameters:
      - name: sex
        in: query
        description: Matches any subject where the `sex` field matches the string provided.
        required: false
        schema:
          type: string
      - name: race
        in: query
        description: |-
          Matches any subject where any member of the `race` field matches the
          string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: ethnicity
        in: query
        description: |-
          Matches any subject where the `ethnicity` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: identifiers
        in: query
        description: |-
          Matches any subject where any member of the `identifiers` field matches
          the string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: vital_status
        in: query
        description: |-
          Matches any subject where the `vital_status` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: age_at_vital_status
        in: query
        description: |-
          Matches any subject where the `age_at_vital_status` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: depositions
        in: query
        description: |-
          Matches any subject where any member of the `depositions` fields match
          the string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: search
        in: query
        description: |-
          Matches any subject where the `associated_diagnoses` field contains the
          string provided, ignoring case.
        required: false
        schema:
          type: string
      - name: metadata.unharmonized.<field>
        in: query
        description: |-
          All unharmonized fields should be filterable in the same manner as harmonized fields:

          * Filtering on a singular field should include the `Subject` in the results if the query exactly matches the value of that field for the `Subject` (case-sensitive).
          * Filtering on field with multiple values should include the `Subject` in the results if the query exactly matches any of the values of the field for that `Subject` (case-sensitive).
          * Unlike harmonized fields, unharmonized fields must be prefixed with `metadata.unharmonized`.

          **Note:** this query parameter is intended to be symbolic of any unharmonized field. Because of limitations within Swagger UI, it will show up as a query parameter that can be optionally be submitted as part of a request within Swagger UI. Please keep in mind that the literal query parameter `?metadata.unharmonized.<field>=value` is not supported, so attempting to use it within Swagger UI will not work!
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: |-
          The page to retrieve.

          This is a 1-based index of a page within a page set. The value of `page`
          **must** default to `1` when this parameter is not provided.
        required: false
        schema:
          type: integer
          minimum: 0
      - name: per_page
        in: query
        description: |-
          The number of results per page.

          Each server can select its own default value for `per_page` when this
          parameter is not provided. That said, the convention within the
          community is to use `100` as a default value if any value is equally
          reasonable.
        required: false
        schema:
          type: integer
          minimum: 0
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
        '404':
          description: |-
            Not found.
            Servers that cannot provide line-level data should use this response rather than Forbidden (403), as there is no level of authorization that would allow one to access the information included in the API.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: UnshareableData
                  entity: Subjects
                  reason: Our agreement with data providers prohibits us from sharing line-level data.
                  message: 'Unable to share data for subjects: our agreement with data providers prohibits us from sharing line-level data.'
        '422':
          description: Invalid query or path parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: InvalidParameters
                  parameters:
                  - page
                  - per_page
                  reason: Unable to calculate offset.
                  message: 'Invalid value for parameters ''page'' and ''per_page'': unable to calculate offset.'
  /sample:
    get:
      tags:
      - Sample
      summary: Gets the samples known by this server.
      description: |-
        Gets the samples known by this server.

        ### Pagination

        This endpoint is paginated. Users may override the default pagination
        parameters by providing one or more of the pagination-related query
        parameters below.

        ### Filtering

        All harmonized (top-level) and unharmonized (nested under the
        `metadata.unharmonized` key) metadata fields are filterable. To achieve
        this, you can provide the field name as a [`String`]. Filtering follows the
        following rules:

        * For single-value metadata field, the sample is included in the results if
        its value _exactly_ matches the query string. Matches are case-sensitive.
        * For multiple-value metadata fields, the sample is included in the results
        if any of its values for the field _exactly_ match the query string (a
        logical OR [`||`]). Matches are case-sensitive.
        * When the metadata field is `null` (in the case of singular or
        multiple-valued metadata fields) or empty, the sample is not included.
        * When multiple fields are provided as filters, a logical AND (`&&`) strings
        together the predicates. In other words, all filters must match for a
        sample to be returned. Note that this means that servers do not natively
        support logical OR (`||`) across multiple fields: that must be done by
        calling this endpoint with each of your desired queries and performing a
        set union of those samples out of band.

        ### Ordering

        This endpoint has default ordering requirements—those details are documented
        in the `responses::Samples` schema.
      operationId: sample_index
      parameters:
      - name: disease_phase
        in: query
        description: |-
          Matches any sample where the `disease_phase` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: anatomical_sites
        in: query
        description: |-
          Matches any sample where the `anatomical_sites` field matches the string
          provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: library_selection_method
        in: query
        description: |-
          Matches any sample where the `library_selection_method` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: library_strategy
        in: query
        description: |-
          Matches any sample where the `library_strategy` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: library_source_material
        in: query
        description: |-
          Matches any sample where the `library_source_material` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: preservation_method
        in: query
        description: |-
          Matches any sample where the `preservation_method` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: tumor_grade
        in: query
        description: |-
          Matches any sample where the `tumor_grade` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: specimen_molecular_analyte_type
        in: query
        description: |-
          Matches any sample where the `specimen_molecular_analyte_type` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: tissue_type
        in: query
        description: |-
          Matches any sample where the `tissue_type` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: tumor_classification
        in: query
        description: |-
          Matches any sample where the `tumor_classification` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: age_at_diagnosis
        in: query
        description: |-
          Matches any sample where the `age_at_diagnosis` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: age_at_collection
        in: query
        description: |-
          Matches any sample where the `age_at_collection` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: tumor_tissue_morphology
        in: query
        description: |-
          Matches any sample where the `tumor_tissue_morphology` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: depositions
        in: query
        description: |-
          Matches any sample where any member of the `depositions` fields match
          the string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the sample should be included in the results.
        required: false
        schema:
          type: string
      - name: diagnosis
        in: query
        description: |-
          Matches any sample where the `diagnosis` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: metadata.unharmonized.<field>
        in: query
        description: |-
          All unharmonized fields should be filterable in the same manner as harmonized fields:

          * Filtering on a singular field should include the `Sample` in the results if the query exactly matches the value of that field for the `Sample` (case-sensitive).
          * Filtering on field with multiple values should include the `Sample` in the results if the query exactly matches any of the values of the field for that `Sample` (case-sensitive).
          * Unlike harmonized fields, unharmonized fields must be prefixed with `metadata.unharmonized`.

          **Note:** this query parameter is intended to be symbolic of any unharmonized field. Because of limitations within Swagger UI, it will show up as a query parameter that can be optionally be submitted as part of a request within Swagger UI. Please keep in mind that the literal query parameter `?metadata.unharmonized.<field>=value` is not supported, so attempting to use it within Swagger UI will not work!
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: |-
          The page to retrieve.

          This is a 1-based index of a page within a page set. The value of `page`
          **must** default to `1` when this parameter is not provided.
        required: false
        schema:
          type: integer
          minimum: 0
      - name: per_page
        in: query
        description: |-
          The number of results per page.

          Each server can select its own default value for `per_page` when this
          parameter is not provided. That said, the convention within the
          community is to use `100` as a default value if any value is equally
          reasonable.
        required: false
        schema:
          type: integer
          minimum: 0
      responses:
        '200':
          description: Successful operation.
          headers:
            link:
              schema:
                type: string
              description: "Links to URLs that may be of interest when paging through paginated responses. This header contains two or more links of interest. The format of the field is as follows: \n\n`Link: <URL>; rel=\"REL\"` \n### Relationships\n\nIn the format above, `URL` represents a valid URL for the link of interest and `REL` is one of four values: \n- `first` (_Required_). A link to the first page in the results (can be the same as `last` if there is only one page).\n- `last` (_Required_). A link to the first page in the results (can be the same as `first` if there is only one page).\n- `next` (_Optional_). A link to the next page (if it exists).\n- `prev` (_Optional_). A link to the previous page (if it exists).\n\n### Requirements\n\n- This header _must_ provide links for at least the `first` and `last` rels.\n - The `prev` and `next` links must exist only (a) when there are multiple pages in the result page set and (b) when the current page is not the first or last page, respectively.\n- This list of links is unordered.\n\n ### Notes\n\n- HTTP 1.1 and HTTP 2.0 dictate that response headers are case insensitive. Though not required, we recommend an all lowercase name of `link` for this response header."
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.SamplesArray'
        '404':
          description: |-
            Not found.
            Servers that cannot provide line-level data should use this response rather than Forbidden (403), as there is no level of authorization that would allow one to access the information included in the API.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: UnshareableData
                  entity: Samples
                  reason: Our agreement with data providers prohibits us from sharing line-level data.
                  message: 'Unable to share data for samples: our agreement with data providers prohibits us from sharing line-level data.'
        '422':
          description: Invalid query or path parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: InvalidParameters
                  parameters:
                  - page
                  - per_page
                  reason: Unable to calculate offset.
                  message: 'Invalid value for parameters ''page'' and ''per_page'': unable to calculate offset.'
  /sample/{organization}/{namespace}/{name}:
    get:
      tags:
      - Sample
      summary: Gets the sample matching the provided name (if the sample exists).
      description: Gets the sample matching the provided name (if the sample exists).
      operationId: sample_show
      parameters:
      - name: organization
        in: path
        description: The organization identifier of the namespace to which the sample belongs.
        required: true
        schema:
          type: string
      - name: namespace
        in: path
        description: The name of the namespace to which the sample belongs.
        required: true
        schema:
          type: string
      - name: name
        in: path
        description: The name portion of the sample identifier.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.SampleArray'
        '404':
          description: |-
            Not found.
            Servers that cannot provide line-level data should use this response rather than Forbidden (403), as there is no level of authorization that would allow one to access the information included in the API.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: NotFound
                  entity: Sample with namespace 'foo' and name 'bar'
                  message: Sample with namespace 'foo' and name 'bar' not found.
  /sample/by/{field}/count:
    get:
      tags:
      - Sample
      summary: Groups the samples by the specified metadata field and returns counts.
      description: Groups the samples by the specified metadata field and returns counts.
      operationId: samples_by_count
      parameters:
      - name: field
        in: path
        description: The field to group by and count with.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.by.count.sample.ResultsArray'
        '422':
          description: Unsupported field.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: UnsupportedField
                  field: handedness
                  reason: This field is not present for samples.
                  message: 'Field ''handedness'' is not supported: this field is not present for samples.'
  /sample/summary:
    get:
      tags:
      - Sample
      summary: Reports summary information for the samples known by this server.
      description: Reports summary information for the samples known by this server.
      operationId: sample_summary
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.SummaryArray'
  /file:
    get:
      tags:
      - File
      summary: Gets the files known by this server.
      description: |-
        Gets the files known by this server.

        ### Pagination

        This endpoint is paginated. Users may override the default pagination
        parameters by providing one or more of the pagination-related query
        parameters below.

        ### Filtering

        All harmonized (top-level) and unharmonized (nested under the
        `metadata.unharmonized` key) metadata fields are filterable. To achieve
        this, you can provide the field name as a [`String`]. Filtering follows the
        following rules:

        * For single-value metadata field, the file is included in the results if
        its value _exactly_ matches the query string. Matches are case-sensitive.
        * For multiple-value metadata fields, the file is included in the results
        if any of its values for the field _exactly_ match the query string (a
        logical OR [`||`]). Matches are case-sensitive.
        * When the metadata field is `null` (in the case of singular or
        multiple-valued metadata fields) or empty, the file is not included.
        * When multiple fields are provided as filters, a logical AND (`&&`) strings
        together the predicates. In other words, all filters must match for a
        file to be returned. Note that this means that servers do not natively
        support logical OR (`||`) across multiple fields: that must be done by
        calling this endpoint with each of your desired queries and performing a
        set union of those files out of band.

        ### Ordering

        This endpoint has default ordering requirements—those details are documented
        in the `responses::Files` schema.
      operationId: file_index
      parameters:
      - name: type
        in: query
        description: Matches any file where the `type` field matches the string provided.
        required: false
        schema:
          type: string
      - name: size
        in: query
        description: Matches any file where the `size` field matches the string provided.
        required: false
        schema:
          type: string
      - name: checksums
        in: query
        description: |-
          Matches any file where the `checksums` field matches the string
          provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the file should be included in the results.
        required: false
        schema:
          type: string
      - name: description
        in: query
        description: |-
          Matches any file where the `description` field matches the string
          provided.

          **Note:** a file is returned if the value provided is a substring of the
          description.
        required: false
        schema:
          type: string
      - name: depositions
        in: query
        description: |-
          Matches any file where any member of the `depositions` fields match
          the string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the sample should be included in the results.
        required: false
        schema:
          type: string
      - name: metadata.unharmonized.<field>
        in: query
        description: |-
          All unharmonized fields should be filterable in the same manner as harmonized fields:

          * Filtering on a singular field should include the `File` in the results if the query exactly matches the value of that field for the `File` (case-sensitive).
          * Filtering on field with multiple values should include the `File` in the results if the query exactly matches any of the values of the field for that `File` (case-sensitive).
          * Unlike harmonized fields, unharmonized fields must be prefixed with `metadata.unharmonized`.

          **Note:** this query parameter is intended to be symbolic of any unharmonized field. Because of limitations within Swagger UI, it will show up as a query parameter that can be optionally be submitted as part of a request within Swagger UI. Please keep in mind that the literal query parameter `?metadata.unharmonized.<field>=value` is not supported, so attempting to use it within Swagger UI will not work!
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: |-
          The page to retrieve.

          This is a 1-based index of a page within a page set. The value of `page`
          **must** default to `1` when this parameter is not provided.
        required: false
        schema:
          type: integer
          minimum: 0
      - name: per_page
        in: query
        description: |-
          The number of results per page.

          Each server can select its own default value for `per_page` when this
          parameter is not provided. That said, the convention within the
          community is to use `100` as a default value if any value is equally
          reasonable.
        required: false
        schema:
          type: integer
          minimum: 0
      responses:
        '200':
          description: Successful operation.
          headers:
            link:
              schema:
                type: string
              description: "Links to URLs that may be of interest when paging through paginated responses. This header contains two or more links of interest. The format of the field is as follows: \n\n`Link: <URL>; rel=\"REL\"` \n### Relationships\n\nIn the format above, `URL` represents a valid URL for the link of interest and `REL` is one of four values: \n- `first` (_Required_). A link to the first page in the results (can be the same as `last` if there is only one page).\n- `last` (_Required_). A link to the first page in the results (can be the same as `first` if there is only one page).\n- `next` (_Optional_). A link to the next page (if it exists).\n- `prev` (_Optional_). A link to the previous page (if it exists).\n\n### Requirements\n\n- This header _must_ provide links for at least the `first` and `last` rels.\n - The `prev` and `next` links must exist only (a) when there are multiple pages in the result page set and (b) when the current page is not the first or last page, respectively.\n- This list of links is unordered.\n\n ### Notes\n\n- HTTP 1.1 and HTTP 2.0 dictate that response headers are case insensitive. Though not required, we recommend an all lowercase name of `link` for this response header."
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.FilesArray'
        '404':
          description: |-
            Not found.
            Servers that cannot provide line-level data should use this response rather than Forbidden (403), as there is no level of authorization that would allow one to access the information included in the API.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: UnshareableData
                  entity: Files
                  reason: Our agreement with data providers prohibits us from sharing file-level data.
                  message: 'Unable to share data for files: our agreement with data providers prohibits us from sharing file-level data.'
        '422':
          description: Invalid query or path parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: InvalidParameters
                  parameters:
                  - page
                  - per_page
                  reason: Unable to calculate offset.
                  message: 'Invalid value for parameters ''page'' and ''per_page'': unable to calculate offset.'
  /file/{organization}/{namespace}/{name}:
    get:
      tags:
      - File
      summary: Gets the file matching the provided name (if the file exists).
      description: Gets the file matching the provided name (if the file exists).
      operationId: file_show
      parameters:
      - name: organization
        in: path
        description: The organization identifier of the namespace to which the file belongs.
        required: true
        schema:
          type: string
      - name: namespace
        in: path
        description: The name of the namespace to which the file belongs.
        required: true
        schema:
          type: string
      - name: name
        in: path
        description: The name portion of the file identifier.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.FileArray'
        '404':
          description: |-
            Not found.
            Servers that cannot provide line-level data should use this response rather than Forbidden (403), as there is no level of authorization that would allow one to access the information included in the API.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: NotFound
                  entity: File with namespace 'foo' and name 'bar'
                  message: File with namespace 'foo' and name 'bar' not found.
  /file/by/{field}/count:
    get:
      tags:
      - File
      summary: Groups the files by the specified metadata field and returns counts.
      description: Groups the files by the specified metadata field and returns counts.
      operationId: files_by_count
      parameters:
      - name: field
        in: path
        description: The field to group by and count with.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.by.count.file.ResultsArray'
        '422':
          description: Unsupported field.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: UnsupportedField
                  field: handedness
                  reason: This field is not present for files.
                  message: 'Field ''handedness'' is not supported: this field is not present for files.'
  /file/summary:
    get:
      tags:
      - File
      summary: Reports summary information for the files known by this server.
      description: Reports summary information for the files known by this server.
      operationId: file_summary
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.SummaryArray'
  /metadata/fields/subject:
    get:
      tags:
      - Metadata
      summary: Gets the metadata fields for subjects that are supported by this server.
      description: Gets the metadata fields for subjects that are supported by this server.
      operationId: metadata_fields_subject
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.metadata.FieldDescriptionsArray'
  /metadata/fields/sample:
    get:
      tags:
      - Metadata
      summary: Gets the metadata fields for samples that are supported by this server.
      description: Gets the metadata fields for samples that are supported by this server.
      operationId: metadata_fields_sample
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.metadata.FieldDescriptionsArray'
  /metadata/fields/file:
    get:
      tags:
      - Metadata
      summary: Gets the metadata fields for files that are supported by this server.
      description: Gets the metadata fields for files that are supported by this server.
      operationId: metadata_fields_file
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.metadata.FieldDescriptionsArray'
  /namespace:
    get:
      tags:
      - Namespace
      summary: Gets the namespaces known by this server.
      description: Gets the namespaces known by this server.
      operationId: namespace_index
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.NamespacesArray'
  /namespace/{organization}/{namespace}:
    get:
      tags:
      - Namespace
      summary: Gets the namespace matching the provided name (if it exists).
      description: Gets the namespace matching the provided name (if it exists).
      operationId: namespace_show
      parameters:
      - name: organization
        in: path
        description: The organization of the namespace.
        required: true
        schema:
          type: string
      - name: namespace
        in: path
        description: The name of the namespace.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.NamespaceArray'
        '404':
          description: Not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: NotFound
                  entity: Namespaces
                  message: Namespaces not found.
  /organization:
    get:
      tags:
      - Organization
      summary: Gets the organizations known by this server.
      description: Gets the organizations known by this server.
      operationId: organization_index
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.OrganizationsArray'
  /organization/{name}:
    get:
      tags:
      - Organization
      summary: Gets the organization matching the provided name (if it exists).
      description: Gets the organization matching the provided name (if it exists).
      operationId: organization_show
      parameters:
      - name: name
        in: path
        description: The name of the organization.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.OrganizationArray'
        '404':
          description: Not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: NotFound
                  entity: Organizations
                  message: Organizations not found.
  /info:
    get:
      tags:
      - Info
      summary: Gets the info for this server.
      description: Gets the info for this server.
      operationId: info_index
      responses:
        '200':
          description: Successful operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.InformationArray'
  /sample-diagnosis:
    get:
      tags:
      - Experimental
      summary: 'Experimental: Filter the samples known by this server by free-text diagnosis search.'
      description: |-
        Experimental: Filter the samples known by this server by free-text diagnosis search.

        ### Diagnosis Filtering

        This endpoint supports the experimental `search` parameter.
        For this parameter, the sample is included in the results if the value of its
        its `diagnosis` field _contains_ the query string, or if an unharmonized field
        treated by the implementer as a diagnosis field contains that query string.
        Matches are case-insensitive.

        ### Pagination

        This endpoint is paginated. Users may override the default pagination
        parameters by providing one or more of the pagination-related query
        parameters below.

        ### Additional Filtering

        All harmonized (top-level) and unharmonized (nested under the
        `metadata.unharmonized` key) metadata fields are filterable. To achieve
        this, you can provide the field name as a [`String`]. Filtering follows the
        following rules:

        * For single-value metadata field, the sample is included in the results if
        its value _exactly_ matches the query string. Matches are case-sensitive.
        * For multiple-value metadata fields, the sample is included in the results
        if any of its values for the field _exactly_ match the query string (a
        logical OR [`||`]). Matches are case-sensitive.
        * When the metadata field is `null` (in the case of singular or
        multiple-valued metadata fields) or empty, the sample is not included.
        * When multiple fields are provided as filters, a logical AND (`&&`) strings
        together the predicates. In other words, all filters must match for a
        sample to be returned. Note that this means that servers do not natively
        support logical OR (`||`) across multiple fields: that must be done by
        calling this endpoint with each of your desired queries and performing a
        set union of those samples out of band.

        ### Ordering

        This endpoint has default ordering requirements—those details are documented
        in the `responses::Samples` schema.
      operationId: sample_diagnosis_index
      parameters:
      - name: search
        in: query
        description: |-
          Matches any sample where the `diagnosis` field contains the
          string provided, ignoring case.
        required: false
        schema:
          type: string
      - name: disease_phase
        in: query
        description: |-
          Matches any sample where the `disease_phase` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: anatomical_sites
        in: query
        description: |-
          Matches any sample where the `anatomical_sites` field matches the string
          provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: library_selection_method
        in: query
        description: |-
          Matches any sample where the `library_selection_method` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: library_strategy
        in: query
        description: |-
          Matches any sample where the `library_strategy` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: library_source_material
        in: query
        description: |-
          Matches any sample where the `library_source_material` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: preservation_method
        in: query
        description: |-
          Matches any sample where the `preservation_method` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: specimen_molecular_analyte_type
        in: query
        description: |-
          Matches any sample where the `specimen_molecular_analyte_type` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: tissue_type
        in: query
        description: |-
          Matches any sample where the `tissue_type` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: tumor_classification
        in: query
        description: |-
          Matches any sample where the `tumor_classification` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: age_at_diagnosis
        in: query
        description: |-
          Matches any sample where the `age_at_diagnosis` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: age_at_collection
        in: query
        description: |-
          Matches any sample where the `age_at_collection` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: tumor_tissue_morphology
        in: query
        description: |-
          Matches any sample where the `tumor_tissue_morphology` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: depositions
        in: query
        description: |-
          Matches any sample where any member of the `depositions` fields match
          the string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the sample should be included in the results.
        required: false
        schema:
          type: string
      - name: diagnosis
        in: query
        description: |-
          Matches any sample where the `diagnosis` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: metadata.unharmonized.<field>
        in: query
        description: |-
          All unharmonized fields should be filterable in the same manner as harmonized fields:

          * Filtering on a singular field should include the `Sample` in the results if the query exactly matches the value of that field for the `Sample` (case-sensitive).
          * Filtering on field with multiple values should include the `Sample` in the results if the query exactly matches any of the values of the field for that `Sample` (case-sensitive).
          * Unlike harmonized fields, unharmonized fields must be prefixed with `metadata.unharmonized`.

          **Note:** this query parameter is intended to be symbolic of any unharmonized field. Because of limitations within Swagger UI, it will show up as a query parameter that can be optionally be submitted as part of a request within Swagger UI. Please keep in mind that the literal query parameter `?metadata.unharmonized.<field>=value` is not supported, so attempting to use it within Swagger UI will not work!
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: |-
          The page to retrieve.

          This is a 1-based index of a page within a page set. The value of `page`
          **must** default to `1` when this parameter is not provided.
        required: false
        schema:
          type: integer
          minimum: 0
      - name: per_page
        in: query
        description: |-
          The number of results per page.

          Each server can select its own default value for `per_page` when this
          parameter is not provided. That said, the convention within the
          community is to use `100` as a default value if any value is equally
          reasonable.
        required: false
        schema:
          type: integer
          minimum: 0
      responses:
        '200':
          description: Successful operation.
          headers:
            link:
              schema:
                type: string
              description: "Links to URLs that may be of interest when paging through paginated responses. This header contains two or more links of interest. The format of the field is as follows: \n\n`Link: <URL>; rel=\"REL\"` \n### Relationships\n\nIn the format above, `URL` represents a valid URL for the link of interest and `REL` is one of four values: \n- `first` (_Required_). A link to the first page in the results (can be the same as `last` if there is only one page).\n- `last` (_Required_). A link to the first page in the results (can be the same as `first` if there is only one page).\n- `next` (_Optional_). A link to the next page (if it exists).\n- `prev` (_Optional_). A link to the previous page (if it exists).\n\n### Requirements\n\n- This header _must_ provide links for at least the `first` and `last` rels.\n - The `prev` and `next` links must exist only (a) when there are multiple pages in the result page set and (b) when the current page is not the first or last page, respectively.\n- This list of links is unordered.\n\n ### Notes\n\n- HTTP 1.1 and HTTP 2.0 dictate that response headers are case insensitive. Though not required, we recommend an all lowercase name of `link` for this response header."
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.SamplesArray'
        '404':
          description: |-
            Not found.
            Servers that cannot provide line-level data should use this response rather than Forbidden (403), as there is no level of authorization that would allow one to access the information included in the API.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: UnshareableData
                  entity: Samples
                  reason: Our agreement with data providers prohibits us from sharing line-level data.
                  message: 'Unable to share data for samples: our agreement with data providers prohibits us from sharing line-level data.'
        '422':
          description: Invalid query or path parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: InvalidParameters
                  parameters:
                  - page
                  - per_page
                  reason: Unable to calculate offset.
                  message: 'Invalid value for parameters ''page'' and ''per_page'': unable to calculate offset.'
  /subject-diagnosis:
    get:
      tags:
      - Experimental
      summary: 'Experimental: Filter the subjects known by this server by free-text diagnosis search.'
      description: |-
        Experimental: Filter the subjects known by this server by free-text diagnosis search.

        ### Diagnosis Filtering

        This endpoint supports the experimental `search` parameter.
        For this parameter, the subject is included in the results if the value of its
        its `associated_diagnoses` field has at least one diagnosis which _contains_ the query string.
        Matches are case-insensitive.

        ### Pagination

        This endpoint is paginated. Users may override the default pagination
        parameters by providing one or more of the pagination-related query
        parameters below.

        ### Additional Filtering

        All harmonized (top-level) and unharmonized (nested under the
        `metadata.unharmonized` key) metadata fields are filterable. To achieve
        this, you can provide the field name as a [`String`]. Filtering follows the
        following rules:

        * For single-value metadata field, the subject is included in the results if
        its value _exactly_ matches the query string. Matches are case-sensitive.
        * For multiple-value metadata fields, the subject is included in the results
        if any of its values for the field _exactly_ match the query string (a
        logical OR [`||`]). Matches are case-sensitive.
        * When the metadata field is `null` (in the case of singular or
        multiple-valued metadata fields) or empty, the subject is not included.
        * When multiple fields are provided as filters, a logical AND (`&&`) strings
        together the predicates. In other words, all filters must match for a
        subject to be returned. Note that this means that servers do not natively
        support logical OR (`||`) across multiple fields: that must be done by
        calling this endpoint with each of your desired queries and performing a
        set union of those subjects out of band.

        ### Ordering

        This endpoint has default ordering requirements—those details are documented
        in the `responses::Subjects` schema.
      operationId: subject_diagnosis_index
      parameters:
      - name: search
        in: query
        description: |-
          Matches any subject where any member of the `associated_diagnoses` field contains the
          string provided, ignoring case.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: sex
        in: query
        description: Matches any subject where the `sex` field matches the string provided.
        required: false
        schema:
          type: string
      - name: race
        in: query
        description: |-
          Matches any subject where any member of the `race` field matches the
          string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: ethnicity
        in: query
        description: |-
          Matches any subject where the `ethnicity` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: identifiers
        in: query
        description: |-
          Matches any subject where any member of the `identifiers` field matches
          the string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: vital_status
        in: query
        description: |-
          Matches any subject where the `vital_status` field matches the string
          provided.
        required: false
        schema:
          type: string
      - name: age_at_vital_status
        in: query
        description: |-
          Matches any subject where the `age_at_vital_status` field matches the
          string provided.
        required: false
        schema:
          type: string
      - name: depositions
        in: query
        description: |-
          Matches any subject where any member of the `depositions` fields match
          the string provided.

          **Note:** a logical OR (`||`) is performed across the values when
          determining whether the subject should be included in the results.
        required: false
        schema:
          type: string
      - name: metadata.unharmonized.<field>
        in: query
        description: |-
          All unharmonized fields should be filterable in the same manner as harmonized fields:

          * Filtering on a singular field should include the `Subject` in the results if the query exactly matches the value of that field for the `Subject` (case-sensitive).
          * Filtering on field with multiple values should include the `Subject` in the results if the query exactly matches any of the values of the field for that `Subject` (case-sensitive).
          * Unlike harmonized fields, unharmonized fields must be prefixed with `metadata.unharmonized`.

          **Note:** this query parameter is intended to be symbolic of any unharmonized field. Because of limitations within Swagger UI, it will show up as a query parameter that can be optionally be submitted as part of a request within Swagger UI. Please keep in mind that the literal query parameter `?metadata.unharmonized.<field>=value` is not supported, so attempting to use it within Swagger UI will not work!
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: |-
          The page to retrieve.

          This is a 1-based index of a page within a page set. The value of `page`
          **must** default to `1` when this parameter is not provided.
        required: false
        schema:
          type: integer
          minimum: 0
      - name: per_page
        in: query
        description: |-
          The number of results per page.

          Each server can select its own default value for `per_page` when this
          parameter is not provided. That said, the convention within the
          community is to use `100` as a default value if any value is equally
          reasonable.
        required: false
        schema:
          type: integer
          minimum: 0
      responses:
        '200':
          description: Successful operation.
          headers:
            link:
              schema:
                type: string
              description: "Links to URLs that may be of interest when paging through paginated responses. This header contains two or more links of interest. The format of the field is as follows: \n\n`Link: <URL>; rel=\"REL\"` \n### Relationships\n\nIn the format above, `URL` represents a valid URL for the link of interest and `REL` is one of four values: \n- `first` (_Required_). A link to the first page in the results (can be the same as `last` if there is only one page).\n- `last` (_Required_). A link to the first page in the results (can be the same as `first` if there is only one page).\n- `next` (_Optional_). A link to the next page (if it exists).\n- `prev` (_Optional_). A link to the previous page (if it exists).\n\n### Requirements\n\n- This header _must_ provide links for at least the `first` and `last` rels.\n - The `prev` and `next` links must exist only (a) when there are multiple pages in the result page set and (b) when the current page is not the first or last page, respectively.\n- This list of links is unordered.\n\n ### Notes\n\n- HTTP 1.1 and HTTP 2.0 dictate that response headers are case insensitive. Though not required, we recommend an all lowercase name of `link` for this response header."
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.SubjectsArray'
        '404':
          description: |-
            Not found.
            Servers that cannot provide line-level data should use this response rather than Forbidden (403), as there is no level of authorization that would allow one to access the information included in the API.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: UnshareableData
                  entity: Subjects
                  reason: Our agreement with data providers prohibits us from sharing line-level data.
                  message: 'Unable to share data for subjects: our agreement with data providers prohibits us from sharing line-level data.'
        '422':
          description: Invalid query or path parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Errors'
              example:
                errors:
                - kind: InvalidParameters
                  parameters:
                  - page
                  - per_page
                  reason: Unable to calculate offset.
                  message: 'Invalid value for parameters ''page'' and ''per_page'': unable to calculate offset.'
components:
  schemas:
    cde.v1.deposition.DbgapPhsAccession:
      type: string
      description: |-
        **`caDSR CDE 11524544 v1.00`**

        This metadata element is defined by the caDSR as "A stable unique
        alphanumeric identifier assigned to a study and any objects by the database
        of Genotypes and Phenotypes (dbGaP).".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11524544%20and%20ver_nr=1>
    cde.v1.file.Description:
      type: string
      description: |-
        **`caDSR CDE 11280338 v1.00`**

        This metadata element is defined by the caDSR as "A free text field that can
        be used to document the content and other details about an electronic file
        that may not be captured elsewhere.". No permissible values are defined for
        this CDE.

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11280338%20and%20ver_nr=1>
    cde.v1.file.Name:
      type: string
      description: |-
        **`caDSR CDE 11284037 v1.00`**

        This metadata element is defined by the caDSR as "The literal label for an
        electronic data file.". No permissible values are defined for this CDE.

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11284037%20and%20ver_nr=1>
      example: File001.txt
    cde.v1.file.Size:
      type: integer
      description: |-
        **`caDSR CDE 11479876 v1.00`**

        This metadata element is defined by the caDSR as "The measure (in bytes) of
        how much space a data file takes up on a storage medium.". No permissible
        values are defined for this CDE.

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11479876%20and%20ver_nr=1>
      minimum: 0
    cde.v1.file.Type:
      type: string
      description: |-
        **`caDSR CDE 11416926 v1.00`**

        This metadata element is defined by the caDSR as "A defined organization or
        layout representing and structuring data in a computer file.".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11416926%20and%20ver_nr=1>
      enum:
      - ADF
      - AVI
      - BAI
      - BAM
      - BCR Biotab
      - BED
      - bedgraph
      - BEDPE Format
      - bigBed
      - bigWig
      - Binary Format
      - BIOM
      - cdf
      - CEL
      - CNS
      - CRAI
      - CRAM
      - CSV
      - DICOM
      - DICT
      - DOC
      - DOCX
      - DSV
      - FASTA
      - FASTQ
      - GCT/Res Format
      - GenBank Format
      - GFF3
      - GPR
      - GTF
      - gVCF
      - GZIP Format
      - HDF5
      - HIC
      - HTML
      - HTSeq Count
      - IDAT
      - IDF
      - idpDB
      - JPEG
      - JPEG 2000
      - JSON
      - MAF
      - MAGE-TAB
      - MAT
      - MATLAB Script
      - MEX
      - MPEG-4
      - mtx
      - mzIdentML
      - mzML
      - mzXML
      - NIFTI Format
      - OME-TIFF
      - PDF
      - PED
      - Plain Text Data Format
      - PNG
      - Python Script Format
      - R File Format
      - R Markdown
      - rds
      - RTF
      - SDRF
      - SEG
      - Sequence Record Format
      - SVG
      - SVS
      - TAR
      - TBI
      - Thermo RAW
      - TIFF
      - TSV
      - TXT
      - VCF
      - XLS
      - XLSX
      - XML
      - YAML
      - ZIP
    cde.v1.file.checksum.MD5:
      type: string
      description: |-
        **`caDSR CDE 11556150 v1.00`**

        This metadata element is defined by the caDSR as "A 32-character hexadecimal
        number that is computed on a file.". No permissible values are defined for
        this CDE.

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11556150%20and%20ver_nr=1>
    cde.v1.namespace.StudyFundingId:
      type: string
      description: |-
        **`caDSR CDE 14528051 v1.00`**

        This metadata element is defined by the caDSR as "A sequence of characters
        used to uniquely identify, name, or characterize the study funding
        organization.".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=14528051%20and%20ver_nr=1>
    cde.v1.namespace.StudyId:
      type: string
      description: |-
        **`caDSR CDE 12960571 v1.00`**

        This metadata element is defined by the caDSR as "A sequence of characters
        used to identify, name, or characterize a pediatric study.".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=12960571%20and%20ver_nr=1>
      enum:
      - AALL0232
      - AALL0331
      - AALL03B1
      - AALL0434
      - AALL08B1
      - AAML03P1
      - AAML0531
      - AAML1031
      - AEIOPAML2002
      - AEWS0031
      - AEWS0331
      - AEWS07P1
      - AEWS1031
      - AEWS1221
      - AGCT0132
      - AGCT01P1
      - AGCT0521
      - AHOD0031
      - AHOD03P1
      - AHOD0431
      - AHOD0831
      - AHOD1221
      - AHOD1331
      - AIEOPLAM92
      - AMLBFM-Registry2012
      - AMLBFM1998
      - AMLBFM2004
      - AMLBFM2012
      - AMLBFMRegistry2017
      - AOST0121
      - AOST01P1
      - AOST0221
      - AOST0331/EURAMOS1
      - AOST1321
      - AOST1421
      - CCG-782
      - CCG-7942
      - DBAML01
      - EE99
      - EICESS92
      - GC1
      - GC2
      - GOG0078
      - GOG0090
      - GOG0116
      - INT133
      - JACLSAML99
      - JPLSGAML05
      - MRCAML12
      - MRCAML15
      - NOPHOAML2004
      - NOPHOAML2012
      - OS2006
      - P9749
      - P9754
      - POG9049
      - PPLLSGAML98
      - REGOBONE
      - Sarcome13/OS2016
      - SCFEELAM02
      - SJCRHAML02
      - TCGM2004
      - TE04
      - TE05
      - TE08
      - TE09
      - TE13
      - TE20
      - TE22
      - TGM85
      - TGM90
      - TGM95
      - TIP
    cde.v1.namespace.StudyName:
      type: string
      description: |-
        **`caDSR CDE 11459810 v1.00`**

        This metadata element is defined by the caDSR as "The acronym or abbreviated
        form of the title for a research data collection. Example – GLIOMA01".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11459810%20and%20ver_nr=1>
    cde.v1.organization.Institution:
      type: string
      description: |-
        **`caDSR CDE 12662779 v1.00`**

        This metadata element is defined by the caDSR as "A sequence of characters
        used to identify, name, or characterize the laboratory, institute, or
        consortium that provided the information.".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=12662779%20and%20ver_nr=1>
      enum:
      - AIEOP
      - BFM-SG
      - BOCG
      - C3P
      - CBTN
      - CCLG
      - CHLA
      - COG
      - COSS-GPOH
      - CRCTU
      - CWS
      - DCOG
      - DePICT
      - DFCI
      - EORTC
      - EpSSG
      - EuRBG
      - EURO-EWING
      - FSG
      - GALOP
      - GEIS
      - GPOH
      - IDIPGR
      - ISG
      - JACLS
      - JCCG
      - JINCS
      - JNBSG
      - JPLSG
      - MRC
      - NOPHO
      - NRG-Oncology
      - PNOC
      - PPLLSG
      - RBTR
      - SFCE
      - SIOP MMT
      - SIOPE
      - SIOPEN
      - SJCRH
      - SOPOBE
      - SSG
      - Treehouse
      - UCL
      - UK
    cde.v1.sample.DiseasePhase:
      type: string
      description: |-
        **`caDSR CDE 12217251 v1.00`**

        This metadata element is defined by the caDSR as "The stage or period of an
        individual's treatment process during which relevant observations were
        recorded.".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=12217251%20and%20ver_nr=1>
      enum:
      - Post-Mortem
      - Not Reported
      - Unknown
      - Initial Diagnosis
      - Progression
      - Refractory
      - Relapse
      - Relapse/Progression
    cde.v1.sample.LibrarySourceMaterial:
      type: string
      description: |-
        **`caDSR CDE 15235975 v1.00`**

        This metadata element is defined by the caDSR as "TThe cell or cellular component that makes up the sample that has been prepared for testing or research purposes.".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=15235975%20and%20ver_nr=1>
      enum:
      - Bulk Cells
      - Bulk Nuclei
      - Bulk Tissue
      - Single-cells
      - Single-nuclei
      - Not Reported
    cde.v1.sample.LibraryStrategy:
      type: string
      description: |-
        **`caDSR CDE 6273393 v1.00`**

        This metadata element is defined by the caDSR as "The overall strategy for
        the collection of double stranded DNA fragments flanked by oligonucleotide
        sequence adapters to enable their analysis by high-throughput sequencing.".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=6273393%20and%20ver_nr=1>
      enum:
      - AMPLICON
      - ATAC-Seq
      - Bisulfite-Seq
      - ChIA-PET
      - ChIP-Seq
      - CLONE
      - CLONEEND
      - CTS
      - DNA-Seq
      - DNase-Hypersensitivity
      - EST
      - FAIRE-seq
      - FINISHING
      - FL-cDNA
      - Hi-C
      - MBD-Seq
      - MeDIP-Seq
      - miRNA-Seq
      - MNase-Seq
      - MRE-Seq
      - ncRNA-Seq
      - Other
      - POOLCLONE
      - RAD-Seq
      - RIP-Seq
      - RNA-Seq
      - SELEX
      - snATAC-Seq
      - ssRNA-seq
      - Synthetic-Long-Read
      - Targeted-Capture
      - Tethered Chromatin Conformation Capture
      - Tn-Seq
      - WCS
      - WGA
      - WGS
      - WXS
    cde.v1.sample.SpecimenMolecularAnalyteType:
      type: string
      description: |-
        **`caDSR CDE 15063661 v1.00`**

        This metadata element is defined by the caDSR as "The sample or material
        being subjected to analysis.". This data element is a subset of the
        designated CDE as noted
        [here](https://github.com/CBIIT/ccdi-federation-api/discussions/116#discussioncomment-10848175).

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=15063661%20and%20ver_nr=1>
      enum:
      - Protein
      - DNA
      - RNA
    cde.v1.sample.TissueType:
      type: string
      description: |-
        **`caDSR CDE 14688604 v1.00`**

        This metadata element is defined by the caDSR as "The category assigned to the
        cytologic atypia found in cellular molecules, cells, tissues, organs,
        body fluids, or body excretory products."

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=14688604%20and%20ver_nr=1>
      enum:
      - Not Reported
      - Normal
      - Peritumoral
      - Tumor
      - Unknown
    cde.v1.sample.TumorClassification:
      type: string
      description: |-
        **`caDSR CDE 12922545 v1.00`**

        This metadata element is defined by the caDSR as "The classification of a
        tumor based primarily on histopathological characteristics.".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=12922545%20and%20ver_nr=1>
      enum:
      - Metastatic
      - Not Reported
      - Primary
      - Regional
      - Unknown
    cde.v1.sample.TumorTissueMorphology:
      type: object
      description: |-
        **`caDSR CDE 11326261 v1.00`**

        This metadata element is defined by the caDSR as "The microscopic anatomy of
        normal and abnormal cells and tissues of the specimen as captured in the
        morphology codes of the International Classification of Diseases for
        Oncology, 3rd Edition (ICD-O-3)."

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11326261%20and%20ver_nr=1>
      required:
      - icd_o_3
      properties:
        icd_o_3:
          type: string
          description: The ICD-O-3 code.
    cde.v1.subject.Name:
      type: string
      description: |-
        **`caDSR CDE 6380049 v1.00`**

        This metadata element is defined by the caDSR as "A unique subject
        identifier within a site and a study.". No permissible values are defined
        for this CDE.

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=6380049%20and%20ver_nr=1>
      example: SubjectName001
    cde.v1.subject.Race:
      type: string
      description: |-
        **`caDSR CDE 2192199 v1.00`**

        This metadata element is defined by the caDSR as "The text for reporting
        information about race based on the Office of Management and Budget (OMB)
        categories.". Upon examination of the large number of projects using the
        term, it appears to be the preferred term for the general concept of race.

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=2192199%20and%20ver_nr=1>
      enum:
      - Not allowed to collect
      - Native Hawaiian or other Pacific Islander
      - Not Reported
      - Unknown
      - American Indian or Alaska Native
      - Asian
      - Black or African American
      - White
    cde.v1.subject.Sex:
      type: string
      description: |-
        **`caDSR CDE 6343385 v1.00`**

        This metadata element is defined by the caDSR as "Sex of the subject as
        determined by the investigator." In particular, this field does not dictate
        the time period: whether it represents sex at birth, sex at sample
        collection, or any other determined time point. Further, the descriptions
        for F and M suggest that this term can represent either biological sex,
        cultural gender roles, or both. Thus, this field cannot be assumed to
        strictly represent biological sex.

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=6343385%20and%20ver_nr=1>
      enum:
      - U
      - F
      - M
      - UNDIFFERENTIATED
    cde.v1.subject.VitalStatus:
      type: string
      description: |-
        **`caDSR CDE 2847330 v1.00`**

        This metadata element is defined by the caDSR as "The response to a question
        that describes a participant's survival status."

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=2847330%20and%20ver_nr=1>
      enum:
      - Not reported
      - Alive
      - Dead
      - Unknown
      - Unspecified
    cde.v2.namespace.StudyShortTitle:
      type: string
      description: |-
        **`caDSR CDE 11459812 v2.00`**

        This metadata element is defined by the caDSR as "The acronym or
        abbreviated form of the title for a research data collection".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11459812%20and%20ver_nr=2>
    cde.v2.sample.LibrarySelectionMethod:
      type: string
      description: |-
        **`caDSR CDE 6347743 2.00`**

        This metadata element is defined by the caDSR as "The type of systematic
        actions performed to select or enrich DNA fragments used in analysis by
        high-throughput sequencing.". This data element is a subset of the
        designated CDE as noted
        [here](https://github.com/CBIIT/ccdi-federation-api/discussions/47#discussioncomment-9863376).

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=6347743%20and%20ver_nr=2>
      enum:
      - Random PCR
      - PCR
      - Random
      - Hybrid Selection
      - Unspecified
      - rRNA Depletion
      - Not applicable
      - Poly-A Enriched Genomic Library
    cde.v2.sample.PreservationMethod:
      type: string
      description: |-
        **`caDSR CDE 8028962 v2.00`**

        This metadata element is defined by the caDSR as "Text term that represents
        the method used to maintain the sample or biospecimen in a viable state.".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=8028962%20and%20ver_nr=2>
      enum:
      - -80 degrees C
      - Cryopreserved
      - EDTA
      - FFPE
      - Formalin Fixed - Buffered
      - Formalin Fixed - Unbuffered
      - Fresh
      - Fresh Dissociated
      - Fresh Dissociated and Single Cell Sorted
      - Fresh Dissociated and Single Cell Sorted into Plates
      - Frozen
      - Liquid Nitrogen
      - Not Reported
      - OCT
      - Snap Frozen
      - Unknown
    cde.v2.sample.TumorGrade:
      type: string
      description: |-
        **`caDSR CDE 11325685 v2.00`**

        This metadata element is defined by the caDSR as "A text term to express
        the degree of abnormality of cancer cells as a measure of differentiation
        and aggressiveness.".

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=11325685%20and%20ver_nr=2>
      enum:
      - G1 Low Grade
      - G2 Intermediate Grade
      - G3 High Grade
      - G4 Anaplastic
      - GB Borderline
      - GX Grade Cannot Be Assessed
      - Not Applicable
      - Not Reported
      - Unknown
    cde.v2.subject.Ethnicity:
      type: string
      description: |-
        **`caDSR CDE 2192217 v2.00`**

        This metadata element is defined by the caDSR as "The text for reporting
        information about ethnicity based on the Office of Management and Budget
        (OMB) categories." Upon examination of the large number of projects using
        the term, it appears to be the preferred term for the general concept of
        ethnicity.

        Link:
        <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=2192217%20and%20ver_nr=2>
      enum:
      - Not allowed to collect
      - Hispanic or Latino
      - Not Hispanic or Latino
      - Unknown
      - Not reported
    field.UnharmonizedField:
      oneOf:
      - $ref: '#/components/schemas/field.owned.Field'
      - $ref: '#/components/schemas/field.unowned.Field'
      description: A metadata field.
    field.owned.Field:
      type: object
      required:
      - value
      properties:
        value:
          description: The value of the metadata field.
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
        owned:
          type: boolean
          description: Whether or not the field is owned by the source server.
    field.unowned.Field:
      type: object
      required:
      - value
      properties:
        value:
          description: The value of the metadata field.
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.file.Checksums:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/models.file.metadata.Checksums'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.file.Description:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.file.Description'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.file.Size:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.file.Size'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.file.Type:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.file.Type'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.namespace.StudyFundingId:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.namespace.StudyFundingId'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.namespace.StudyId:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.namespace.StudyId'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.namespace.StudyName:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.namespace.StudyName'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.namespace.StudyShortTitle:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v2.namespace.StudyShortTitle'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.organization.Institution:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.organization.Institution'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.AgeAtCollection:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/models.sample.metadata.AgeAtCollection'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.AgeAtDiagnosis:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/models.sample.metadata.AgeAtDiagnosis'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.AnatomicalSite:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/models.sample.metadata.AnatomicalSite'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.Diagnosis:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/models.sample.metadata.Diagnosis'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.DiseasePhase:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.sample.DiseasePhase'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.Identifier:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/models.sample.identifier.referenced.Identifier'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.LibrarySelectionMethod:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v2.sample.LibrarySelectionMethod'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.LibrarySourceMaterial:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.sample.LibrarySourceMaterial'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.LibraryStrategy:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.sample.LibraryStrategy'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.PreservationMethod:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v2.sample.PreservationMethod'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.SpecimenMolecularAnalyteType:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.sample.SpecimenMolecularAnalyteType'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.TissueType:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.sample.TissueType'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.TumorClassification:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.sample.TumorClassification'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.TumorGrade:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v2.sample.TumorGrade'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.sample.TumorTissueMorphology:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.sample.TumorTissueMorphology'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.subject.AgeAtVitalStatus:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/models.subject.metadata.AgeAtVitalStatus'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.subject.AssociatedDiagnoses:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/models.subject.metadata.AssociatedDiagnoses'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.subject.Ethnicity:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v2.subject.Ethnicity'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.subject.Identifier:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/models.subject.identifier.referenced.Identifier'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.subject.Race:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.subject.Race'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.subject.Sex:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.subject.Sex'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    field.unowned.subject.VitalStatus:
      type: object
      required:
      - value
      properties:
        value:
          $ref: '#/components/schemas/cde.v1.subject.VitalStatus'
        ancestors:
          type: array
          items:
            type: string
          description: |-
            The ancestors from which this field was derived.

            Ancestors should be provided as period (`.`) delimited paths
            from the `metadata` key in the subject response object.
        details:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.Details'
        comment:
          type: string
          description: A free-text comment field.
    fields.Unharmonized:
      allOf:
      - type: object
        description: The inner [`IndexMap`].
        additionalProperties:
          $ref: '#/components/schemas/field.UnharmonizedField'
      - type: object
      description: |-
        A map of unharmonized metadata fields.

        Unharmonized keys may be any valid JSON string.
    models.File:
      type: object
      description: |-
        A file.

        **Note:** the `samples` key **must** include only identifiers for
        [`Samples`](super::Sample) that both (a) are listed in the
        [`Sample`](super::Sample) index endpoint (`/sample`) and (b) are able to be
        shown with the [`Sample`](super::Sample) show endpoint
        (`/sample/{namespace}/{name}`).
      required:
      - id
      - samples
      properties:
        id:
          $ref: '#/components/schemas/models.file.Identifier'
        samples:
          type: array
          items:
            $ref: '#/components/schemas/models.sample.Identifier'
          description: |-
            One or more samples that are associated with this [`File`] referred to
            by their identifier(s).

            Each file must be associated with at least one
            [`Sample`](super::Sample)—files that are not associated with any sample
            are disallowed. Files may be associated with as many samples as is
            necessary.

            **Note:** each identifier **must** match a [`Sample`](super::Sample)
            that both (a) is listed in the [`Sample`](super::Sample) index endpoint
            (`/sample`) and (b) is able to be shown with the
            [`Sample`](super::Sample) show endpoint (`/sample/{namespace}/{name}`).
        gateways:
          type: array
          items:
            $ref: '#/components/schemas/models.gateway.AnonymousOrReference'
          description: |-
            One or more [gateways](AnonymousOrReference) through which this file can
            be accessed.

            Gateways can be either [anonymous](AnonymousOrReference::Anonymous)
            ([gateways](crate::Gateway) with no name) or a
            [refererence](AnonymousOrReference::Reference) to a [named
            gateway](gateway::Named) ([gateways](crate::Gateway) with a name).

            **Anonymous** gateways are intended to be embedded directly within a
            returned file in the `/file` response object. They have no name and are
            only referred to by the file within which they are embedded.

            **Named** gateways, on the other hand, are included in the `gateways`
            key in the `/file` response object and referred to by name within a
            returned file in the `/file` response object. They are intended to be
            used when more than one file references the same gateway. This mechanism
            is available to ensure that the gateway object does not need to be
            duplicated multiple times in the response in these cases.

            This field can contain multiple gateways to support scenarios where a
            file is available through more than one mechanism. We expect that only
            one gateway will be returned in most responses.

            **Note:** a file must have at least one gateway. If the file has no
            gateway, then it should not be returned as part of this API.
        metadata:
          allOf:
          - $ref: '#/components/schemas/models.file.Metadata'
          nullable: true
    models.Gateway:
      oneOf:
      - type: object
        description: |-
          An open access gateway.

          This gateway notifies of resources that are accessible without any
          authentication or authorization.
        required:
        - link
        - kind
        properties:
          link:
            $ref: '#/components/schemas/models.gateway.Link'
          kind:
            type: string
            enum:
            - Open
      - type: object
        description: |-
          A registered access gateway.

          This gateway notifies of resources that are accessible after successful
          authentication but _without_ any required authorization.

          The term "registered" is used here instead of "authenticated" because
          (a) identification first requires registration of some information that
          is used to identify an individual (such as a username or IP address),
          and (b) the term "registered" is used more commonly in a colloquial
          context.
        required:
        - link
        - kind
        properties:
          link:
            $ref: '#/components/schemas/models.gateway.Link'
          kind:
            type: string
            enum:
            - Registered
      - type: object
        description: |-
          A controlled access gateway.

          This gateway notifies of resources that are accessible after successful
          authentication _and_ and explicit authorization to view the resources.

          The term "controlled" is used here instead of "authorized" because (a)
          authorization must be explicitly granted by some entity which controls
          the resource, and (b) the term "controlled" is used more commonly in a
          colloquial context.

          Note that, if authorization is not explicitly granted by some entity
          controlling the resource, OR if authorization is given to _all_
          authenticated individuals, then a [`Gateway::Registered`] should be used
          instead.
        required:
        - link
        - kind
        properties:
          link:
            $ref: '#/components/schemas/models.gateway.Link'
          kind:
            type: string
            enum:
            - Controlled
      - allOf:
        - $ref: '#/components/schemas/models.gateway.Closed'
        - type: object
          required:
          - kind
          properties:
            kind:
              type: string
              enum:
              - Closed
      description: Gateways, which notify of resources that are external to the API.
      discriminator:
        propertyName: kind
    models.Namespace:
      type: object
      description: A namespace.
      required:
      - id
      - description
      - contact_email
      properties:
        id:
          $ref: '#/components/schemas/models.namespace.Identifier'
        description:
          $ref: '#/components/schemas/models.namespace.Description'
        contact_email:
          type: string
          description: |-
            A support email address for entities contained within the namespace.

            This field is required to be a valid email address (both in format and
            in terms of the email address being actively monitored).
          example: support@example.com
        metadata:
          allOf:
          - $ref: '#/components/schemas/models.namespace.Metadata'
          nullable: true
    models.Organization:
      type: object
      description: |-
        An organization.

        Organizations own [`Namespaces`](super::Namespace) within a source server.
      required:
      - identifier
      - name
      properties:
        identifier:
          $ref: '#/components/schemas/models.organization.Identifier'
        name:
          $ref: '#/components/schemas/models.organization.Name'
        metadata:
          allOf:
          - $ref: '#/components/schemas/models.organization.Metadata'
          nullable: true
    models.Sample:
      type: object
      description: |-
        A sample.

        **Note:** the `subject` identifier **must** match a
        [`Subject`](super::Subject) that both (a) is listed in the
        [`Subject`](super::Subject) index endpoint and (b) is able to be shown with
        the [`Subject`](super::Subject) show endpoint.
      required:
      - id
      - subject
      properties:
        id:
          $ref: '#/components/schemas/models.sample.Identifier'
        subject:
          $ref: '#/components/schemas/models.subject.Identifier'
        gateways:
          type: array
          items:
            $ref: '#/components/schemas/models.gateway.AnonymousOrReference'
          description: |-
            One or more [gateways](AnonymousOrReference) through which this sample
            can be accessed.

            Gateways can be either [anonymous](AnonymousOrReference::Anonymous)
            ([gateways](crate::Gateway) with no name) or a
            [refererence](AnonymousOrReference::Reference) to a [named
            gateway](gateway::Named) ([gateways](crate::Gateway) with a name).

            **Anonymous** gateways are intended to be embedded directly within a
            returned sample in the `/sample` response object. They have no name and
            are only referred to by the sample within which they are embedded.

            **Named** gateways, on the other hand, are included in the `gateways`
            key in the `/sample` response object and referred to by name within a
            returned sample in the `/sample` response object. They are intended to
            be used when more than one sample references the same gateway. This
            mechanism is available to ensure that the gateway object does not need
            to be duplicated multiple times in the response in these cases.

            This field can contain multiple gateways to support scenarios where a
            sample is available through more than one mechanism. We expect that only
            one gateway will be returned in most responses (if at all).
        metadata:
          allOf:
          - $ref: '#/components/schemas/models.sample.Metadata'
          nullable: true
    models.Subject:
      type: object
      description: A subject.
      required:
      - id
      - kind
      properties:
        id:
          $ref: '#/components/schemas/models.subject.Identifier'
        kind:
          $ref: '#/components/schemas/models.subject.Kind'
        gateways:
          type: array
          items:
            $ref: '#/components/schemas/models.gateway.AnonymousOrReference'
          description: |-
            One or more [gateways](AnonymousOrReference) through which this subject
            can be accessed.

            Gateways can be either [anonymous](AnonymousOrReference::Anonymous)
            ([gateways](crate::Gateway) with no name) or a
            [refererence](AnonymousOrReference::Reference) to a [named
            gateway](gateway::Named) ([gateways](crate::Gateway) with a name).

            **Anonymous** gateways are intended to be embedded directly within a
            returned subject in the `/subject` response object. They have no name
            and are only referred to by the subject within which they are embedded.

            **Named** gateways, on the other hand, are included in the `gateways`
            key in the `/subject` response object and referred to by name within a
            returned subject in the `/subject` response object. They are intended to
            be used when more than one subject references the same gateway. This
            mechanism is available to ensure that the gateway object does not need
            to be duplicated multiple times in the response in these cases.

            This field can contain multiple gateways to support scenarios where a
            subject is available through more than one mechanism. We expect that
            only one gateway will be returned in most responses (if at all).
        metadata:
          allOf:
          - $ref: '#/components/schemas/models.subject.Metadata'
          nullable: true
    models.Url:
      type: string
      description: |-
        A uniform resource locator (URL) according to the [URL
        Standard](https://url.spec.whatwg.org/).
    models.file.Identifier:
      type: object
      description: The primary name and namespace for a file within the source server.
      required:
      - namespace
      - name
      properties:
        namespace:
          $ref: '#/components/schemas/models.namespace.Identifier'
        name:
          $ref: '#/components/schemas/cde.v1.file.Name'
    models.file.Metadata:
      allOf:
      - $ref: '#/components/schemas/models.metadata.common.Metadata'
      - type: object
        required:
        - type
        - size
        - checksums
        - description
        properties:
          type:
            allOf:
            - $ref: '#/components/schemas/field.unowned.file.Type'
            nullable: true
          size:
            allOf:
            - $ref: '#/components/schemas/field.unowned.file.Size'
            nullable: true
          checksums:
            allOf:
            - $ref: '#/components/schemas/field.unowned.file.Checksums'
            nullable: true
          description:
            allOf:
            - $ref: '#/components/schemas/field.unowned.file.Description'
            nullable: true
          unharmonized:
            $ref: '#/components/schemas/fields.Unharmonized'
      description: Metadata associated with a file.
    models.file.metadata.Checksums:
      type: object
      description: A list of checksums for a file.
      properties:
        md5:
          allOf:
          - $ref: '#/components/schemas/cde.v1.file.checksum.MD5'
          nullable: true
    models.gateway.AnonymousOrReference:
      oneOf:
      - type: object
        description: An anonymous gateway.
        required:
        - gateway
        - kind
        properties:
          gateway:
            $ref: '#/components/schemas/models.Gateway'
          kind:
            type: string
            enum:
            - Anonymous
      - type: object
        description: A reference to a named gateway.
        required:
        - gateway
        - kind
        properties:
          gateway:
            type: string
            description: The reference to a [`Named`] gateway.
          kind:
            type: string
            enum:
            - Reference
      description: An anonymous [`Gateway`] or a reference to a named [`Gateway`].
      discriminator:
        propertyName: kind
    models.gateway.Closed:
      allOf:
      - $ref: '#/components/schemas/models.gateway.closed.Status'
      - type: object
        required:
        - description
        properties:
          description:
            type: string
            description: |-
              A Markdown field (formatted according to the [CommonMark] standard) that
              describes the gateway.

              At a minimum, a description of what the gateway is and why it is closed
              is recommended.

              **Note:** this field is required for a closed gateway. This was an
              intentional decision: gateways are intended to point users to external
              resources. When that is not possible, a gateway's only purpose can be to
              provide further information about the data source. Put another way, if
              one is attempting to construct a closed gateway with no description, it
              should be considered why a gateway is needed at all.

              [CommonMark]: https://commonmark.org
      description: A closed gateway.
    models.gateway.Link:
      oneOf:
      - type: object
        description: |-
          A link that points precisely to the desired resource.

          [`Link::Direct`] is used when the resource pointed to by the URL
          exactly matches the desired content—no more and no less.

          For example, if a user wants the RNA-Seq BAM files for a particular
          sample and the source server can provide a link that filters down to
          only those files using query parameters, [`Link::Direct`] should be
          used.
        required:
        - url
        - kind
        properties:
          url:
            $ref: '#/components/schemas/models.Url'
          kind:
            type: string
            enum:
            - Direct
      - type: object
        description: |-
          A link that points _approximately_ to the desired resource.

          [`Link::Approximate`] is used when an direct link to a desired resource
          cannot be constructed by the server, but a link to _approximately_ the
          desired resource followed by following some manual instructions will
          deliver the desired resources.

          For example, if a user wants the RNA-Seq BAM files for a particular
          sample, but the server can only construct a link to the particular
          sample and file type and/or sequencing type must be filtered manually in
          the user interface, then a [`Link::Approximate`] should be constructed
          with (a) the `url` field pointing to the sample link and (b) the
          `instructions` field telling the end user how to filter to their desired
          content within the user interface.
        required:
        - url
        - instructions
        - kind
        properties:
          url:
            $ref: '#/components/schemas/models.Url'
          instructions:
            type: string
            description: |-
              The manual instructions to follow after navigating to the URL.

              As much as is practical, instructions should be as specific as
              possible to the desired data. We expect that generating dynamic
              instructions based on the user's selection will require a
              non-trivial amount of development effort rather than returning
              generic set of instructions. The reason for this is because this
              field is intended to be surfaced as tailored instructions with a
              user interface detailing to the user _exactly_ how to retrieve their
              desired data.

              For example, if a user is requesting whole-genome sequence BAM files
              for a particular sample but the server can only construct a link to
              _all_ files for the sample, the instructions should specify how to
              filter down to only the whole-genome sequence BAM files
              specifically—not how to operate filters within the interface
              generally.
          kind:
            type: string
            enum:
            - Approximate
      - type: object
        description: |-
          A link that points to information about how to retrieve the desired
          resource.

          [`Link::Informational`] is used when a link to the desired content
          cannot be constructed by the server, but a link describing how to gain
          access to the resource is known. This [`Link`] is reserved for
          situations where the data is not accessible except via an out-of-band
          process—if the resource can be reached (not necessarily accessed) by
          following a URL and a subsequent set of instructions, a
          [`Link::Approximate`] should be used instead.

          For example, if a request form exists where, once approved, some data is
          sent to the user in a manual fashion, then a [`Link::Informational`]
          should be used (the distinguishing factor being that the user cannot
          complete the request process without some out-of-band or manual
          process).

          **Note:** no further informational field is provided within the API
          because the expectation is that the information on what steps should be
          taken next will be available at the specified URL.
        required:
        - url
        - kind
        properties:
          url:
            $ref: '#/components/schemas/models.Url'
          kind:
            type: string
            enum:
            - Informational
      - type: object
        description: |-
          A link that points to an email address to request access to the
          resource.

          [`Link::MailTo`] is used when the process of requesting data access is
          to email.
        required:
        - url
        - instructions
        - kind
        properties:
          url:
            $ref: '#/components/schemas/models.Url'
          instructions:
            type: string
            description: |-
              The instructions to follow when constructing the email request. At a
              minimum, explaining what criteria are used in determining access,
              what information is requested, and what to expect after the
              email in terms of communication and timeline is recommended.
          kind:
            type: string
            enum:
            - MailTo
      description: |-
        A link to an external resource.

        A link communicates information about where a resource is located, alongside
        additional context regarding how the link should be interpreted (via the
        `kind` field). All [`Link`]s include a `url` field pointing to the external
        resource. In the case of [`Link::Approximate`] and [`Link::MailTo`], a
        required `instructions` field is included to instruct the user of what steps
        to take after the link has been followed (see the definition of
        [`Link::Approximate`] and [`Link::MailTo`] for more details, respectively).

        **Note:** the context of what resources are desired compared with what
        resources the link represents is an important consideration when
        constructing the correct [`Link`]. For example, if the desired resource is a
        specific file, but the server can only construct a link to a cohort of
        files, a [`Link::Approximate`] should be used. In contrast, if the desired
        resource is the entire cohort of files, a [`Link::Direct`] should be used.

        **Note:** the link does not imply the access level or immediate availability
        of the data—it only points a user to where they can _attempt_ to access the
        data. Instead, [`Link`]s are always wrapped in a [`Gateway`](super::Gateway)
        that communicates the access level or requirements. In other words, a
        [`Link`] can absolutely require authentication or authorization before data
        becomes accessible (and the corresponding [`Gateway`](super::Gateway) within
        which the [`Link`] is embedded should reflect this).

        ## Examples

        * If the data is contained within a file where a direct link can be
        constructed, whether that file is open access or controlled, then a
        [`Link::Direct`] should be constructed with a link directly to that file.
        * In the event that study data is deposited as a study within a larger data
        repository, such as the database of Genotypes and Phenotypes (dbGaP) or
        the European Genome-phenome Archive (EGA), and the `url` points to the
        study page:
        * If the desired resource is a specific file or subset of (but not all)
        files within the study, a [`Link::Approximate`] should be returned.
        This is because the link includes more files than what was
        specifically requested—thus, instructions on how to filter to the
        files requested must be communicated.
        * If the desired resource is _every_ file in the study, then a
        [`Link::Direct`] should be returned pointing to the study page.
        * If the data is not immediately requestable through a webpage but there
        exists an informational page on how to request the data using an
        out-of-band process, then a [`Link::Informational`] should be used.
        * If the data is available after contacting an email address, then a
        [`Link::MailTo`] should be used.
      discriminator:
        propertyName: kind
    models.gateway.Named:
      allOf:
      - $ref: '#/components/schemas/models.Gateway'
      - type: object
        required:
        - name
        properties:
          name:
            type: string
            description: The name.
      description: |-
        A named gateway.

        A named gateway is simply a [`Gateway`] with a name. Named gateways exist so
        that multiple files in a response can refer to the same gateway (by name)
        without duplicating the information for that gateway multiple times.

        **Note:** a _named_ gateway can only be included in a `gateways` response
        object—they cannot be embedded directly within a [`File`](crate::File) in
        the response.
    models.gateway.closed.Status:
      oneOf:
      - type: object
        required:
        - status
        properties:
          status:
            type: string
            enum:
            - IndefinitelyClosed
      - type: object
        description: A gateway that is closed while awaiting publication.
        required:
        - status
        properties:
          available_at:
            type: string
            format: date-time
            description: |-
              If known, the ISO 8601 formatted, UTC-based date and time when the
              the resource will become available.

              This field is intended to indicate to the consumer that they should
              retry their request on or after the listed time to gain an updated
              gateway definition.
            nullable: true
          status:
            type: string
            enum:
            - AwaitingPublication
      - type: object
        description: A gateway that is closed while awaiting publication.
        required:
        - available_at
        - status
        properties:
          available_at:
            type: string
            format: date-time
            description: |-
              The ISO 8601 formatted, UTC-based date and time when the the
              resource will become available.

              This field is intended to indicate to the consumer that they should
              retry their request on or after the listed time to gain an updated
              gateway definition.

              **Note:** for the gateway to have a kind of [`Status::Embargoed`],
              by definition, a date at which the resource becomes available _must_
              be known. If a date is not known, then the resource does not fit the
              API's definition of "embargoed".
          status:
            type: string
            enum:
            - Embargoed
      description: The status of a closed gateway.
      discriminator:
        propertyName: status
    models.metadata.common.Metadata:
      type: object
      description: Metadata that is common to all metadata blocks.
      required:
      - depositions
      properties:
        depositions:
          type: array
          items:
            $ref: '#/components/schemas/models.metadata.common.deposition.Accession'
          description: |-
            Statements of deposition to public repositories for a given entity.

            **NOTE**: when you declare that a dataset has been deposited to a public
            repository such as dbGaP or EGA, you should also include a gateway and
            link pointing to where that entity can be found in the public
            repository.
          nullable: true
    models.metadata.common.deposition.Accession:
      oneOf:
      - type: object
        required:
        - kind
        - value
        properties:
          kind:
            type: string
            enum:
            - dbGaP
          value:
            $ref: '#/components/schemas/cde.v1.deposition.DbgapPhsAccession'
      description: An accession of a public repository where the data has been deposited.
      discriminator:
        propertyName: kind
    models.metadata.field.Description:
      oneOf:
      - $ref: '#/components/schemas/models.metadata.field.description.Harmonized'
      - $ref: '#/components/schemas/models.metadata.field.description.Unharmonized'
      description: A description for a metadata field.
    models.metadata.field.Details:
      type: object
      description: Details regarding the harmonization process.
      properties:
        method:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.details.Method'
          nullable: true
        harmonizer:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.details.Harmonizer'
          nullable: true
        url:
          allOf:
          - $ref: '#/components/schemas/models.Url'
          nullable: true
    models.metadata.field.description.Harmonized:
      type: object
      description: |-
        A harmonized metadata field description.

        Harmonized keys _must_ fit the regex pattern `^[a-z_]+$`.
      required:
      - harmonized
      - path
      - wiki_url
      properties:
        harmonized:
          type: boolean
          description: |-
            Whether or not this field is harmonized across the ecosystem.

            This will always be set to `true`.
          default: true
        path:
          type: string
          description: |-
            A comma (`.`) delimited path to the field's location on the `metadata`
            objects returned by the various subject endpoints.
        wiki_url:
          $ref: '#/components/schemas/models.Url'
        standard:
          allOf:
          - $ref: '#/components/schemas/models.metadata.field.description.harmonized.Standard'
          nullable: true
    models.metadata.field.description.Unharmonized:
      type: object
      description: |-
        An unharmonized metadata field description.

        Unharmonized keys may be any valid JSON string.
      required:
      - harmonized
      - path
      properties:
        harmonized:
          type: boolean
          description: |-
            Whether or not this field is harmonized across the ecosystem.

            This will always be set to `false`.
          default: false
        name:
          type: string
          description: |-
            A display name for this metadata field as _suggested_ by the server (this
            is not considered authoritative and can be ignored by the client if it so
            chooses). This is mainly to avoid naming collisions of common fields across
            servers.
          nullable: true
        description:
          type: string
          description: A plain-text description of what the field represents.
          nullable: true
        path:
          type: string
          description: |-
            A comma (`.`) delimited path to the field's location on the `metadata`
            objects returned by the various subject endpoints.
        standard:
          type: string
          description: |-
            If the field is considered harmonized across the federation ecosystem, the
            name of the standard to which the field is harmonized.

            If the field is _not_ harmonized across the federation ecosystem, then this
            should be [`None`].
          nullable: true
        url:
          allOf:
          - $ref: '#/components/schemas/models.Url'
          nullable: true
    models.metadata.field.description.harmonized.Standard:
      type: object
      description: A standard to which a field is harmonized.
      required:
      - name
      - url
      properties:
        name:
          type: string
          description: The name.
        url:
          $ref: '#/components/schemas/models.Url'
    models.metadata.field.details.Harmonizer:
      type: string
      description: |-
        A statement on the expertise of the individual (or individuals) who are
        assigning the harmonized values.

        This information can help data receivers understand the context within which
        the data was harmonized (particularly in data fields that may be constantly
        evolving or changing—for instance, diagnosis).

        **NOTE:** if you find that there are types of harmonizers that are not
        captured here, please make an issue on the GitHub repository so we can
        support the value.
      enum:
      - DomainExpert
      - CurationTeamMember
    models.metadata.field.details.Method:
      type: string
      description: |-
        The method by which data was harmonized.

        **NOTE:** if you find that there are types of harmonization methods that are
        not captured here, please make an issue on the GitHub repository so we can
        support the value.
      enum:
      - Mapped
    models.namespace.Description:
      type: string
      description: |-
        A description of a namespace.

        This description cannot exceed 2048 characters.
      example: A namespace owned by Example Organization.
    models.namespace.Identifier:
      type: object
      description: An identifier for a namespace.
      required:
      - organization
      - name
      properties:
        organization:
          $ref: '#/components/schemas/models.organization.Identifier'
        name:
          $ref: '#/components/schemas/models.namespace.identifier.Name'
    models.namespace.Metadata:
      allOf:
      - $ref: '#/components/schemas/models.metadata.common.Metadata'
      - type: object
        required:
        - study_short_title
        - study_name
        - study_funding_id
        - study_id
        properties:
          study_short_title:
            allOf:
            - $ref: '#/components/schemas/field.unowned.namespace.StudyShortTitle'
            nullable: true
          study_name:
            allOf:
            - $ref: '#/components/schemas/field.unowned.namespace.StudyName'
            nullable: true
          study_funding_id:
            type: array
            items:
              $ref: '#/components/schemas/field.unowned.namespace.StudyFundingId'
            description: The study funding id.
            nullable: true
          study_id:
            allOf:
            - $ref: '#/components/schemas/field.unowned.namespace.StudyId'
            nullable: true
          unharmonized:
            $ref: '#/components/schemas/fields.Unharmonized'
      description: Metadata associated with a namespace.
    models.namespace.identifier.Name:
      type: string
      description: |-
        The name of a namespace.

        Typically, this is going to represent a particular dataset within the source server.
        The name **must** conform to the pattern `^[A-Za-z0-9-]+$`. Any name that does not
        match this pattern should be considered invalid by clients.

        NOTE: the regex for this field does not allow for any spaces because it is
        anticipated that the field will be displayable as a repository (e.g.,
        `example-organization/ExampleNamespace`).
    models.organization.Identifier:
      type: string
      description: |-
        The identifier of an organization.

        The identifier **must** conform to
        [`kebab-casing`](https://developer.mozilla.org/en-US/docs/Glossary/Kebab_case),
        matching the pattern `^[a-z0-9-]+$`. Any identifier that does not match this
        pattern should be considered invalid by clients.

        **Note:** this field is asserted by the source server, but it is not
        guaranteed to be authoritative across the federation (due to the
        decentralized nature of organization and namespace allocation).

        **Note**: the regex for this field does not allow for any spaces because it is
        anticipated that the field will be displayable as a repository (e.g.,
        `example-organization/ExampleNamespace`).
    models.organization.Metadata:
      allOf:
      - $ref: '#/components/schemas/models.metadata.common.Metadata'
      - type: object
        required:
        - institution
        properties:
          institution:
            type: array
            items:
              $ref: '#/components/schemas/field.unowned.organization.Institution'
            description: |-
              Institutions associated with an organization.

              **NOTE:** in this design, an organization in not always a single
              institution—it may also represent a consortium of institutions, for
              instance. This is necessary, since a namespace can be tied to one and
              only one organization in the API specification. As such, if the above is
              not true, there is no way to make a namespace where data is contributed
              from multiple institutions.
            nullable: true
          unharmonized:
            $ref: '#/components/schemas/fields.Unharmonized'
      description: Metadata associated with an organization.
    models.organization.Name:
      type: string
      description: |-
        The proper name of the organization as it should be displayed by clients.

        This name name cannot exceed 256 characters.

        This field is intended to be the proper name of the organization that mints
        identifiers within a given namespace. That said, we have intentionally not
        required that this be an organization specifically, as there may be exceptions
        to this guideline. We recommend that you use an organization name here if you
        can, but you may put whatever value is appropriate to describe the owner of the
        namespace.

        It is recommended that you use title case for this field, though that is not
        required.

        **Note:** this field is asserted by the source server, but it is not guaranteed
        to be authoritative across the federation (due to the decentralized nature of
        organization and namespace allocation).
      example: Example Organization
    models.sample.Identifier:
      type: object
      description: |-
        An identifier for a [`Sample`](crate::Sample).

        [`Identifiers`](Identifier) serve two main purposes:

        1. They represent the primary identifier for a [`Sample`](crate::Sample).
        2. They extended when referenced as [linked identifiers](linked::Identifier).
      required:
      - namespace
      - name
      properties:
        namespace:
          $ref: '#/components/schemas/models.namespace.Identifier'
        name:
          type: string
          description: |-
            **`caDSR CDE 15100774 v1.00`**

            This metadata element is defined by the caDSR as "A unique string of characters
            used to identify a specimen.".

            Link:
            <https://cadsr.cancer.gov/onedata/dmdirect/NIH/NCI/CO/CDEDD?filter=CDEDD.ITEM_ID=15100774%20and%20ver_nr=1>
          example: SampleName001
    models.sample.Metadata:
      allOf:
      - $ref: '#/components/schemas/models.metadata.common.Metadata'
      - type: object
        required:
        - age_at_diagnosis
        - anatomical_sites
        - diagnosis
        - disease_phase
        - library_selection_method
        - tissue_type
        - tumor_classification
        - tumor_tissue_morphology
        - age_at_collection
        - library_strategy
        - library_source_material
        - preservation_method
        - tumor_grade
        - specimen_molecular_analyte_type
        - identifiers
        properties:
          age_at_diagnosis:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.AgeAtDiagnosis'
            nullable: true
          anatomical_sites:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.AnatomicalSite'
            nullable: true
          diagnosis:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.Diagnosis'
            nullable: true
          disease_phase:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.DiseasePhase'
            nullable: true
          library_selection_method:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.LibrarySelectionMethod'
            nullable: true
          tissue_type:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.TissueType'
            nullable: true
          tumor_classification:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.TumorClassification'
            nullable: true
          tumor_tissue_morphology:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.TumorTissueMorphology'
            nullable: true
          age_at_collection:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.AgeAtCollection'
            nullable: true
          library_strategy:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.LibraryStrategy'
            nullable: true
          library_source_material:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.LibrarySourceMaterial'
            nullable: true
          preservation_method:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.PreservationMethod'
            nullable: true
          tumor_grade:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.TumorGrade'
            nullable: true
          specimen_molecular_analyte_type:
            allOf:
            - $ref: '#/components/schemas/field.unowned.sample.SpecimenMolecularAnalyteType'
            nullable: true
          identifiers:
            type: array
            items:
              $ref: '#/components/schemas/field.unowned.sample.Identifier'
            description: |-
              The alternate identifiers for the sample.

              Note that this list of identifiers *must* include the main identifier
              for the [`Sample`].
            nullable: true
          unharmonized:
            $ref: '#/components/schemas/fields.Unharmonized'
      description: Metadata associated with a sample.
    models.sample.identifier.linked.Identifier:
      allOf:
      - $ref: '#/components/schemas/models.sample.Identifier'
      - type: object
        required:
        - server
        properties:
          server:
            $ref: '#/components/schemas/models.Url'
      description: |-
        A linked identifier for a [`Sample`](crate::Sample).

        Linked identifiers are identifiers that are able to be linked back to servers within
        the federated ecosystem (i.e., the server that owns this identifier within the
        ecosystem is known).
    models.sample.identifier.referenced.Identifier:
      oneOf:
      - allOf:
        - $ref: '#/components/schemas/models.sample.identifier.linked.Identifier'
        - type: object
          required:
          - type
          properties:
            type:
              type: string
              enum:
              - Linked
      - allOf:
        - $ref: '#/components/schemas/models.sample.identifier.unlinked.Identifier'
        - type: object
          required:
          - type
          properties:
            type:
              type: string
              enum:
              - Unlinked
      description: |-
        A referenced identifier for a [`Sample`](crate::Sample).

        A referenced identifier is a reference to either an identifier whose owner is known
        and operates an authoritative federation server containing that identifier (i.e., a
        [linked identifier](linked::Identifier)) _or_ a reference to an identifier that is
        generally known to be associated with the sample but does not have an associated
        server that asserts ownership of the identifier (i.e., an [unlinked
        identifier](unlinked::Identifier)).
      discriminator:
        propertyName: type
    models.sample.identifier.unlinked.Identifier:
      type: object
      description: |-
        An unlinked identifier for a [`Sample`](crate::Sample).

        This represents an arbitrary identitier that cannot be linked to any source server
        in the broader federated ecosystem. There are no restricted values for this
        identifier.
      required:
      - name
      properties:
        name:
          type: string
    models.sample.metadata.AgeAtCollection:
      type: number
      format: float
      description: |-
        The approximate age of collection in days.

        * When the age at collection is collected by the source server in days, the
        number of days is reported directly.
        * When the age at collection is collected by the source server in years, the
        number of years is multiplied by 365.25 to arrive at an approximate number
        of days.
    models.sample.metadata.AgeAtDiagnosis:
      type: number
      format: float
      description: |-
        The approximate age of diagnosis in days.

        * When the age at diagnosis is collected by the source server in days, the
        number of days is reported directly.
        * When the age at diagnosis is collected by the source server in years, the
        number of years is multiplied by 365.25 to arrive at an approximate number
        of days.
    models.sample.metadata.AnatomicalSite:
      type: string
      description: |-
        Anatomical site for a sample.

        Anatomical site generally appears in an array of anatomical site values. In
        these cases, you should interpret the assignment of an anatomical site to a
        sample to mean AT LEAST ONE of the anatomical sites applies to the sample.
        Importantly, when the exact anatomical site is not known, but two candidate
        anatomical sites are possible, both sites should be annotated on the sample.

        The steps that were taken to filter the Uberon ontology to arrive at this
        list are:

        * Download the Uberon simple ontology (see the file link above).
        * Build a directed graph of `is_a` relationships in the ontology.
        * Include all nodes that fall underneath the `anatomical entity` node.

        This is an autogenerated entity that represents the all nodes inheriting
        from the 'anatomical entity' node within the simplified Uberon ontology at
        v2024-09-03. This enum was generated by the `ccdi-curate v1.0.0` command
        line tool on 2024-11-15 at 20:37 (UTC) from [this
        file](https://github.com/obophenotype/uberon/releases/download/v2024-09-03/uberon-basic.json).
      enum:
      - anatomical entity
      - material anatomical entity
      - anatomical structure
      - ganglion
      - cranial ganglion
      - cochlear ganglion
      - trigeminal ganglion
      - main ciliary ganglion
      - vestibular ganglion
      - vestibulocochlear ganglion
      - otic ganglion
      - epibranchial ganglion
      - geniculate ganglion
      - glossopharyngeal ganglion
      - inferior glossopharyngeal IX ganglion
      - superior glossopharyngeal IX ganglion
      - vagus X ganglion
      - inferior vagus X ganglion
      - superior vagus X ganglion
      - vagal ganglion 1
      - vagal ganglion 2
      - vagal ganglion 3
      - vagal ganglion 4
      - cranial sensory ganglion
      - acoustico-facial VII-VIII ganglion complex
      - vestibulo-cochlear VIII ganglion complex
      - glossopharyngeal-vagus IX-X ganglion complex
      - profundal part of trigeminal ganglion complex
      - maxillomandibular part of trigeminal ganglion complex
      - lateral line ganglion
      - posterior lateral line ganglion
      - anterior lateral line ganglion
      - dorsal anterior lateral line ganglion
      - ventral anterior lateral line ganglion
      - middle lateral line ganglion
      - sensory ganglion
      - dorsal root ganglion
      - cervical dorsal root ganglion
      - first cervical dorsal root ganglion
      - second cervical dorsal root ganglion
      - third cervical dorsal root ganglion
      - fourth cervical dorsal root ganglion
      - fifth cervical dorsal root ganglion
      - seventh cervical dorsal root ganglion
      - eighth cervical dorsal root ganglion
      - sixth cervical dorsal root ganglion
      - thoracic dorsal root ganglion
      - first thoracic dorsal root ganglion
      - second thoracic dorsal root ganglion
      - third thoracic dorsal root ganglion
      - fifth thoracic dorsal root ganglion
      - sixth thoracic dorsal root ganglion
      - seventh thoracic dorsal root ganglion
      - eighth thoracic dorsal root ganglion
      - ninth thoracic dorsal root ganglion
      - tenth thoracic dorsal root ganglion
      - eleventh thoracic dorsal root ganglion
      - twelfth thoracic dorsal root ganglion
      - fourth thoracic spinal ganglion
      - lumbar dorsal root ganglion
      - second lumbar dorsal root ganglion
      - first lumbar dorsal root ganglion
      - third lumbar dorsal root ganglion
      - fifth lumbar dorsal root ganglion
      - fourth lumbar dorsal root ganglion
      - sacral dorsal root ganglion
      - first sacral dorsal root ganglion
      - second sacral dorsal root ganglion
      - third sacral dorsal root ganglion
      - fifth sacral dorsal root ganglion
      - fourth sacral spinal ganglion
      - ganglion of peripheral nervous system
      - autonomic ganglion
      - sympathetic ganglion
      - paravertebral ganglion
      - vertebral ganglion
      - thoracic ganglion
      - cervical ganglion
      - superior cervical ganglion
      - middle cervical ganglion
      - inferior cervical ganglion
      - cervicothoracic ganglion
      - prevertebral ganglion
      - celiac ganglion
      - pelvic ganglion
      - mesenteric ganglion
      - inferior mesenteric ganglion
      - superior mesenteric ganglion
      - parasympathetic ganglion
      - enteric ganglion
      - submandibular ganglion
      - pterygopalatine ganglion
      - sublingual ganglion
      - future pterygopalatine ganglion
      - cardiac ganglion
      - ganglion of ciliary nerve
      - accessory ciliary ganglion
      - ganglion of central nervous system
      - insect embryonic/larval brain
      - insect supraesophageal ganglion
      - insect adult cerebral ganglion
      - trunk ganglion
      - abdominal ganglion
      - pedal ganglion
      - parietal ganglion
      - pleural ganglion
      - gastropod cerebral ganglion
      - abdominal ganglion of visceral hump
      - Grueneberg ganglion
      - myelin
      - reticuloendothelial system
      - liver reticuloendothelial system
      - anatomical system
      - reproductive system
      - male reproductive system
      - female reproductive system
      - respiratory system
      - open tracheal system
      - digestive system
      - insect embryonic/larval digestive system
      - circulatory system
      - open circulatory system
      - closed circulatory system
      - two-pass circulatory system
      - one-pass circulatory system
      - insect embryonic/larval circulatory system
      - nervous system
      - insect embryonic/larval nervous system
      - insect adult nervous system
      - gustatory system
      - lacrimal apparatus
      - hemolymphoid system
      - musculoskeletal system
      - exocrine system
      - hematopoietic system
      - integumental system
      - insect embryonic/larval integumentary system
      - insect adult integumentary system
      - lymphoid system
      - aqueous drainage system
      - hypothalamus-pituitary axis
      - renal collecting system
      - genitourinary system
      - entire sense organ system
      - cardiovascular system
      - embryonic cardiovascular system
      - lobar bronchus alveolar system
      - ventricular system of central nervous system
      - ventricular system of brain
      - alimentary part of gastrointestinal system
      - vascular system
      - systemic arterial system
      - arterial system
      - venous system
      - hindbrain venous system
      - extraembryonic venous system
      - pulmonary vascular system
      - venous system of brain
      - extraembryonic vascular system
      - water vascular system
      - dermatological-muscosal system
      - molecular system
      - histaminergic system
      - catecholamine system
      - adrenergic system
      - noradrenergic system
      - dopaminergic system
      - gABAergic system
      - glutamatergic system
      - serotonergic system
      - cholinergic system
      - glymphatic system
      - pancreatic system
      - endolymphatic system
      - tectorial restraint system
      - excretory system
      - renal system
      - neuroendocrine system
      - acellular anatomical structure
      - compound eye corneal lens
      - egg chorion
      - cuticle
      - chitin-based cuticle
      - puparium
      - insect embryonic/larval cuticle
      - insect third instar larval cuticle
      - collagen and cuticulin-based cuticle
      - otolith
      - asteriscus
      - lapillus
      - sagitta
      - imaginal disc-derived wing vein
      - exocuticle
      - endocuticle
      - Bruch's membrane
      - cutaneous microfibril
      - eggshell
      - chorion-containing eggshell
      - primary vitreous
      - acellular membrane
      - zona pellucida
      - basal lamina of epithelium
      - respiratory system basal lamina
      - trachea basal lamina
      - bronchus basal lamina
      - capsule of lens
      - reticular lamina of epithelium
      - respiratory system reticular lamina
      - bronchus reticular lamina
      - trachea reticular lamina
      - reticular membrane of spiral organ
      - basilar membrane of cochlea
      - tectorial membrane of cochlea
      - otolithic part of statoconial membrane
      - vitelline membrane
      - basement membrane of epithelium
      - Descemet's membrane
      - anterior limiting lamina of cornea
      - glomerular basement membrane
      - pronephric glomerular basement membrane
      - epidermal-dermal junction
      - nephron tubule basement membrane
      - cochlear basement membrane
      - respiratory system basement membrane
      - bronchus basement membrane
      - trachea basement membrane
      - lamina densa of glomerular basement membrane
      - statoconial membrane
      - lamina lucida
      - Hensen stripe
      - Kimura membrane
      - zone of basilar membrane of cochlea
      - zona arcuata of basilar membrane of cochlea
      - zona pectinata of basilar membrane of cochlea
      - lamina rara interna
      - lamina rara externa
      - statolith
      - cusp of tooth
      - lingual cusp of tooth
      - hypoconid
      - premolar 1 hypoconoid
      - paracone
      - stylocone
      - parastyle
      - keratin-based acellular structure
      - chitin-based acellular structure
      - Reissner's fiber
      - collection of collagen fibrils
      - aorta collagen fibril
      - pulmonary collagen fibril
      - bone collagen fibril
      - tendon collagen fibril
      - corneal stroma collagen fibril
      - gastrolith
      - gelatinous layer of statoconial membrane
      - subcupular meshwork of statoconial membrane
      - calcified structure of brain
      - pineal corpora arenacea
      - choroid plexus corpora arenacea
      - pupal case
      - cocoon
      - myoseptum
      - vertical myoseptum
      - collagenous dermal stroma
      - egg capsule
      - insect cuticular specialization
      - insect cephalopharyngeal skeleton
      - insect epipharyngeal sclerite
      - insect trichome
      - insect wing hair
      - insect arista lateral
      - insect chorionic specialization
      - insect dorsal appendage
      - anatomical group
      - iliopsoas
      - juxtaglomerular apparatus
      - metanephric juxtaglomerular apparatus
      - mesonephric juxtaglomerular apparatus
      - septum
      - nasal septum
      - orbital septum
      - cardiac septum
      - interatrial septum
      - atrial septum primum
      - atrial septum secundum
      - atrial septum intermedium
      - interventricular septum
      - ventricular septum intermedium
      - outflow tract septum
      - aortico-pulmonary spiral septum
      - atrioventricular septum
      - bulbar spiral septum
      - ovary septum
      - shell septum
      - horizontal septum
      - interalveolar septum
      - urorectal septum
      - buccopharyngeal membrane
      - lingual septum
      - tracheoesophageal septum
      - orbitosphenoid septum
      - septum semicircularium anterior
      - septum semicircularium laterale
      - septum semircularium posterior
      - placental septum
      - pulmonary interlobular septum
      - surface structure
      - lip
      - upper lip
      - lower lip
      - oral disk
      - scale
      - dermal scale
      - odontode scale
      - cephalic dermal scale
      - lateral line scale
      - pored lateral line scale
      - lateral line scale 6
      - pouch scale
      - ctenoid scale
      - transforming ctenoid scale
      - cycloid scale
      - spinoid scale
      - ganoid scale
      - lepidosteoid scale
      - polypteroid scale
      - palaeoniscoid scale
      - elasmoid scale
      - keratin-based scale
      - cosmoid scale
      - postcleithral scale
      - terminal scale
      - axilar scale
      - predorsal scale
      - epidermal scale
      - scute
      - plastron scute
      - dorsal osteoderm
      - carapace scute
      - basal scute
      - cheek scale
      - guard scale
      - paired limb/fin bud
      - paired fin bud
      - pectoral fin bud
      - pelvic fin bud
      - limb bud
      - forelimb bud
      - forelimb wing bud
      - hindlimb bud
      - pectoral appendage bud
      - pelvic appendage bud
      - beak
      - external naris
      - median external naris
      - blowhole
      - posterior naris
      - anterior naris
      - endostyle
      - ala of nose
      - outer epithelium
      - skin epidermis
      - nipple sheath
      - limb epidermis
      - epidermis of metapodial pad
      - periderm
      - columella nasi
      - external gill
      - Hatschek's pit
      - upper beak
      - lower beak
      - spiracle (sensu Vertebrata)
      - gular region
      - rhinarium
      - tunicate tunic
      - nuchal hump
      - median fin fold
      - caudal peduncle
      - vent
      - opercular flap
      - urogenital papilla
      - caudal fin upper lobe
      - caudal fin lower lobe
      - adipose eyelid
      - papilla
      - lunge feeding organ papilla
      - conjunctival papilla
      - buccal papilla
      - nuptial tubercle
      - dorsal organ
      - barbel primordium
      - external integument structure
      - skin crease
      - palmar skin crease
      - plantar skin crease
      - skin flap
      - scale pocket
      - pad
      - body marking
      - melanophore stripe
      - larval melanophore stripe
      - dorsal larval melanophore stripe
      - ventral larval melanophore stripe
      - lateral larval melanophore stripe
      - yolk larval melanophore stripe
      - melanophore spot
      - caudal melanophore spot
      - midbody melanophore spot
      - head external integument structure
      - rhamphotheca
      - maxillary rhamphotheca
      - mandibular rhamphotheca
      - barbel
      - maxillary barbel
      - mental barbel
      - outer mental barbel
      - inner mental barbel
      - nasal barbel
      - posterior nasal barbel
      - anterior nasal barbel
      - rictal barbel
      - cranial crest
      - tympanic fold
      - upper eyelid protuberances
      - snout protuberances
      - interorbital fold
      - postrictal protuberances
      - upper lip protuberances
      - vocal sac
      - tympanic papilla
      - subocular groove
      - labial fold
      - cranial glands
      - mental gland
      - vocal sac glands
      - courtship gland
      - body external integument structure
      - pectoral fold
      - dorsal folds
      - longitudinal dorsal folds
      - transversal dorsal folds
      - dorsal pouch
      - cloacal fold
      - dorsolateral fold
      - body granules
      - body wart
      - body spicule
      - body tubercle
      - dorsal skin texture
      - ventral skin texture
      - dorsal crest
      - dermal annular fold
      - costal protuberances
      - costal grooves
      - costal folds
      - body gland
      - axillary glands
      - inguinal glands
      - dorsal glands
      - ventral glands
      - pectoral glands
      - postiliac glands
      - vent glands
      - limb external integument structure
      - nuptial pad
      - podotheca
      - epidermal ridge of digit
      - finger fringes
      - fringe on postaxial edge of finger IV
      - toe fringes
      - fringe on postaxial edge of toe V
      - metacarpal fold
      - ulnar fold
      - metatarsal fold
      - tarsal fringe
      - ungual flap
      - circumferential groove
      - ulnar protuberances
      - tibial protuberances
      - calcar anterior
      - calcar posterior
      - prepollical protuberances
      - keratinous claw
      - limb gland
      - finger glands
      - web glands
      - humeral glands
      - tibial glands
      - femoral glands
      - limb villosities
      - toe disc
      - manual toe disc
      - pedal toe disc
      - tail external integument structure
      - dorsal tail tubercle
      - tail base gland
      - dorsal tail fin
      - ventral tail fin
      - unicellular gland
      - Westoll line
      - muscle spindle
      - primary muscle spindle
      - secondary muscle spindle
      - endoderm-derived structure
      - islet of Langerhans
      - endocrine pancreas
      - exocrine pancreas
      - respiratory tract
      - proximo-distal subdivision of respiratory tract
      - upper respiratory tract
      - lower respiratory tract
      - nasopharynx
      - larynx
      - subglottis
      - supraglottic part of larynx
      - mixed endoderm/mesoderm-derived structure
      - mixed ectoderm/mesoderm/endoderm-derived structure
      - lung connective tissue
      - lobar bronchus connective tissue
      - lung elastic tissue
      - prostate epithelium
      - pleura
      - falciform ligament
      - urothelium of ureter
      - transitional epithelium of major calyx
      - lobe of prostate
      - prostate gland anterior lobe
      - prostate gland ventral lobe
      - prostate gland dorsolateral lobe
      - prostate gland lateral lobe
      - prostate gland dorsal lobe
      - posterior lobe of prostate
      - median lobe of prostate
      - capsule of thymus
      - cortex of thymus
      - medulla of thymus
      - thymus lobule
      - epithelium of urethra
      - urethra urothelium
      - transitional epithelium of prostatic urethra
      - epithelium of male urethra
      - bulbourethral gland epithelium
      - epithelium of female urethra
      - prostate gland
      - thymus
      - cervical thymus
      - superficial cervical thymus
      - deep cervical thymus
      - thoracic thymus
      - parietal pleura
      - visceral pleura
      - prostate duct
      - endothelium of trachea
      - endothelium of main bronchus
      - thymus lymphoid tissue
      - trachea blood vessel
      - lung blood vessel
      - pulmonary capillary
      - pulmonary venule
      - intra-acinar venule
      - bronchial venule
      - segmental pulmonary vein
      - subsegmental pulmonary vein
      - subsegmental pulmonary artery
      - pulmonary arteriole
      - intra-acinar arteriole
      - main bronchus blood vessel
      - thymus epithelium
      - thymus subcapsular epithelium
      - Hassall's corpuscle
      - thymus corticomedullary boundary
      - prostate glandular acinus
      - prostate gland stroma
      - lower respiratory tract smooth muscle
      - smooth muscle of trachea
      - trachealis
      - bronchus smooth muscle
      - main bronchus smooth muscle
      - smooth muscle tissue of bronchiole
      - smooth muscle tissue of terminal bronchiole
      - smooth muscle tissue of respiratory bronchiole
      - smooth muscle tissue of lobular bronchiole
      - alveolar smooth muscle
      - gallbladder smooth muscle
      - urinary bladder urothelium
      - gallbladder serosa
      - thymus trabecula
      - hepatic duct smooth muscle
      - lung mesenchyme
      - lobar bronchus mesenchyme
      - right lung lobar bronchus mesenchyme
      - right lung accessory lobe lobar bronchus mesenchyme
      - right lung cranial lobe lobar bronchus mesenchyme
      - right lung middle lobe lobar bronchus mesenchyme
      - left lung associated mesenchyme
      - right lung associated mesenchyme
      - urogenital sinus epithelium
      - prostate bud
      - thymus lobe
      - left thymus lobe
      - right thymus lobe
      - right lung endothelium
      - right lung cranial lobe endothelium
      - right lung caudal lobe endothelium
      - right lung accessory lobe endothelium
      - left lung endothelium
      - round ligament of liver
      - muscle tissue of prostate
      - prostate gland smooth muscle
      - striated muscle tissue of prostate
      - coagulating gland
      - prostate field
      - ureter luminal urothelium
      - ureter subluminal urothelium
      - prostate luminal epithelium
      - coronary ligament of liver
      - lung endothelium
      - connective tissue of prostate gland
      - subepithelial connective tissue of prostatic gland
      - falciform fat
      - liver blood vessel
      - hepatic vein
      - left hepatic vein
      - right hepatic vein
      - middle hepatic vein
      - accessory hepatic vein
      - hepatic sinusoid
      - hepatic sinusoid of left of lobe of liver
      - caudate lobe hepatic sinusoid
      - hepatic sinusoid of right of lobe of liver
      - quadrate lobe hepatic sinusoid
      - central vein of liver
      - left hepatic artery
      - right hepatic artery
      - intrahepatic branch of portal vein
      - cystic artery
      - capillary system of liver
      - hepatic portal venule
      - prostatic capsule
      - base of prostate
      - mediastinal pleura
      - respiratory primordium mesenchyme
      - hyoidean artery
      - afferent lamellar arteriole
      - efferent lamellar arteriole
      - liver serosa
      - transition zone of prostate
      - peripheral zone of prostate
      - central zone of prostate
      - lobe of lung
      - right lung lobe
      - upper lobe of right lung
      - lower lobe of right lung
      - middle lobe of right lung
      - right lung accessory lobe
      - azygous lobe of lung
      - upper lobe of lung
      - upper lobe of left lung
      - lower lobe of lung
      - lower lobe of left lung
      - left lung lobe
      - middle lobe of lung
      - lung saccule
      - respiratory tube
      - alveolar sac
      - pulmonary alveolar duct
      - right lung alveolar duct
      - left lung alveolar duct
      - bronchus
      - terminal bronchus
      - main bronchus
      - right main bronchus
      - left main bronchus
      - mesobronchus
      - lateroobronchus
      - intrapulmonary bronchus
      - lobar bronchus
      - lobar bronchus of right lung
      - right lung accessory lobe lobar bronchus
      - lobar bronchus of right lung cranial lobe
      - lobar bronchus of right lung caudal lobe
      - lobar bronchus of right lung middle lobe
      - lobar bronchus of left lung
      - lobar bronchus of left lung upper lobe
      - lobar bronchus of left lung lower lobe
      - dorsobronchus
      - segmental bronchus
      - right lung cranial lobe segmental bronchus
      - right lung caudal lobe segmental bronchus
      - right lung accessory lobe segmental bronchus
      - parabronchus
      - ventrobronchus
      - subsegmental bronchus
      - bronchiole
      - terminal bronchiole
      - right lung terminal bronchiole
      - left lung terminal bronchiole
      - respiratory bronchiole
      - right lung respiratory bronchiole
      - left lung respiratory bronchiole
      - right lung bronchiole
      - right lung upper lobe bronchiole
      - right lung accessory lobe bronchiole
      - right lung lower lobe bronchiole
      - right lung middle lobe bronchiole
      - left lung bronchiole
      - left lung lower lobe bronchiole
      - left lung upper lobe bronchiole
      - primary bronchiole
      - lobular bronchiole
      - trachea
      - bronchial mucosa
      - mucosa of main bronchus
      - mucosa of right main bronchus
      - mucosa of left main bronchus
      - mucosa of lobar bronchus
      - mucosa of segmental bronchus
      - head of pancreas
      - lobe of liver
      - right lobe of liver
      - quadrate lobe of liver
      - caudate lobe of liver
      - left lobe of liver
      - liver left lateral lobe
      - liver left medial lobe
      - lobe of thyroid gland
      - right lobe of thyroid gland
      - left lobe of thyroid gland
      - tail of pancreas
      - portal lobule
      - hepatic acinus
      - biliary tree
      - pancreatic acinus
      - portal triad
      - liver parenchyma
      - liver right lobe parenchyma
      - parenchyma of quadrate lobe of liver
      - parenchyma of caudate lobe of liver
      - liver left lobe parenchyma
      - subcapsular region of liver
      - external acoustic meatus
      - muscle of larynx
      - laryngeal extrinsic muscle
      - laryngeal intrinsic muscle
      - cricothyroid muscle
      - inferior pharyngeal constrictor
      - thyro-arytenoid
      - vocalis muscle
      - crico-arytenoid muscle
      - posterior crico-arytenoid
      - lateral crico-arytenoid
      - arytenoid muscle
      - transverse arytenoid
      - oblique arytenoid
      - thyroepiglotticus muscle
      - aryepiglotticus muscle
      - hyoepiglottic muscle
      - isthmus of thyroid gland
      - stapes bone
      - taste bud
      - tongue taste bud
      - integumental taste bud
      - barbel taste bud
      - head taste bud
      - trunk taste bud
      - lip taste bud
      - pharyngeal taste bud
      - mouth roof taste bud
      - palatal taste bud
      - fin taste bud
      - esophageal taste bud
      - oropharynx
      - laryngeal cartilage
      - thyroid cartilage
      - arytenoid cartilage
      - epiglottic cartilage
      - cricoid cartilage
      - cuneiform cartilage
      - ligament of larynx
      - extrinsic ligament of larynx
      - hyoepiglottic ligament
      - cricopharyngeal ligament
      - cricoarytenoid ligament
      - cricotracheal ligament
      - laryngeal intrinsic ligament
      - thyroepiglottic ligament
      - vestibular ligament
      - cricothyroid ligament
      - capsule of thyroid gland
      - parenchyma of thyroid gland
      - distal part of styloid process of temporal bone
      - mucosa of larynx
      - mucosa of vocal fold
      - nasal cavity mucosa
      - olfactory segment of nasal mucosa
      - respiratory segment of nasal mucosa
      - cartilaginous external acoustic tube
      - submucosa of bronchus
      - submucosa of main bronchus
      - submucosa of right main bronchus
      - submucosa of left main bronchus
      - submucosa of lobar bronchus
      - submucosa of segmental bronchus
      - bronchial-associated lymphoid tissue
      - thyroid gland
      - lung
      - right lung
      - left lung
      - liver
      - gallbladder
      - alveolar atrium
      - submucosa of trachea
      - thyroglossal duct
      - alveolus of lung
      - right lung alveolus
      - left lung alveolus
      - lamina propria of bronchus
      - palatine tonsil
      - bile duct
      - extrahepatic bile duct
      - cystic duct
      - common bile duct
      - common hepatic duct
      - right hepatic duct
      - left hepatic duct
      - future common hepatic duct
      - intrahepatic bile duct
      - interlobular bile duct
      - intralobular bile duct
      - intrahepatic part of hepatic duct
      - hepatopancreatic ampulla
      - hepatic duct
      - hilar portion of hepatic duct
      - extrahepatic part of hepatic duct
      - extrahepatic duct
      - glottis
      - stapes base
      - thyroid primordium
      - ultimobranchial body
      - thyroid primordium endoderm
      - oropharyngeal gland
      - lower respiratory tract connective tissue
      - trachea connective tissue
      - trachea elastic tissue
      - trachea non-cartilage connective tissue
      - bronchus connective tissue
      - main bronchus connective tissue
      - bronchus elastic tissue
      - nasopharynx connective tissue
      - larynx connective tissue
      - corniculate cartilage
      - base of arytenoid
      - apex of arytenoid
      - lower respiratory tract cartilage
      - cartilage of bronchus
      - cartilage of main bronchus
      - trachea cartilage
      - carina of trachea
      - pessulus
      - laryngeal vocal fold
      - blood-air barrier
      - styloid process of temporal bone
      - hyoid bone lesser horn
      - biliary ductule
      - endodermal part of digestive tract
      - biliary bud
      - hepatic diverticulum
      - liver bud
      - respiratory primordium epithelium
      - stylohyoid ligament
      - Reichert's cartilage
      - musculature of larynx
      - liver lobule
      - larynx submucosa
      - gallbladder lamina propria
      - larynx mucous gland
      - thyroid gland medulla
      - visceral endoderm
      - anterior visceral endoderm
      - distal visceral endoderm
      - alveolar wall
      - sphincter of hepatopancreatic ampulla
      - submucosa of biliary tree
      - submucosa of cystic duct
      - submucosa of common bile duct
      - submucosa of common hepatic duct
      - submucosa of right hepatic duct
      - submucosa of left hepatic duct
      - submucosa of bronchiole
      - mucosa of biliary tree
      - mucosa of cystic duct
      - mucosa of common bile duct
      - mucosa of common hepatic duct
      - mucosa of right hepatic duct
      - mucosa of left hepatic duct
      - mucosa of nasopharynx
      - mucosa of oropharynx
      - mucosa of gallbladder
      - mucosa of bronchiole
      - mucosa of terminal bronchiole
      - mucosa of respiratory bronchiole
      - mucosa of lobular bronchiole
      - liver papillary process
      - larynx submucosa gland
      - pancreas head parenchyma
      - pancreas tail parenchyma
      - thyroid follicle
      - hepatic cord
      - endo-epithelium
      - lung bud
      - urothelium
      - kidney pelvis urothelium
      - epithelium of gall bladder
      - yolk sac endoderm
      - endoderm of foregut
      - pharyngeal pouch
      - pharyngeal pouch 1
      - pharyngeal pouch 2
      - pharyngeal pouch 3
      - pharyngeal pouch 4
      - pharyngeal pouch 5
      - pharyngeal pouch 6
      - pharyngeal pouches 2-6
      - early pharyngeal endoderm
      - dorsal part of pharyngeal pouch 1
      - ventral part of pharyngeal pouch 1
      - dorsal part of pharyngeal pouch 2
      - ventral part of pharyngeal pouch 2
      - dorsal part of pharyngeal pouch 3
      - ventral part of pharyngeal pouch 3
      - dorsal part of pharyngeal pouch 4
      - ventral part of pharyngeal pouch 4
      - dorsal part of pharyngeal pouch 5
      - ventral part of pharyngeal pouch 5
      - 1st arch maxillary endoderm
      - 1st arch mandibular endoderm
      - endoderm of midgut
      - endoderm of hindgut
      - pharyngeal epithelium
      - epithelium of nasopharynx
      - epithelium of oropharynx
      - thymus primordium
      - epithelium of laryngopharynx
      - tonsil epithelium
      - tonsil crypt
      - pharyngeal ectoderm
      - epithelium of vomeronasal organ
      - pancreatic epithelial bud
      - dorsal pancreatic bud
      - ventral pancreatic bud
      - respiratory tract epithelium
      - upper respiratory tract epithelium
      - nasal cavity epithelium
      - olfactory epithelium
      - nasal cavity respiratory epithelium
      - nasal fin
      - lower respiratory tract epithelium
      - lung epithelium
      - epithelium of bronchiole
      - epithelium of respiratory bronchiole
      - terminal bronchiole epithelium
      - epithelium of lobular bronchiole
      - epithelium of lobar bronchus
      - left lung lobar bronchus epithelium
      - right lung lobar bronchus epitheium
      - epithelium of segmental bronchus
      - epithelium of right lung
      - right lung cranial lobe epithelium
      - right lung caudal lobe epithelium
      - right lung accessory lobe epithelium
      - epithelium of left lung
      - pulmonary alveolus epithelium
      - alveolar primary septum
      - alveolar secondary septum
      - tracheobronchial epithelium
      - epithelium of trachea
      - epithelium of bronchus
      - epithelium of main bronchus
      - terminal bronchus epithelium
      - larynx epithelium
      - bile duct epithelium
      - extrahepatic bile duct epithelium
      - intrahepatic bile duct epithelium
      - inner epithelial layer of tympanic membrane
      - ultimobranchial body epithelium
      - extrahepatic part of biliary bud
      - intrahepatic part of biliary bud
      - epithelium of foregut-midgut junction
      - liver primordium
      - anal membrane endodermal component
      - embryonic cloacal epithelium
      - entire pharyngeal arch endoderm
      - tubotympanic recess epithelium
      - pharyngotympanic tube epithelium
      - tympanic cavity epithelium
      - auditory meatus epithelium
      - outer epithelial layer of tympanic membrane
      - parathyroid epithelium
      - inferior parathyroid epithelium
      - superior parathyroid epithelium
      - thyroid follicle epithelium
      - cloacal epithelium
      - bronchial bud
      - exocrine pancreas epithelium
      - epithelium of pancreatic duct
      - median lingual swelling epithelium
      - lower foregut region endoderm
      - fundus of gallbladder
      - external acoustic meatus osseus part
      - alveolar system
      - left lung alveolar system
      - right lung alveolar system
      - foramen cecum of tongue
      - inferior parathyroid gland
      - basal cell layer of urothelium
      - tracheobronchial tree
      - pancreatic lobule
      - pancreas left lobe
      - pancreas right lobe
      - pancreatic duct
      - ventral pancreatic duct
      - dorsal pancreatic duct
      - gustatory pore
      - nasopharyngeal gland
      - pharyngeal slit
      - thymus primordium endoderm
      - alveolar pore
      - lung parenchyma
      - pulmonary alveolar parenchyma
      - lingula of left lung
      - faveolus
      - syrinx organ
      - membrana tympaniformis
      - membrana tympaniformis lateralis
      - membrana tympaniformis medialis
      - mesenchyme of main bronchus
      - mesenchyme of trachea
      - trachea pre-cartilage rings
      - oronasal membrane
      - dorsal pancreas
      - ventral pancreas
      - pleural sac
      - pulmonary neuroendocrine body
      - spiral valve of cystic duct
      - liver trabecula
      - laryngeal apparatus
      - laryngeal pre-cartilage condensation
      - cricoid pre-cartilage condensation
      - thyroid pre-cartilage condensation
      - arytenoid pre-cartilage condensation
      - arytenoid swellings
      - laryngeal associated mesenchyme
      - stroma of thyroid gland
      - pulmonary lobule
      - secondary pulmonary lobule
      - uncinate process of pancreas
      - cricopharyngeus muscle
      - thyropharyngeus muscle
      - pharyngeal arch derived gill
      - horn of thyroid cartilage
      - superior horn of thyroid cartilage
      - inferior horn of thyroid cartilage
      - gland of nasal mucosa
      - olfactory gland
      - supraorbital gland
      - lateral nasal gland
      - nasal-associated lymphoid tissue
      - pharyngeal tonsil
      - ligament of liver
      - fibroelastic membrane of larynx
      - aryepiglottic fold
      - infundibulum of gallbladder
      - septal organ of Masera
      - bifurcation of trachea
      - tracheobronchial lymph node
      - superior tracheobronchial lymph node
      - inferior tracheobronchial lymph node
      - duct of olfactory gland
      - acinus of olfactory gland
      - upper respiratory conduit
      - olfactory apparatus chamber
      - liver stroma
      - interlobular stroma of liver
      - capsule of liver
      - bronchial lymph node
      - pulmonary part of lymphatic system
      - pulmonary lymphatic vessel
      - mucous gland of lung
      - lung field
      - laryngeal prominence
      - fauces
      - posterior wall of oropharynx
      - neck of gallbladder
      - roof of nasopharynx
      - lateral wall of oropharynx
      - lateral wall of nasopharynx
      - posterior wall of nasopharynx
      - triangular ligament of liver
      - laryngeal ventricle
      - body of gallbladder
      - cartilage of external acoustic meatus
      - wall of gallbladder
      - gill lamella
      - branchiostegal membrane
      - ventral liver lobe
      - extrapancreatic duct
      - bronchial process
      - lateral process of cricoid cartilage
      - esophageal process
      - prominentia apicalis dorsalis
      - prominentia apicalis ventralis
      - articular process
      - post-anal gut
      - metabolic zone of liver
      - hepatic acinus zone 1
      - hepatic acinus zone 3
      - hepatic acinus zone 2
      - liver lobule periportal region
      - liver lobule centrilobular region
      - liver lobule midzonal region
      - liver subserosa
      - ductal plate
      - airway submucosal gland
      - trachea gland
      - bronchus submucosal gland
      - posterior wall of the glottis
      - bronchial submucosal gland ciliated duct
      - tracheal submucosal gland ciliated duct
      - bronchopulmonary segment
      - mesoderm-derived structure
      - serous membrane
      - serosa of urinary bladder
      - serosa of uterus
      - mesometrium
      - parametrium
      - serosa of esophagus
      - mesentery of oesophagus
      - mesentery
      - mesovarium
      - mesentery of heart
      - mesentery of midgut
      - midgut duodenum mesentery
      - mesentery of urinary system
      - mesentery of hindgut
      - gastrointestinal system mesentery
      - mesentery of small intestine
      - mesentery of duodenum
      - foregut duodenum mesentery
      - mesentery of jejunum
      - mesoduodenum
      - mesentery of ileum
      - mesentery of stomach
      - dorsal mesogastrium
      - ventral mesogastrium
      - mesentery of rectum
      - mesentery of colon
      - caecum mesentery
      - peritoneal mesentery
      - mesentery of foregut-midgut junction
      - dorsal mesentery of mesentery of foregut-midgut junction
      - ventral mesentery of mesentery of foregut-midgut junction
      - gut mesentery
      - mesosalpinx
      - serous pericardium
      - peritoneum
      - fold of peritoneum
      - peritoneal vaginal process
      - Douglas' pouch
      - uterovesical pouch
      - ovarian bursa
      - gastrocolic ligament
      - hepatic peritoneum
      - gastrointestinal peritoneum
      - gastrointestinal system serosa
      - serosa of stomach
      - serosa of fundus of stomach
      - serosa of intestine
      - serosa of small intestine
      - serosa of duodenum
      - serosa of jejunum
      - serosa of large intestine
      - serosa of rectum
      - serosa of colon
      - serosa of appendix
      - serosa of infundibulum of uterine tube
      - layer of synovial tissue
      - synovial membrane of synovial joint
      - synovial membrane of synovial tendon sheath
      - serosa of cloaca
      - serosa of fallopian tube
      - wall of synovial tendon sheath
      - ureter
      - right ureter
      - left ureter
      - urethra
      - male urethra
      - female urethra
      - renal glomerulus
      - metanephric glomerulus
      - pronephric glomerulus
      - mesonephric glomerulus
      - mesonephros
      - metanephros
      - adult mammalian kidney
      - trochlea of humerus
      - theca cell layer
      - theca externa
      - theca interna
      - neck of radius
      - amnion
      - major vestibular gland
      - cardiac valve
      - sinoatrial valve
      - atrioventricular valve
      - tricuspid valve
      - mitral valve
      - ventriculo bulbo valve
      - coronary sinus valve
      - valve of inferior vena cava
      - semi-lunar valve
      - aortic valve
      - pulmonary valve
      - heart
      - trochanter
      - greater trochanter
      - lesser trochanter
      - third trochanter
      - fourth trochanter
      - penis
      - vagina
      - lateral vaginal canal
      - median vaginal canal
      - seminal vesicle
      - diaphysis of ulna
      - head of radius
      - diaphysis of radius
      - latissimus dorsi muscle
      - sternocleidomastoid
      - subscapularis muscle
      - adrenal cortex
      - left adrenal gland cortex
      - right adrenal gland cortex
      - adrenal medulla
      - left adrenal gland medulla
      - right adrenal gland medulla
      - spleen lymphoid follicle
      - spleen primary B follicle
      - spleen secondary B follicle
      - marginal zone of spleen
      - adventitia of ureter
      - lamina propria of ureter
      - urinary bladder
      - wall of urinary bladder
      - lateral wall of urinary bladder
      - left lateral wall of urinary bladder
      - right lateral wall of urinary bladder
      - anterior wall of urinary bladder
      - posterior wall of urinary bladder
      - trigone of urinary bladder
      - neck of urinary bladder
      - mucosa of urinary bladder
      - mucosa of trigone of urinary bladder
      - mucosa of neck of urinary bladder
      - lamina propria of urinary bladder
      - trabecula of spleen
      - splenic cord
      - acetabular part of hip bone
      - scrotum
      - epididymis
      - ovarian follicle
      - primary ovarian follicle
      - secondary ovarian follicle
      - tertiary ovarian follicle
      - primordial ovarian follicle
      - mature ovarian follicle
      - corpus albicans
      - atretic follicle of ovary
      - ovary growing follicle
      - ovarian follicle stage I
      - ovarian follicle stage II
      - ovarian follicle stage III
      - postovulatory follicle
      - cumulus oophorus
      - skin of penis
      - skin of prepuce of penis
      - prostatic urethra
      - membranous urethra of male or female
      - female membranous urethra
      - male membranous urethra
      - spongiose part of urethra
      - urethral gland
      - male urethral gland
      - bulbo-urethral gland
      - female urethral gland
      - minor vestibular gland
      - seminiferous tubule of testis
      - vaginal hymen
      - deltoid
      - teres major muscle
      - pectoral muscle
      - pectoralis minor
      - pectoralis major
      - subclavius
      - pectoantebrachialis
      - xiphihumeralis
      - genioglossus muscle
      - intrinsic muscle of tongue
      - superior longitudinal muscle of tongue
      - transverse muscle of tongue
      - vertical muscle of tongue
      - extra-ocular muscle
      - levator palpebrae superioris
      - oculomotor muscle
      - oblique extraocular muscle
      - inferior oblique extraocular muscle
      - superior oblique extraocular muscle
      - rectus extraocular muscle
      - medial rectus extraocular muscle
      - lateral rectus extra-ocular muscle
      - inferior rectus extraocular muscle
      - superior rectus extraocular muscle
      - musculus retractor bulbi
      - musculus levator bulbi
      - carotid body
      - thoracic duct
      - blood vessel
      - head blood vessel
      - internal carotid artery
      - left internal carotid artery
      - right internal carotid artery
      - temporal artery
      - superficial temporal artery
      - deep temporal artery
      - middle temporal artery
      - temporal branch of lateral pretrosal artery
      - anterior temporal artery
      - posterior temporal artery
      - basilar artery
      - posterior cerebral artery
      - facial vein
      - retromandibular vein
      - submental vein
      - temporal vein
      - superficial temporal vein
      - middle temporal vein
      - deep temporal vein
      - central retinal vein
      - choroidal blood vessel
      - spiral modiolar artery
      - artery of upper lip
      - artery of lower lip
      - cerebellar artery
      - superior cerebellar artery
      - anterior inferior cerebellar artery
      - corneal blood vessel
      - retina blood vessel
      - central retinal artery
      - eyelid blood vessel
      - iris blood vessel
      - canal of Schlemm
      - aqueous vein
      - blood vessel of tympanic cavity
      - pharyngeal arch artery
      - pharyngeal arch artery 1
      - pharyngeal arch artery 2
      - pharyngeal arch artery 3
      - pharyngeal arch artery 4
      - pharyngeal arch artery 5
      - pharyngeal arch artery 6
      - ethmoidal artery
      - anterior ethmoidal artery
      - posterior ethmoidal artery
      - hyaloid vessel
      - hyaloid artery
      - hyaloid vein
      - blood-inner ear barrier
      - auricular vein
      - anterior auricular vein
      - posterior auricular vein
      - stapedial artery
      - conjunctival vein
      - angular vein
      - posterior choroidal artery
      - palpebral vein
      - inferior palpebral vein
      - superior palpebral vein
      - supraorbital vein
      - palpebral artery
      - lateral palpebral artery
      - medial palpebral artery
      - paired venous dural sinus
      - transverse sinus
      - sigmoid sinus
      - inferior petrosal sinus
      - marginal venous sinus
      - primitive marginal sinus
      - sphenoparietal sinus
      - labyrinthine artery
      - efferent portion of pharyngeal arch artery
      - afferent portion of pharyngeal arch artery
      - caudal division of the internal carotid artery
      - primordial hindbrain channel
      - cranial division of the internal carotid artery
      - basal communicating artery
      - mid cerebral vein
      - afferent filamental artery
      - concurrent branch afferent branchial artery
      - recurrent branch afferent branchial artery
      - primordial midbrain channel
      - efferent filamental artery
      - primary head sinus
      - posterior cerebral vein
      - dorsal ciliary vein
      - optic vein
      - optic artery
      - median palatocerebral vein
      - palatocerebral vein
      - nasal vein
      - lateral pretrosal artery
      - mandibular artery
      - ethmoidal vein
      - anterior ethmoidal vein
      - posterior ethmoidal vein
      - mental vein
      - deep lingual vein
      - dorsal lingual vein
      - sublingual vein
      - dural artery
      - incisor artery
      - external nasal vein
      - supratrochlear vein
      - transverse nasal root vein
      - inferior anastomotic vein
      - ascending palatine artery
      - submental artery
      - deep lingual artery
      - dorsal lingual artery
      - accessory meningeal artery
      - artery of pterygoid canal
      - descending palatine artery
      - brain blood vessel
      - cerebral vein
      - inferior cerebral vein
      - anterior cerebral vein
      - great cerebral vein
      - superficial cerebral vein
      - superior cerebral vein
      - deep cerebral vein
      - basal vein
      - dorsal cerebral vein
      - internal cerebral vein
      - superficial middle cerebral vein
      - deep middle cerebral vein
      - cerebral blood vessel
      - central artery
      - cerebellar central artery
      - anterior mesencephalic central artery
      - middle mesencephalic central artery
      - posterior mesencephalic central artery
      - dorsal longitudinal vein
      - trans-choroid plexus branch
      - capillary of brain
      - hypophyseal vein
      - neck blood vessel
      - cervical artery
      - superficial cervical artery
      - deep cervical artery
      - ascending cervical artery
      - transverse cervical artery
      - thyrocervical trunk
      - ascending pharyngeal artery
      - esophageal vein
      - deep cervical vein
      - transverse cervical vein
      - respiratory system blood vessel
      - respiratory system venule
      - respiratory system capillary
      - respiratory system arterial blood vessel
      - respiratory system artery
      - filamental artery
      - percardiacophrenic artery
      - respiratory system arteriole
      - vasculature of respiratory integument
      - arterial blood vessel
      - aorta
      - ventral aorta
      - common dorsal aorta
      - left dorsal aorta
      - right dorsal aorta
      - dorsal aorta
      - larval aorta
      - artery
      - cavernous artery
      - ovarian artery
      - uterine artery
      - left gastric artery
      - hepatic artery
      - proper hepatic artery
      - splenic artery
      - middle colic artery
      - ileocolic artery
      - umbilical artery
      - left umbilical artery
      - right umbilical artery
      - iliolumbar artery
      - obturator artery
      - superior gluteal artery
      - deep femoral artery
      - deep external pudendal artery
      - medial circumflex femoral artery
      - perineal artery
      - sural artery
      - axillary artery
      - thoraco-acromial artery
      - lateral thoracic artery
      - subscapular artery
      - brachial artery
      - deep brachial artery
      - radial artery
      - ulnar artery
      - dorsalis pedis artery
      - medial plantar artery
      - kidney arcuate artery
      - medial tarsal artery
      - sublingual artery
      - maxillary artery
      - mental artery
      - buccal artery
      - ophthalmic artery
      - lacrimal artery
      - mesencephalic artery
      - right pulmonary artery
      - left pulmonary artery
      - thoracodorsal artery
      - pulmonary artery
      - segmental pulmonary artery
      - apicoposterior segmental artery
      - femoral artery
      - truncus arteriosus
      - median artery
      - popliteal artery
      - pulmonary trunk
      - dorsal metacarpal artery
      - intersomitic artery
      - caudal artery
      - thoracic cavity artery
      - meningeal artery
      - posterior meningeal artery
      - middle meningeal artery
      - anterior meningeal artery
      - thyroid artery
      - inferior thyroid artery
      - superior thyroid artery
      - middle thyroid artery
      - digital artery
      - forelimb digital artery
      - palmar digital artery
      - common palmar digital artery
      - proper palmar digital artery
      - dorsal digital artery of manus
      - forelimb common dorsal digital arteries
      - median dorsal digital artery for digit 1
      - lateral dorsal digital artery for digit 5
      - forelimb proper dorsal digital arteries
      - hindlimb digital artery
      - plantar digital artery
      - common plantar digital arteries
      - proper plantar digital artery
      - dorsal digital artery of pes
      - hindlimb common dorsal digital arteries
      - hindlimb proper dorsal digital arteries
      - dorsal digital artery
      - systemic artery
      - inferior pancreaticoduodenal artery
      - dorsal artery of penis
      - brachiocephalic artery
      - common carotid artery plus branches
      - right common carotid artery plus branches
      - left common carotid artery plus branches
      - carotid sinus
      - subclavian artery
      - right subclavian artery
      - left subclavian artery
      - subcostal artery
      - coronary artery
      - right coronary artery
      - left coronary artery
      - conus artery
      - posterior communicating artery
      - bronchial artery
      - phrenic artery
      - musculo-phrenic artery
      - inferior phrenic artery
      - superior phrenic artery
      - internal thoracic artery
      - spinal artery
      - vertebral artery
      - anterior spinal artery
      - posterior spinal artery
      - ureteric segment of renal artery
      - right testicular artery
      - left testicular artery
      - superior vesical artery
      - circle of Willis
      - cerebral artery
      - anterior cerebral artery
      - middle cerebral artery
      - carotid artery segment
      - external carotid artery
      - trunk of common carotid artery
      - branch of internal carotid artery
      - common hepatic artery
      - ductus arteriosus
      - iliac artery
      - common iliac artery
      - right common iliac artery
      - left common iliac artery
      - external iliac artery
      - internal iliac artery
      - intercostal artery
      - dorsal intercostal artery
      - anterior intercostal artery
      - seventh anterior intercostal artery
      - eighth anterior intercostal artery
      - ninth anterior intercostal artery
      - first anterior intercostal artery
      - second anterior intercostal artery
      - third anterior intercostal artery
      - fourth anterior intercostal artery
      - fifth anterior intercostal artery
      - sixth anterior intercostal artery
      - posterior intercostal artery
      - segmental intercostal artery
      - ileal artery
      - anterior communicating artery
      - superficial external pudendal artery
      - penile bulb artery
      - common penile artery
      - deep artery of penis
      - deep circumflex iliac artery
      - posterior inferior cerebellar artery
      - nutrient foramen artery
      - carotid duct
      - abdominal aorta artery
      - renal artery
      - right renal artery
      - left renal artery
      - celiac artery
      - median sacral artery
      - mesenteric artery
      - superior mesenteric artery
      - inferior mesenteric artery
      - anterior mesenteric artery
      - posterior mesenteric artery
      - lumbar artery
      - genital artery
      - testicular artery
      - spermatic artery
      - middle suprarenal artery
      - lateral dorsal aorta canal
      - superficial epigastric artery
      - superior rectal artery
      - circumflex branch of left coronary artery
      - esophageal artery
      - mammary branch of internal thoracic artery
      - thyrocervical artery
      - suprascapular artery
      - future internal carotid artery
      - left channel of ventral aorta
      - right channel of ventral aorta
      - muscular artery
      - oviduct artery
      - renal afferent arteriole
      - infraorbital artery
      - costo-cervical trunk
      - deferent duct artery
      - renal cortex artery
      - aortic sac
      - hyoid artery
      - suprarenal artery
      - superior suprarenal artery
      - inferior suprarenal artery
      - vitelline artery
      - communicating artery
      - epigastric artery
      - inferior epigastric artery
      - superior epigastric artery
      - greater palatine artery
      - pudendal artery
      - internal pudendal artery
      - external pudendal artery
      - superior external pudendal artery
      - tibial artery
      - anterior tibial artery
      - posterior tibial artery
      - caroticotympanic artery
      - principal artery to limb
      - principal artery to forelimb
      - principal artery to hindlimb
      - deep artery of clitoris
      - dorsal artery of clitoris
      - gastroepiploic artery
      - right gastroepiploic artery
      - left gastroepiploic artery
      - iliac circumflex artery
      - superficial circumflex iliac artery
      - vesical artery
      - inferior vesical artery
      - middle vesical artery
      - alveolar artery
      - inferior alveolar artery
      - auricular artery
      - posterior auricular artery
      - deep auricular artery
      - artery of lip
      - pancreaticoduodenal artery
      - superior pancreaticoduodenal artery
      - interlobar artery
      - gastroduodenal artery
      - spleen trabecular artery
      - ocular angle artery
      - extraembryonic portion of umbilical artery
      - left extraembryonic umbilical artery
      - right extraembryonic umbilical artery
      - embryo portion of umbilical artery
      - penicillar arteriole
      - choroidal artery
      - anterior choroidal artery
      - masseteric artery
      - transverse facial artery
      - terminal branch of ophthalmic artery
      - dorsal nasal artery
      - frontal artery
      - zygomatico-orbital artery
      - ophthalmotemporal branch of external ophthalmic artery
      - supraorbital artery
      - uterine spiral artery
      - helicine artery
      - helicine branch of uterine artery
      - helicine artery of penis
      - saphenous artery
      - afferent spiracular artery
      - efferent spiracular artery
      - thymic artery
      - cervical thymic artery
      - inferior superficial cervical thymic artery
      - superior superficial cervical thymic artery
      - jejunal artery
      - posterior superior alveolar artery
      - cremasteric artery
      - vestibular bulb artery
      - arcuate artery of foot
      - rectal artery
      - inferior rectal artery
      - sigmoid artery
      - calcarine artery
      - plantar metatarsal artery
      - superior thoracic artery
      - branch of posterior tibial artery
      - peroneal artery
      - branch of ulnar artery
      - branch of vertebral artery
      - branch of middle cerebral artery
      - posterior parietal artery
      - anterior parietal artery
      - branch of brachial artery
      - branch of anterior cerebral artery
      - branch of left coronary artery
      - left anterior descending artery
      - branch of external carotid artery
      - lingual artery
      - facial artery
      - occipital artery
      - hypophysial artery
      - superior hypophysial artery
      - inferior hypophysial artery
      - branch of basilar artery
      - branch of posterior cerebral artery
      - colic artery
      - appendicular artery
      - pancreatic artery
      - posterior labial artery
      - urethral artery
      - left anterior segmental artery
      - celiacomesenteric artery
      - hypobranchial artery
      - lateral dorsal aorta
      - presumptive mesencephalic artery
      - suprabranchial artery
      - pseudobranchial artery
      - opercular artery
      - supraintestinal artery
      - primitive prosencephalic artery
      - prosencephalic artery
      - palatocerebral artery
      - communicating vessel palatocerebral artery
      - nasal ciliary artery
      - dorsal branch nasal ciliary artery
      - ventral branch nasal ciliary artery
      - metencephalic artery
      - nasal artery
      - swim bladder artery
      - posterior palatine artery
      - cutaneus artery
      - coeliaco-mesenteric artery
      - duodeno-pancreatic artery
      - duodeno-hepatic artery
      - left colic artery
      - right colic artery
      - lymph node artery
      - artery of appendix
      - placental artery
      - atrioventricular nodal artery
      - septal perforating artery
      - posterolateral artery
      - pericardial artery
      - anterior humeral circumflex artery
      - posterior humeral circumflex artery
      - arteriole
      - renal efferent arteriole
      - splenic arteriole
      - spleen central arteriole
      - juxtaglomerular arteriole
      - small intestine arteriole
      - arteriole of anorectum
      - arteriole of colon
      - arteriole of appendix
      - arteriole of lymph node
      - medullary arteriole of lymph node
      - kidney arterial blood vessel
      - interlobular artery
      - gastrico-linealis
      - trunk blood vessel
      - common cardinal vein
      - right common cardinal vein
      - left common cardinal vein
      - posterior cardinal vein
      - right posterior cardinal vein
      - left posterior cardinal vein
      - thoracic segment blood vessel
      - heart blood vessel
      - cardiac vein
      - great vein of heart
      - middle cardiac vein
      - small cardiac vein
      - coronary sinus
      - remnant of left anterior vena cava
      - coronary capillary
      - hypobranchial vessel
      - chest blood vessel
      - thoracic vein
      - internal thoracic vein
      - lateral thoracic vein
      - external thoracic vein
      - supreme intercostal vein
      - abdominal segment blood vessel
      - abdomen blood vessel
      - kidney blood vessel
      - kidney capillary
      - glomerular capillary
      - metanephric glomerular capillary
      - mesonephric glomerular capillary
      - pronephric glomerular capillary
      - peritubular capillary
      - outer renal medulla peritubular capillary
      - renal cortex peritubular capillary
      - renal venous blood vessel
      - kidney arcuate vein
      - outer renal medulla vasa recta
      - inner renal medulla vasa recta
      - renal interlobular vein
      - renal cortex vein
      - splenic sinusoid
      - spleen venous sinus
      - vein of abdomen
      - spleen trabecular vein
      - paraumbilical vein
      - pelvis blood vessel
      - ureteric vein
      - pudendal vein
      - internal pudendal vein
      - external pudendal vein
      - inferior external pudendal vein
      - superior external pudendal vein
      - deep external pudendal vein
      - superficial external pudendal vein
      - lateral sacral vein
      - prostatic venule
      - lumbar vein
      - gastric vein
      - left gastric vein
      - right gastric vein
      - renal portal vein
      - dorsal longitudinal anastomotic vessel
      - parachordal vessel
      - supraintestinal vein
      - thoracic cavity blood vessel
      - thoracic cavity vein
      - vena cava
      - inferior vena cava
      - anterior vena cava
      - tail blood vessel
      - tail vein
      - caudal vein
      - posterior caudal vein
      - vasa vasorum
      - venous blood vessel
      - vein
      - axillary vein
      - subcostal vein
      - left subcostal vein
      - right subcostal vein
      - renal vein
      - right renal vein
      - left renal vein
      - vasa recta
      - testicular vein
      - right testicular vein
      - left testicular vein
      - ovarian vein
      - right ovarian vein
      - left ovarian vein
      - suprarenal vein
      - right suprarenal vein
      - left suprarenal vein
      - vaginal vein
      - iliolumbar vein
      - obturator vein
      - femoral vein
      - perineal vein
      - brachial vein
      - subscapular vein
      - popliteal vein
      - lateral marginal vein
      - dorsal metatarsal vein
      - medial marginal vein
      - vein of hindlimb zeugopod
      - soleal vein
      - gastrocnemius vein
      - subclavian vein
      - vertebral vein
      - pericardiacophrenic vein
      - thymic vein
      - bronchial vein
      - azygos vein
      - transverse facial vein
      - maxillary vein
      - cerebellar vein
      - superior cerebellar vein
      - inferior cerebellar vein
      - masseteric vein
      - pulmonary vein
      - left pulmonary vein
      - right pulmonary vein
      - intersegmental pulmonary vein
      - portal vein
      - pancreatic tributary of splenic vein
      - pancreaticoduodenal vein
      - inferior pancreaticoduodenal vein
      - superior pancreaticoduodenal vein
      - jejunal vein
      - ileal vein
      - ileocolic vein
      - middle colic vein
      - hepatic portal vein
      - extrahepatic branch of portal vein
      - left colic vein
      - right colic vein
      - umbilical vein
      - left umbilical vein
      - right umbilical vein
      - ductus venosus
      - thoracodorsal vein
      - cutaneous vein
      - vesical vein
      - inferior vesical vein
      - superior vesical vein
      - respiratory system venous blood vessel
      - vein of clitoris
      - deep dorsal vein of clitoris
      - vein of trabecular bone
      - brachiocephalic vein
      - splenic vein
      - gonadal vein
      - cardinal vein
      - anterior cardinal vein
      - left anterior cardinal vein
      - right anterior cardinal vein
      - digital vein
      - forelimb digital vein
      - common palmar digital vein
      - proper palmar digital vein
      - palmar digital vein
      - superficial palmar arch
      - hindlimb digital vein
      - plantar digital vein
      - common plantar digital vein
      - proper plantar digital vein
      - medial plantar digital vein
      - naso-frontal vein
      - jugular vein
      - external jugular vein
      - anterior jugular vein
      - internal jugular vein
      - deferent duct vein
      - iliac vein
      - common iliac vein
      - external iliac vein
      - internal iliac vein
      - mesenteric vein
      - superior mesenteric vein
      - inferior mesenteric vein
      - caudal humeral circumflex vein
      - subcardinal vein
      - right subcardinal vein
      - left subcardinal vein
      - epigastric vein
      - inferior epigastric vein
      - superior epigastric vein
      - superficial epigastric vein
      - prinicipal vein of limb
      - principal vein of forelimb
      - principal vein of hindlimb
      - lingual vein
      - hemiazygos vein
      - accessory hemiazygos vein
      - spinal vein
      - median sacral vein
      - left anterior vena cava
      - right anterior vena cava
      - intersomitic vein
      - dorsal venous arch
      - interlobar vein
      - nutrient foramen vein
      - mesencephalic vein
      - tibial vein
      - anterior tibial vein
      - posterior tibial vein
      - subintestinal vein
      - phrenic vein
      - inferior phrenic vein
      - musculo-phrenic vein
      - superior phrenic vein
      - intercostal vein
      - superior intercostal vein
      - left superior intercostal vein
      - right superior intercostal vein
      - posterior intercostal vein
      - anterior intercostal vein
      - vein of lip
      - vein of upper lip
      - vein of lower lip
      - systemic vein
      - vitelline vein
      - left vitelline vein
      - right vitelline vein
      - supracardinal vein
      - left supracardinal vein
      - right supracardinal vein
      - craniocervical region vein
      - primary head vein
      - ophthalmic vein
      - superior ophthalmic vein
      - inferior ophthalmic vein
      - vein of genicular venous plexus
      - extraembryonic umbilical vein
      - left extraembryonic umbilical vein
      - right extraembryonic umbilical vein
      - embryo portion of umbilical vein
      - internal mammary vein
      - thyroid vein
      - inferior thyroid vein
      - superior thyroid vein
      - middle thyroid vein
      - meningeal vein
      - lacrimal vein
      - medial circumflex femoral vein
      - posterior external jugular vein
      - cystic vein
      - uveal vein
      - posterior ciliary vein
      - superficial vein
      - cephalic vein
      - basilic vein
      - median basilic vein
      - saphenous vein
      - great saphenous vein
      - small saphenous vein
      - accessory saphenous vein
      - medial saphenous vein
      - lateral saphenous vein
      - deep vein
      - deep circumflex iliac vein
      - deep dorsal vein of penis
      - deep facial vein
      - parotid vein
      - anterior facial vein
      - vein of vestibular aqueduct
      - vulval vein
      - pelvic vein
      - tributary of central retinal vein
      - accessory vertebral vein
      - anterior vertebral vein
      - suprascapular vein
      - superior laryngeal vein
      - sigmoid vein
      - prepyloric vein
      - pubic vein
      - penile bulb vein
      - urethral vein
      - vestibular bulb vein
      - dorsal vein of penis
      - superficial dorsal vein of penis
      - median axial vein
      - pectoral vein
      - postcaval vein
      - precaval vein
      - lateral vein
      - cutaneus magnus
      - ventral abdominal vein
      - Jacobson's vein
      - oviducal vein
      - lymph node vein
      - vein of appendix
      - placental vein
      - middle hemorrhoidal vein
      - uterine vein
      - lateral femoral circumflex vein
      - basivertebral vein
      - circumflex humeral vein
      - thoracoacromial vein
      - superficial iliac circumflex vein
      - fibular vein
      - radial vein
      - ulnar vein
      - intervertebral vein
      - venule
      - postcapillary venule
      - high endothelial venule
      - high endothelial venule of lymph node
      - high endothelial venule of appendix
      - high endothelial venule of small intestine Peyer's patch
      - small intestine venule
      - venule of anorectum
      - venule of appendix
      - venule of lymph node
      - medullary venule of lymph node
      - venule of colon
      - venous sinus
      - venous dural sinus
      - cavernous sinus
      - unpaired venous dural sinus
      - tentorial sinus
      - sagittal sinus
      - superior sagittal sinus
      - inferior sagittal sinus
      - primitive superior sagittal sinus
      - back blood vessel
      - vitelline blood vessel
      - appendage blood vessel
      - limb blood vessel
      - forelimb blood vessel
      - arm blood vessel
      - lower arm blood vessel
      - upper arm blood vessel
      - manus blood vessel
      - manual digit blood vessel
      - hindlimb blood vessel
      - leg blood vessel
      - upper leg blood vessel
      - lower leg blood vessel
      - pes blood vessel
      - pedal digit blood vessel
      - pectoral appendage blood vessel
      - caudal fin blood vessel
      - umbilical blood vessel
      - great vessel of heart
      - intersomitic vessel
      - endometrial blood vessel
      - auricular blood vessel
      - placenta blood vessel
      - placental labyrinth blood vessel
      - chorionic plate blood vessel
      - chorionic stem villous blood vessel
      - chorionic terminal villous capillary
      - penis blood vessel
      - blood microvessel
      - capillary
      - continuous capillary
      - fenestrated capillary
      - sinusoid
      - capillary of anorectum
      - capillary of colon
      - capillary of small intestine
      - bone marrow microvessel
      - placenta
      - diffuse placenta
      - cotyledonary placenta
      - zonary placenta
      - discoid placenta
      - epitheliochorial placenta
      - endotheliochorial placenta
      - hemochorial placenta
      - adrenal gland capsule
      - urachus
      - hypodermis
      - pronephros
      - subcutaneous adipose tissue
      - blubber
      - panniculus adiposus
      - subcutaneous abdominal adipose tissue
      - nucleus pulposus
      - mesangium
      - glomerular mesangium
      - metanephric glomerular mesangium
      - mesonephric glomerular mesangium
      - extraglomerular mesangium
      - lamina propria of urethra
      - lamina propria of prostatic urethra
      - notochord
      - post-embryonic notochord
      - descending thoracic aorta
      - epicardium
      - epicardium of ventricle
      - bone marrow
      - yellow bone marrow
      - red bone marrow
      - red bone marrow of iliac crest
      - red bone marrow of sternum
      - cranial muscle
      - muscle of auditory ossicle
      - stapedius muscle
      - tensor tympani
      - styloauricular muscle
      - interscutular muscle
      - jaw muscle
      - masticatory muscle
      - masseter muscle
      - temporalis muscle
      - pterygoid muscle
      - medial pterygoid muscle
      - lateral pterygoid muscle
      - depressor mandibulae muscle
      - adductor mandibulae
      - levator palatoquadrati
      - preorbitalis muscle
      - spiracularis muscle
      - levator arcus palatini
      - dilatator operculi
      - constrictor dorsalis
      - quadrato-ethmoid ligament
      - levator mandibulae externus
      - levator mandibulae longus
      - levator mandibulae articularis
      - levator mandibulae lateralis
      - levator mandibulae externus superficialis
      - levator mandibulae externus profundus
      - levator quadrati
      - interhyoideus posterior
      - submentalis
      - cranial or facial muscle
      - facial muscle
      - levator labii superioris
      - depressor labii inferioris
      - buccinator muscle
      - platysma
      - nasal muscle
      - procerus
      - depressor septi nasi
      - nasalis muscle
      - depressor supercilii
      - levator labii superioris alaeque nasi
      - levator anguli oris
      - mentalis muscle
      - depressor anguli oris muscle
      - risorius muscle
      - transversus menti muscle
      - zygomaticus muscle
      - zygomaticus major muscle
      - zygomaticus minor muscle
      - orbicularis oris muscle
      - posterior digastric muscle
      - protractor operculi
      - retractor tentaculi
      - hypobranchial muscle
      - retractor posttemporalis
      - auditory muscles
      - hyobranchial muscle
      - constrictor laryngis externus
      - dilatator laryngis
      - constrictor laryngis anterior
      - cephalodorsosubpharyngeus
      - levator bulbi
      - rectus cervicis
      - subhyoideus
      - subarcualis rectus I
      - narial muscles
      - trapezius muscle
      - clavotrapezius muscle
      - acromiotrapezius muscle
      - spinotrapezius muscle
      - rectus abdominis muscle
      - muscle tissue
      - smooth muscle tissue
      - arrector muscle of hair
      - arrector pili muscle of vibrissa
      - smooth muscle of esophagus
      - esophagus muscularis mucosa
      - lower esophagus muscularis mucosa
      - smooth muscle of eye
      - ciliary muscle
      - iris smooth muscle
      - sphincter pupillae
      - dilatator pupillae
      - superior tarsal muscle
      - inferior tarsal muscle
      - urethra smooth muscle layer
      - vagina smooth muscle
      - respiratory system smooth muscle
      - respiratory system lymphatic vessel smooth muscle
      - respiratory system blood vessel smooth muscle
      - respiratory system arterial smooth muscle
      - gastrointestinal system smooth muscle
      - intestine smooth muscle
      - muscularis mucosae of intestine
      - muscularis mucosae of small intestine
      - muscularis mucosae of duodenum
      - muscularis mucosae of jejunum
      - muscularis mucosae of large intestine
      - muscularis mucosae of colon
      - muscularis mucosae of rectum
      - muscularis mucosae of appendix
      - large intestine smooth muscle
      - rectum smooth muscle tissue
      - small intestine smooth muscle
      - intestinal mucosal muscle
      - stomach smooth muscle
      - muscularis mucosae of stomach
      - muscularis mucosae of fundus of stomach
      - gizzard smooth muscle
      - muscularis mucosa
      - urinary bladder muscularis mucosa
      - muscularis mucosa of fundus of urinary bladder
      - esophagogastric junction muscularis mucosa
      - kidney pelvis smooth muscle
      - urinary bladder smooth muscle
      - urinary bladder detrusor smooth muscle
      - urinary bladder trigone smooth muscle
      - urinary bladder neck smooth muscle
      - anal region smooth muscle
      - internal anal sphincter
      - anococcygeus muscle
      - perineal body smooth muscle muscle tissue
      - lymphatic vessel smooth muscle
      - mammary gland smooth muscle
      - blood vessel smooth muscle
      - artery smooth muscle tissue
      - iliac artery smooth muscle tissue
      - aorta smooth muscle tissue
      - thoracic aorta smooth muscle tissue
      - arteriole smooth muscle
      - venous system smooth muscle
      - respiratory system venous smooth muscle
      - iliac vein smooth muscle tissue
      - saphenous vein smooth muscle tissue
      - spleen smooth muscle
      - oviduct smooth muscle
      - outflow tract smooth muscle
      - arterial system smooth muscle
      - epididymis smooth muscle
      - metanephric smooth muscle tissue
      - mesonephric smooth muscle tissue
      - clitoral smooth muscle
      - ureter smooth muscle
      - umbilical smooth muscle
      - smooth muscle tissue layer of ejaculatory duct
      - smooth muscle layer in fatty layer of subcutaneous tissue
      - enteric circular muscle
      - visceral smooth muscle tissue
      - striated muscle tissue
      - skeletal muscle tissue
      - skeletal muscle tissue of eye
      - skeletal muscle tissue of orbicularis oculi
      - skeletal muscle tissue of levator palpebrae superioris
      - hypaxial myotome region
      - hypaxial region somite 11
      - hypaxial region somite 14
      - hypaxial region somite 17
      - hypaxial region somite 2
      - hypaxial region somite 22
      - hypaxial region somite 25
      - hypaxial region somite 28
      - hypaxial region somite 30
      - hypaxial region somite 6
      - hypaxial region somite 9
      - hypaxial region somite 1
      - hypaxial region somite 12
      - hypaxial region somite 15
      - hypaxial region somite 18
      - hypaxial region somite 20
      - hypaxial region somite 23
      - hypaxial region somite 26
      - hypaxial region somite 29
      - hypaxial region somite 4
      - hypaxial region somite 7
      - hypaxial region somite 10
      - hypaxial region somite 13
      - hypaxial region somite 16
      - hypaxial region somite 19
      - hypaxial region somite 21
      - hypaxial region somite 24
      - hypaxial region somite 27
      - hypaxial region somite 3
      - hypaxial region somite 5
      - hypaxial region somite 8
      - skeletal muscle tissue of trunk
      - external anal sphincter
      - skeletal muscle tissue of diaphragm
      - skeletal muscle tissue of iliacus
      - skeletal muscle tissue of gluteus maximus
      - skeletal muscle tissue of pectoralis major
      - skeletal muscle tissue of rectus abdominis
      - skeletal muscle tissue of internal intercostal muscle
      - skeletal muscle tissue of transversus thoracis
      - esophagus skeletal muscle
      - epaxial myotome region
      - epaxial region somite 27
      - epaxial region somite 3
      - epaxial region somite 11
      - epaxial region somite 5
      - epaxial region somite 14
      - epaxial region somite 17
      - epaxial region somite 2
      - epaxial region somite 22
      - epaxial region somite 25
      - epaxial region somite 28
      - epaxial region somite 30
      - epaxial region somite 6
      - epaxial region somite 9
      - epaxial region somite 8
      - epaxial region somite 1
      - epaxial region somite 12
      - epaxial region somite 15
      - epaxial region somite 18
      - epaxial region somite 20
      - epaxial region somite 23
      - epaxial region somite 26
      - epaxial region somite 29
      - epaxial region somite 4
      - epaxial region somite 7
      - epaxial region somite 10
      - epaxial region somite 13
      - epaxial region somite 16
      - epaxial region somite 19
      - epaxial region somite 21
      - epaxial region somite 24
      - skeletal muscle fiber triad
      - skeletal muscle tissue of quadriceps femoris
      - skeletal muscle tissue of tibialis anterior
      - skeletal muscle tissue of deltoid
      - skeletal muscle tissue of teres major
      - skeletal muscle tissue of biceps brachii
      - skeletal muscle tissue of digastric
      - skeletal muscle tissue of mylohyoid
      - skeletal muscle tissue of masseter
      - skeletal muscle tissue of temporalis
      - skeletal muscle tissue of trapezius
      - skeletal muscle tissue of supraspinatus
      - urethra skeletal muscle tissue
      - respiratory system skeletal muscle
      - skeletal muscle tissue of pharynx
      - anal region skeletal muscle
      - lip skeletal muscle
      - slow muscle tissue
      - fast muscle tissue
      - pectoral girdle and thoracic body wall skeletal muscle
      - erector muscle
      - dorsal erector muscle
      - anal erector
      - depressor muscle
      - dorsal depressor muscle
      - anal depressor
      - inclinator muscle
      - anal inclinator
      - dorsal inclinator muscle
      - musculotendinous bundle
      - pulmonary myocardium
      - hypoglossal cord
      - muscularis orbicularis
      - visceral striated muscle tissue
      - cardiac muscle tissue
      - cardiac muscle tissue of cardiac septum
      - cardiac muscle tissue of interventricular septum
      - cardiac muscle tissue of interatrial septum
      - atrioventricular node
      - cardiac muscle tissue of myocardium
      - conducting system of heart
      - central cardiac conduction system
      - peripheral cardiac conduction system
      - cardiac muscle tissue of atrium
      - cardiac muscle of auricular region
      - cardiac muscle tissue of right auricle
      - cardiac muscle tissue of left auricle
      - cardiac muscle of right atrium
      - sinoatrial node
      - cardiac muscle of left atrium
      - Bachmann's bundle
      - internodal tract
      - anterior internodal tract
      - middle internodal tract
      - posterior internodal tract
      - cardiac muscle tissue of ventricle
      - bundle of His
      - cardiac Purkinje fiber
      - cardiac muscle of right ventricle
      - cardiac muscle tissue of trabecula carnea of right ventricle
      - cardiac muscle of left ventricle
      - cardiac muscle tissue of trabecula carnea of left ventricle
      - trabecula carnea cardiac muscle tissue
      - His-Purkinje system
      - cardiac muscle tissue of papillary muscle
      - left bundle branch
      - right bundle branch
      - Purkinje fiber network
      - conducting tissue of heart
      - visceral transversely striated muscle tissue
      - visceral obliquely striated muscle tissue
      - interventricular septum muscular part
      - cutaneous muscle
      - cutaneous trunci muscle
      - levator nasolabialis muscle
      - ceratoglossus
      - facial modiolus
      - chondroglossus muscle
      - muscle tissue of terminal part of digestive tract
      - tonsillar pillar
      - visceral muscle tissue
      - clitoris
      - orbitosphenoid
      - papillary muscle of heart
      - papillary muscle of right ventricle
      - papillary muscle of left ventricle
      - deltopectoral crest
      - mesenteric lymph node
      - intermediate mesenteric lymph node
      - intermediate jejunal lymph node
      - intermediate ileal lymph node
      - juxta-arterial mesenteric lymph node
      - juxta-arterial jejunal lymph node
      - juxta-arterial ileal lymph node
      - ileal lymph node
      - jejunal lymph node
      - juxta-intestinal mesenteric lymph node
      - ileocecal lymph node
      - trabecula carnea
      - trabecula carnea of right ventricle
      - trabecula carnea of left ventricle
      - trabecula carnea of atrium
      - corpus luteum
      - floor plate
      - rhombomere floor plate
      - rhombomere 1 floor plate
      - rhombomere 2 floor plate
      - rhombomere 3 floor plate
      - rhombomere 4 floor plate
      - rhombomere 5 floor plate
      - rhombomere 6 floor plate
      - rhombomere 7 floor plate
      - rhombomere 8 floor plate
      - floor plate neural rod
      - lateral plate mesoderm
      - dorsal lateral plate region
      - chorion membrane
      - neural lobe of neurohypophysis
      - metanephric mesenchyme
      - floor plate of neural tube
      - floor plate of midbrain
      - floor plate of telencephalon
      - floor plate of diencephalon
      - floor plate of metencephalon
      - floor plate of medulla oblongata
      - floor plate spinal cord region
      - mesenchyme of umbilical cord
      - connecting stalk mesoderm
      - vagina sebaceous gland
      - pes connective tissue
      - pedal digit connective tissue
      - ankle connective tissue
      - manus connective tissue
      - wrist connective tissue
      - tendon of palmaris longus
      - manual digit connective tissue
      - cortex of manus bone
      - heart elastic tissue
      - blood vessel elastic tissue
      - aorta elastic tissue
      - blood vessel internal elastic membrane
      - blood vessel external elastic membrane
      - omentum
      - lesser omentum
      - greater omentum
      - pubic symphysis
      - sinus of Valsalva
      - urethra muscle tissue
      - urethral sphincter
      - internal urethral sphincter
      - external urethral sphincter
      - male external urethral sphincter
      - female external urethral sphincter
      - fallopian tube
      - right fallopian tube
      - left fallopian tube
      - Mullerian duct
      - bursal plica
      - bursal follicle
      - cardiac jelly
      - atrium cardiac jelly
      - ventricle cardiac jelly
      - outflow tract cardiac jelly
      - placenta labyrinth
      - rete testis
      - placenta junctional zone
      - upper part of vagina
      - labium minora
      - spongiotrophoblast layer
      - chorionic plate
      - podocyte slit diaphragm
      - podocyte slit junction
      - labium majora
      - tibial plateaux
      - cortex of humerus
      - primary heart field
      - outflow tract
      - outflow tract of ventricle
      - outflow part of right ventricle
      - outflow part of left ventricle
      - outflow tract aortic component
      - outflow tract pulmonary component
      - outflow tract of atrium
      - outflow part of right atrium
      - outflow part of left atrium
      - cardiac chamber
      - sinus venosus
      - cardiac atrium
      - right cardiac atrium
      - left cardiac atrium
      - cardiac ventricle
      - heart right ventricle
      - heart left ventricle
      - conus arteriosus
      - bulbus arteriosus
      - left cardiac chamber
      - right cardiac chamber
      - branchiomeric muscle
      - levator arcuum muscle
      - hemopoietic organ
      - Leydig's organ
      - periarterial lymphatic sheath
      - spleen
      - bursa of Fabricius
      - interrenal gland
      - head kidney
      - supraneural body
      - thymoid
      - epigonal organ
      - haemal node
      - proximal convoluted tubule segment 1
      - metanephric S1
      - proximal convoluted tubule segment 2
      - outflow tract pericardium
      - cardiac skeleton
      - gubernaculum (male or female)
      - gubernaculum testis
      - gubernaculum (female)
      - caput epididymis
      - corpus epididymis
      - cauda epididymis
      - bone of free limb or fin
      - limb bone
      - hindlimb bone
      - hindlimb long bone
      - tibia
      - femur
      - fibula
      - metatarsal bone
      - metatarsal bone of digit 1
      - metatarsal bone of digit 2
      - metatarsal bone of digit 3
      - metatarsal bone of digit 4
      - metatarsal bone of digit 5
      - fused metatarsal bones 3 and 4
      - fused metatarsal bones 2-4
      - metatarsal bone of digit 6
      - metatarsal bone of digit 7
      - metatarsal bone of digit 8
      - phalanx of pes
      - pedal digit 1 phalanx
      - distal phalanx of pedal digit 1
      - proximal phalanx of pedal digit 1
      - pedal digit 2 phalanx
      - distal phalanx of pedal digit 2
      - middle phalanx of pedal digit 2
      - proximal phalanx of pedal digit 2
      - pedal digit 3 phalanx
      - distal phalanx of pedal digit 3
      - middle phalanx of pedal digit 3
      - proximal phalanx of pedal digit 3
      - pedal digit 4 phalanx
      - distal phalanx of pedal digit 4
      - middle phalanx of pedal digit 4
      - proximal phalanx of pedal digit 4
      - pedal digit 5 phalanx
      - distal phalanx of pedal digit 5
      - middle phalanx of pedal digit 5
      - proximal phalanx of pedal digit 5
      - middle phalanx of pes
      - distal phalanx of pes
      - proximal phalanx of pes
      - pedal digit 7 phalanx
      - equine hindlimb splint bone
      - leg bone
      - patella
      - upper leg bone
      - hindlimb zeugopod bone
      - sesamoid bone of gastrocnemius
      - tibiofibula
      - parafibula
      - sesamoid bone of the peroneus longus muscle
      - pes bone
      - tarsal bone
      - navicular bone of pes
      - medial tibial tarsal bone
      - distal tarsal bone
      - distal tarsal bone 1
      - distal tarsal bone 2
      - distal tarsal bone 3
      - cuboid bone
      - os vesalianum pedis
      - distal tarsal bone 4
      - distal tarsal bone 5
      - fused tarsal bones 2 and 3
      - fused tarsal bones 1 and 2
      - basale commune (tarsal)
      - proximal tarsal bone
      - calcaneus
      - talus
      - hindlimb intermedium bone
      - fibulare
      - centroquartal bone
      - centrale 1
      - centrale 2
      - pedal centrale
      - intertarsale sesamoid
      - sesamoid bone of pes
      - proximal sesamoid bone of pes
      - tarsometatarsus
      - accessory navicular bone
      - pedal digitopodium bone
      - pedal digit bone
      - intercalary element of hind digit
      - bony nodule of terminal phalanx of hind digit
      - tibiotarsus
      - limb long bone
      - phalanx
      - phalanx of manus
      - proximal phalanx of manus
      - proximal phalanx of manual digit 2
      - proximal phalanx of manual digit 3
      - proximal phalanx of manual digit 4
      - proximal phalanx of manual digit 5
      - proximal phalanx of manual digit 1
      - manual digit 1 phalanx
      - distal phalanx of manual digit 1
      - middle phalanx of manual digit 1
      - manual digit 2 phalanx
      - distal phalanx of manual digit 2
      - middle phalanx of manual digit 2
      - manual digit 3 phalanx
      - distal phalanx of manual digit 3
      - middle phalanx of manual digit 3
      - manual digit 4 phalanx
      - distal phalanx of manual digit 4
      - middle phalanx of manual digit 4
      - manual digit 5 phalanx
      - distal phalanx of manual digit 5
      - middle phalanx of manual digit 5
      - middle phalanx of manus
      - distal phalanx of manus
      - distal phalanx
      - distal phalanx of digit 1
      - distal phalanx of digit 2
      - distal phalanx of digit 3
      - distal phalanx of digit 4
      - distal phalanx of digit 5
      - T-shaped terminal phalanx
      - middle phalanx
      - middle phalanx of digit 2
      - middle phalanx of digit 3
      - short pastern bone
      - middle phalanx of digit 4
      - middle phalanx of digit 5
      - proximal phalanx
      - proximal phalanx of digit 1
      - proximal phalanx of digit 2
      - proximal phalanx of digit 3
      - long pastern bone
      - proximal phalanx of digit 4
      - proximal phalanx of digit 5
      - pastern bone
      - third phalanx
      - fourth phalanx
      - second phalanx
      - forelimb long bone
      - humerus
      - radius bone
      - ulna
      - metacarpal bone
      - metacarpal bone of digit 1
      - metacarpal bone of digit 2
      - metacarpal bone of digit 3
      - metacarpal bone of digit 4
      - metacarpal bone of digit 5
      - fused metacarpal bones 3 and 4
      - equine forelimb splint bone
      - metapodium bone
      - equine splint bone
      - metapodium bone 1
      - metapodium bone 2
      - metapodium bone 3
      - metapodium bone 4
      - metapodium bone 5
      - fused metapodial bones 3 and 4
      - fused metapodial bones 2-4
      - metapodium bone 6
      - metapodium bone 7
      - metapodium bone 8
      - forelimb bone
      - arm bone
      - forelimb zeugopod bone
      - radio-ulna
      - ulnar sesamoid bone
      - upper arm bone
      - manus bone
      - carpal bone
      - proximal carpal bone
      - radiale
      - intermedium
      - pisiform
      - ulnare
      - scapholunate
      - avian scapholunar bone
      - distal carpal bone
      - distal carpal bone 1
      - distal carpal bone 2
      - distal carpal bone 3
      - distal carpal bone 4
      - os vesalianum manus
      - distal carpal bone 5
      - fused carpal bones 2 and 3
      - basale commune (carpal)
      - central carpal bone
      - falciform carpal bone
      - radial sesamoid
      - centrale (fore)
      - semilunate carpal
      - sesamoid bone of manus
      - proximal sesamoid bone of manus
      - carpometacarpus
      - manual digitopodium bone
      - manual digit bone
      - intercalary element of fore digit
      - pteroid
      - autopod bone
      - mesopodium bone
      - centrale
      - postaxial centrale
      - preaxial centrale
      - proximal mesopodial bone
      - distal mesopodial bone
      - equine distal sesamoid
      - digitopodium bone
      - subarticular sesamoid
      - paired fin radial bone
      - pelvic fin radial bone
      - pelvic fin distal radial bone
      - pelvic fin distal radial bone 2
      - pelvic fin distal radial bone 3
      - pelvic fin distal radial bone 1
      - pelvic fin basipterygial radial
      - pelvic fin middle radial bone
      - pectoral fin radial bone
      - pectoral fin proximal radial bone
      - pectoral fin proximal radial bone 1
      - pectoral fin proximal radial bone 2
      - pectoral fin proximal radial bone 3
      - pectoral fin proximal radial bone 4
      - mesopterygium bone
      - metapterygium bone
      - propterygium bone
      - pectoral fin distal radial bone
      - pectoral fin distal radial bone 1
      - pectoral fin distal radial bone 2
      - pectoral fin distal radial bone 3
      - pelvic splint
      - lateropterygium
      - pelvic axillary process
      - pectoral axillary process
      - pectoral splint
      - paired fin lepidotrichium
      - pelvic fin lepidotrichium
      - pelvic fin spine
      - pelvic fin ray
      - pelvic fin ray 1
      - pelvic fin ray 2
      - pelvic fin ray 3
      - pelvic fin ray 4
      - pelvic fin ray 5
      - pelvic fin ray 6
      - pelvic fin ray 7
      - branched pelvic fin ray
      - unbranched pelvic fin ray
      - pectoral fin lepidotrichium
      - pectoral fin spine
      - pectoral fin ray
      - pectoral fin ray 1
      - pectoral fin ray 2
      - pectoral fin ray 3
      - pectoral fin ray 4
      - pectoral fin ray 5
      - pectoral fin ray 6
      - pectoral fin ray 7
      - branched pectoral fin ray
      - rudimentary pectoral fin ray
      - unbranched pectoral fin ray
      - paired fin spine
      - epiphysis of humerus
      - distal epiphysis of humerus
      - proximal epiphysis of humerus
      - epiphysis of tibia
      - distal epiphysis of tibia
      - proximal epiphysis of tibia
      - epiphysis of femur
      - distal epiphysis of femur
      - proximal epiphysis of femur
      - epiphysis of radius
      - distal epiphysis of radius
      - proximal epiphysis of radius
      - epiphysis of ulna
      - distal epiphysis of ulna
      - proximal epiphysis of ulna
      - epiphysis of fibula
      - distal epiphysis of fibula
      - proximal epiphysis of fibula
      - epiphysis of metatarsal bone
      - epiphysis of first metatarsal bone
      - proximal epiphysis of first metatarsal bone
      - epiphysis of second metatarsal bone
      - proximal epiphysis of second metatarsal bone
      - epiphysis of third metatarsal bone
      - proximal epiphysis of third metatarsal bone
      - epiphysis of fourth metatarsal bone
      - proximal epiphysis of fourth metatarsal bone
      - epiphysis of fifth metatarsal bone
      - proximal epiphysis of fifth metatarsal bone
      - proximal epiphysis of metatarsal bone
      - epiphysis of metacarpal bone
      - epiphysis of first metacarpal bone
      - proximal epiphysis of first metacarpal bone
      - epiphysis of second metacarpal bone
      - proximal epiphysis of second metacarpal bone
      - epiphysis of third metacarpal bone
      - proximal epiphysis of third metacarpal bone
      - epiphysis of fourth metacarpal bone
      - proximal epiphysis of fourth metacarpal bone
      - proximal epiphysis of metacarpal bone
      - proximal epiphysis of fifth metacarpal bone
      - epiphysis of fifth metacarpal bone
      - distal epiphysis of metacarpal bone
      - epiphysis of phalanx
      - epiphysis of phalanx of manus
      - distal epiphysis of phalanx of manus
      - distal epiphysis of distal phalanx of manual digit
      - distal epiphysis of distal phalanx of manual digit 1
      - distal epiphysis of distal phalanx of manual digit 2
      - distal epiphysis of distal phalanx of manual digit 3
      - distal epiphysis of distal phalanx of manual digit 4
      - distal epiphysis of distal phalanx of manual digit 5
      - proximal epiphysis of phalanx of manus
      - proximal epiphysis of phalanx of manual digit 1
      - proximal epiphysis of distal phalanx of manual digit 1
      - proximal epiphysis of proximal phalanx of manual digit 1
      - proximal epiphysis of phalanx of manual digit 2
      - proximal epiphysis of distal phalanx of manual digit 2
      - proximal epiphysis of middle phalanx of manual digit 2
      - proximal epiphysis of proximal phalanx of manual digit 2
      - proximal epiphysis of phalanx of manual digit 3
      - proximal epiphysis of distal phalanx of manual digit 3
      - proximal epiphysis of middle phalanx of manual digit 3
      - proximal epiphysis of proximal phalanx of manual digit 3
      - proximal epiphysis of phalanx of manual digit 4
      - proximal epiphysis of distal phalanx of manual digit 4
      - proximal epiphysis of middle phalanx of manual digit 4
      - proximal epiphysis of proximal phalanx of manual digit 4
      - proximal epiphysis of phalanx of manual digit 5
      - proximal epiphysis of distal phalanx of manual digit 5
      - proximal epiphysis of middle phalanx of manual digit 5
      - proximal epiphysis of proximal phalanx of manual digit 5
      - epiphysis of proximal phalanx of manus
      - epiphysis of middle phalanx of manus
      - epiphysis of distal phalanx of manus
      - proximal epiphysis of phalanx
      - proximal epiphysis of phalanx of pes
      - distal epiphysis of phalanx
      - distal epiphysis of phalanx of pes
      - distal epiphysis of distal phalanx of pedal digit
      - distal epiphysis of distal phalanx of pedal digit 1
      - distal epiphysis of distal phalanx of pedal digit 2
      - distal epiphysis of distal phalanx of pedal digit 3
      - distal epiphysis of distal phalanx of pedal digit 4
      - distal epiphysis of distal phalanx of pedal digit 5
      - distal epiphysis of distal phalanx of digit
      - epiphysis of proximal phalanx of pes
      - epiphysis of middle phalanx of pes
      - epiphysis of distal phalanx of pes
      - spleen capsule
      - humerus diaphysis
      - muscular coat of seminal vesicle
      - gastro-splenic ligament
      - lieno-renal ligament
      - corpus cavernosum penis
      - metanephric collecting duct
      - blood vessel layer
      - tunica media
      - aorta tunica media
      - tunica media of artery
      - tunica media of pulmonary trunk
      - tunica media of vein
      - aorta tunica intima
      - tunica adventitia of blood vessel
      - aorta tunica adventitia
      - tunica adventitia of artery
      - tunica adventitia of vein
      - tunica intima of artery
      - tunica intima of vein
      - submucosa of urinary bladder
      - submucosa of trigone of urinary bladder
      - submucosa of neck of urinary bladder
      - mucosa of ureter
      - mucosa of right ureter
      - mucosa of left ureter
      - mucosa of vagina
      - mucosa of seminal vesicle
      - mucosa of fallopian tube
      - mucosa of right fallopian tube
      - mucosa of left fallopian tube
      - metanephric nephron
      - metanephric long nephron
      - metanephric short nephron
      - metanephric pyramid
      - metanephric cortex mesenchyme
      - metanephric cortical collecting duct
      - metanephric descending thin limb
      - metanephric long descending thin limb bend
      - metanephric prebend segment
      - metanephric capsule
      - spleen germinal center
      - lamina propria of vagina
      - right atrium valve
      - right atrium venous valve
      - metanephric renal pelvis
      - pedal digit mesenchyme
      - pedal digit 2 mesenchyme
      - pedal digit 3 mesenchyme
      - pedal digit 4 mesenchyme
      - pedal digit 5 mesenchyme
      - pedal digit 1 mesenchyme
      - manual digit mesenchyme
      - manual digit 2 mesenchyme
      - manual digit 3 mesenchyme
      - manual digit 4 mesenchyme
      - manual digit 5 mesenchyme
      - manual digit 1 mesenchyme
      - skin of clitoris
      - skin of prepuce of clitoris
      - male preputial gland
      - nephrostome
      - pronephric nephron
      - mesonephric collecting duct
      - mesonephric nephron
      - mesonephric mesenchyme
      - chorioallantoic membrane
      - spleen perifollicular zone
      - upper part of cisterna chyli
      - levator scapulae muscle
      - hyoid muscle
      - infrahyoid muscle
      - sternohyoid muscle
      - omohyoid muscle
      - sternothyroid muscle
      - thyrohyoid muscle
      - suprahyoid muscle
      - digastric muscle group
      - mylohyoid muscle
      - geniohyoid muscle
      - stylohyoid muscle
      - interhyoideus
      - jaw depressor muscle
      - levator operculi
      - epihyoidean
      - levator hyomandibulae muscle
      - abductor hyohyoid
      - adductor operculi
      - inferior hyohyoid
      - adductor arcus palatini
      - adductor hyohyoid
      - ventral interhyoideus
      - hyohyoideus
      - dorsal adductor hyomandibulae
      - intermediate mesenchyme
      - primitive heart tube
      - rhomboid
      - pronephric mesoderm
      - extraembryonic mesoderm
      - paired limb/fin field
      - pectoral appendage field
      - pelvic appendage field
      - fin field
      - limb field
      - optic foramen
      - glomerular tuft
      - section of aorta
      - descending aorta
      - thoracic aorta
      - ascending aorta
      - arch of aorta
      - abdominal aorta
      - duct of seminal vesicle
      - crista terminalis
      - pectinate muscle
      - heart layer
      - endocardium
      - endocardium of ventricle
      - endocardium of right ventricle
      - endocardium of left ventricle
      - endocardium of atrium
      - right atrium endocardium
      - endocardium of right auricle
      - endocardium of auricle
      - endocardium of left auricle
      - left atrium endocardium
      - atrioventricular canal endocardium
      - interventricular septum endocardium
      - myocardium
      - myocardium of ventricle
      - left ventricle myocardium
      - myocardium of anterior wall of left ventricle
      - right ventricle myocardium
      - myocardium of anterior wall of right ventricle
      - myocardium of atrium
      - outflow tract myocardium
      - bulbus cordis myocardium
      - myocardial layer
      - myocardium trabecular layer
      - trabecular layer of ventricle
      - left ventricular trabecular myocardium
      - right ventricular trabecular myocardium
      - myocardial compact layer
      - compact layer of ventricle
      - left ventricular compact myocardium
      - right ventricular compact myocardium
      - interventricular septum membranous part
      - subendocardium layer
      - chorda tendineae
      - chorda tendinea of left ventricle
      - chorda tendinea of right ventricle
      - muscle layer of infundibulum of uterine tube
      - coronary vessel
      - atrium myocardial trabecula
      - metoptic pillar
      - fibrous ring of heart
      - aortic valve anulus
      - pulmonary valve anulus
      - mitral valve anulus
      - tricuspid valve anulus
      - cusp of cardiac valve
      - aortic valve cusp
      - pulmonary valve cusp
      - mitral valve cusp
      - tricuspid valve cusp
      - hyaloid canal
      - fundus of urinary bladder
      - mesonephric capsule
      - rectal diverticulum
      - deltoid pre-muscle mass
      - spleen primordium
      - part of afferent arteriole forming the juxtaglomerular complex
      - basisphenoid bone
      - os penis
      - os clitoris
      - round ligament of uterus
      - transformed artery
      - medial umbilical ligament
      - ligamentum arteriosum
      - transformed vein
      - ligamentum venosum
      - gubernacular cord
      - corpus cavernosum clitoridis
      - atrium auricular region
      - left atrium auricular region
      - right atrium auricular region
      - celiac trunk
      - remnant of urachus
      - crus of penis
      - crus of clitoris
      - appendix epididymis
      - muscle layer of oviduct
      - adventitia of epididymis
      - muscle layer of epididymis
      - adventitia of seminal vesicle
      - suspensory ligament of ovary
      - tunica vaginalis testis
      - appendix testis
      - muscular layer of vagina
      - septum of scrotum
      - venous valve
      - foramen secundum
      - autopodial skeleton
      - skeleton of manus
      - skeleton of pes
      - alisphenoid bone
      - head of femur
      - proximal head of humerus
      - acetabular rim
      - obturator foramen
      - olecranon
      - muscular coat of ureter
      - adrenal/interrenal gland
      - adrenal gland
      - right adrenal gland
      - left adrenal gland
      - diaphysis of femur
      - metaphysis of femur
      - proximal metaphysis of femur
      - distal metaphysis of femur
      - head mesenchyme from mesoderm
      - orbitosphenoid cartilage element
      - extrinsic ocular pre-muscle mass
      - basisphenoid pre-cartilage condensation
      - basisphenoid cartilage condenstion
      - mandibular process mesenchyme from head mesenchyme
      - 1st arch mesenchyme from head mesenchyme
      - 1st arch maxillary mesenchyme from head mesenchyme
      - 1st arch mandibular mesenchyme from head mesenchyme
      - 2nd arch mesenchyme from head mesenchyme
      - 3rd arch mesenchyme from head mesenchyme
      - 4th arch mesenchyme from head mesenchyme
      - 6th arch mesenchyme from head mesenchyme
      - sphenoid lesser wing pre-cartilage condensation
      - alisphenoid pre-cartilage condensation
      - alisphenoid cartilage element
      - trapezius pre-muscle mass
      - sterno-mastoid pre-muscle mass
      - cardiogenic splanchnic mesoderm
      - neck of femur
      - rectouterine fold
      - stroma of bone marrow
      - pectoral appendage cartilage tissue
      - epiphyseal plate of radius
      - pectoral fin endoskeletal disc
      - pelvic appendage cartilage tissue
      - portion of cartilage tissue in tibia
      - femoral head cartilage
      - scrotal sweat gland
      - fascia of Camper
      - pelvic girdle bone/zone
      - innominate bone
      - ilium
      - iliac ramus
      - ischium
      - pubis
      - epipubic bone
      - basipterygium bone
      - pelvic girdle skeleton
      - skeleton of right pelvic girdle
      - skeleton of left pelvic girdle
      - pelvic girdle opening
      - acetabular depression
      - perichordal tissue
      - trochlear notch
      - hypaxial musculature
      - m. oblique externus
      - m. oblique internus
      - m. transversus
      - pars subvertebralis
      - pars transversalis
      - m. ypsiloideus anterior
      - m. ypsiloideus posterior
      - epaxial musculature
      - M. dorsalis trunci
      - rugal fold of vagina
      - duct of epididymis
      - suspensory ligament of testis
      - ovarian ligament
      - placenta metrial gland
      - stomach muscularis externa
      - stomach smooth muscle circular layer
      - stomach smooth muscle inner oblique layer
      - stomach smooth muscle outer longitudinal layer
      - hypodermis skeletal muscle layer
      - panniculus carnosus muscle
      - ischial spine
      - placental membrane
      - hemotrichorial placental membrane
      - hemomonochorial placental membrane
      - inner medulla vasa recta descending limb
      - outer medulla vasa recta descending limb
      - vasa recta ascending limb
      - inner medulla vasa recta ascending limb
      - outer medulla vasa recta ascending limb
      - foramen primum
      - vasa recta descending limb
      - associated mesenchyme of midgut
      - eyelid subcutaneous connective tissue
      - cardiac mesenchyme
      - endocardial cushion
      - inferior endocardial cushion
      - superior endocardial cushion
      - conotruncal ridge
      - adrenal gland cortex zone
      - zona glomerulosa of adrenal gland
      - zona fasciculata of adrenal gland
      - zona reticularis of adrenal gland
      - adrenal gland X zone
      - zona intermedia of adrenal gland
      - mesopodial skeleton
      - tarsal skeleton
      - carpal skeleton
      - anterior lateral plate mesoderm
      - secondary heart field
      - posterior lateral plate mesoderm
      - wall of ureter
      - wall of right ureter
      - wall of left ureter
      - humeral diverticulum of clavicular air sac
      - esophagus smooth muscle circular layer
      - esophagus smooth muscle longitudinal layer
      - condyle of femur
      - medial condyle of femur
      - lateral condyle of femur
      - lateral epicondyle of femur
      - medial epicondyle of femur
      - condyle of humerus
      - distal condyle of humerus
      - condyle of tibia
      - medial condyle of tibia
      - lateral condyle of tibia
      - placental labyrinth villous
      - ventral patch of Leydig's organ
      - spiral valve of conus arteriosus
      - dorsal patch of Leydig's organ
      - duct of major vestibular gland
      - duct of bulbourethral gland
      - bulb of aorta
      - sinotubular junction
      - Schweigger-Seidel sheath
      - rete ovarii
      - extraembryonic membrane mesenchyme
      - amniotic mesoderm
      - chorionic mesenchyme
      - chorionic villous mesenchyme
      - mesenchyme of yolk sac
      - maxillary process mesenchyme from head mesenchyme
      - hyoid pre-muscle mass
      - pharyngeal arch mesenchyme from head mesenchyme
      - mesenchyme from somatopleure
      - mesenchyme of footplate
      - tarsus pre-cartilage condensation
      - tarsus cartilage element
      - carpus cartilage element
      - iliac pre-cartilage condensation
      - ischial pre-cartilage condensation
      - pubic pre-cartilage condensation
      - mesenchyme of handplate
      - carpus pre-cartilage condensation
      - paired limb/fin bud mesenchyme
      - pelvic appendage bud mesenchyme
      - zone of polarizing activity of pelvic appendage
      - hindlimb bud mesenchyme
      - pectoral appendage bud mesenchyme
      - zone of polarizing activity of pectoral appendage
      - forelimb bud mesenchyme
      - forelimb wing bud mesenchyme
      - pectoral fin bud mesenchyme
      - zone of polarizing activity
      - limb bud mesenchyme
      - pelvic fin bud mesenchyme
      - mesenchyme from splanchnopleure
      - retroperitoneal fat pad
      - omental fat pad
      - epididymal fat pad
      - spleen B cell corona
      - metanephros cortex
      - mesonephric nephron progenitor
      - acropodial skeleton
      - skeleton of manual acropodium
      - skeleton of pedal acropodium
      - metapodial skeleton
      - metacarpus skeleton
      - metatarsus skeleton
      - iliac blade
      - body of ilium
      - spleen follicular dendritic cell network
      - capitulum of humerus
      - zygomaticomandibularis muscle
      - muscle of digastric group
      - anterior digastric muscle
      - latissimus dorsi pre-muscle mass
      - levator scapulae pre-muscle mass
      - pectoral pre-muscle mass
      - rhomboid pre-muscle mass
      - teres major pre-muscle mass
      - coronoid process of ulna
      - deep part of masseter muscle
      - iliac fossa
      - superficial part of masseter muscle
      - corpus spongiosum of penis
      - ventral tubercle of humerus
      - lesser tubercle of humerus
      - prostatic utricle
      - urachus mesenchyme
      - intra-ocular muscle
      - muscle of iris
      - epoophoron
      - submucosa of fallopian tube
      - superficial part of temporalis
      - deep part of temporalis
      - suprazygomatic part of temporalis
      - pars reflexa of masseter
      - posterior subdivision of masseter
      - anterior subdivision of masseter
      - prepuce
      - prepuce of penis
      - prepuce of clitoris
      - styloid process of ulna
      - flexural organ
      - paired limb/fin skeleton
      - skeleton of limb
      - forelimb skeleton
      - hindlimb skeleton
      - pectoral appendage skeleton
      - pectoral fin skeleton
      - pelvic appendage skeleton
      - pelvic fin skeleton
      - paired fin skeleton
      - stylopodial skeleton
      - zeugopodial skeleton
      - forelimb zeugopod skeleton
      - hindlimb zeugopod skeleton
      - perichordal ring
      - cardiac valve leaflet
      - tricuspid valve leaflet
      - mitral valve leaflet
      - commissural leaflet of mitral valve
      - anterior leaflet of mitral valve
      - posterior leaflet of mitral valve
      - aortic valve leaflet
      - pulmonary valve leaflets
      - genital swelling
      - female labial swelling
      - male genital swelling
      - atrioventricular region
      - duct of lesser vestibular gland
      - endomysium
      - smooth muscle endomysium
      - cardiac endomysium
      - skeletal muscle endomysium
      - epimysium
      - perimysium
      - fovea capitis of femur
      - patella cartilage element
      - patella pre-cartilage condensation
      - radial head of humerus
      - olecranon fossa
      - prepollex skeleton
      - skeleton of digitopodium
      - skeleton of manual digitopodium
      - skeleton of pedal digitopodium
      - urethral meatus
      - female urethral meatus
      - male urethral meatus
      - internal urethral orifice
      - meso-epithelium
      - mesothelium
      - mesothelium of omental bursa
      - mesothelium of pericardial cavity
      - pericardial visceral mesothelium
      - pericardial parietal mesothelium
      - mesothelium of serous pericardium
      - subepicardial layer of epicardium
      - mesothelium of diaphragm
      - mesothelium of pleural cavity
      - seminiferous tubule epithelium
      - peritoneal cavity mesothelium
      - greater omentum mesothelium
      - greater sac mesothelium
      - parietal mesothelium
      - visceral mesothelium
      - pericardio-peritoneal canal mesothelium
      - parietal of mesothelium of pericardio-peritoneal canal
      - proximal convoluted tubule
      - metanephric proximal convoluted tubule
      - pronephric proximal convoluted tubule
      - distal convoluted tubule
      - metanephric distal convoluted tubule
      - epithelium of vagina
      - vagina squamous epithelium
      - endothelium
      - corneal endothelium
      - endothelial tube
      - endothelium of artery
      - respiratory system arterial endothelium
      - pulmonary artery endothelium
      - umbilical artery endothelium
      - carotid artery endothelium
      - iliac artery endothelium
      - placental artery endothelium
      - lymph node endothelium
      - cardiovascular system endothelium
      - lymphatic vessel endothelium
      - respiratory system lymphatic vessel endothelium
      - glomerular endothelium
      - glomerular capillary endothelium
      - metanephric glomerular endothelium
      - blood vessel endothelium
      - endothelium of vein
      - vena cava endothelium
      - respiratory system venous endothelium
      - umbilical vein endothelium
      - iliac vein endothelium
      - respiratory system blood vessel endothelium
      - respiratory system capillary endothelium
      - aorta endothelium
      - microvascular endothelium
      - endothelium of capillary
      - endothelium of peritubular capillary
      - endothelium of arteriole
      - endothelium of venule
      - arterial system endothelium
      - venous system endothelium
      - heart endothelium
      - outflow tract endothelium
      - endocardial endothelium
      - scleral endothelium
      - brain endothelium
      - colon endothelium
      - pronephric duct
      - amniotic ectoderm
      - mesoderm blood island
      - distal convoluted tubule macula densa
      - heart tube
      - glomerular epithelium
      - metanephric glomerular epithelium
      - mesonephric glomerular epithelium
      - glomerular parietal epithelium
      - glomerular visceral epithelium
      - heart rudiment
      - epididymis epithelium
      - penis epithelium
      - male prepuce epithelium
      - seminal vesicle epithelium
      - renal connecting tubule
      - metanephric connecting tubule
      - mesonephric connecting tubule
      - early distal convoluted tubule
      - metanephric early distal convoluted tubule
      - late distal convoluted tubule
      - metanephric late distal convoluted tubule
      - mesonephric epithelium
      - mesonephric tubule
      - ureteric bud
      - metanephric ureteric bud
      - ureter ureteric bud
      - primary ureteric bud
      - mesonephric duct
      - anterior mesonephric tubule
      - posterior mesonephric tubule
      - mesonephric nephron tubule
      - mesonephric early distal tubule
      - mesonephric distal tubule
      - mesonephric proximal tubule
      - ureteric bud tip
      - primitive mesonephric nephron
      - ureteric bud trunk
      - mesonephric nephron epithelium
      - mesonephric macula densa
      - mesonephric renal vesicle
      - metanephric epithelium
      - metanephric tubule
      - metanephric nephron tubule
      - metanephric ascending thin limb
      - metanephric proximal straight tubule
      - metanephric thick ascending limb
      - metanephric distal tubule
      - metanephric loop of Henle
      - metanephric proximal tubule
      - primitive metanephric nephron
      - metanephric nephron epithelium
      - metanephric macula densa
      - metanephric long descending thin limb
      - metanephric short descending thin limb
      - metanephric renal vesicle
      - granulosa cell layer
      - sex cord
      - ovary sex cord
      - testis sex cord
      - primitive sex cord of indifferent gonad
      - pronephric nephron tubule
      - pronephric proximal tubule
      - pronephric distal tubule
      - pronephric distal early tubule
      - pronephric proximal straight tubule
      - infundibular recess of 3rd ventricle
      - urachus epithelium
      - connecting stalk blood islands
      - male paramesonephric duct
      - paradidymis
      - paroophoron
      - primitive renal collecting duct system
      - lateral malleolus of fibula
      - navicular fossa of spongiose part of urethra
      - Guérin's valve
      - urethral crest
      - male urethral crest
      - female urethral crest
      - mucosa of urethra
      - mucosa of male urethra
      - mucosa of prostatic urethra
      - mucosa of female urethra
      - mucosa of intermediate urethra
      - ureteral orifice
      - vagina orifice
      - gubernacular bulb
      - pearly penile papule
      - penile spine
      - broad ligament of uterus
      - muscle layer of urinary bladder
      - large intestine smooth muscle circular layer
      - colon smooth muscle circular layer
      - large intestine smooth muscle longitudinal layer
      - colon smooth muscle longitudinal layer
      - small intestine smooth muscle circular layer
      - small intestine smooth muscle longitudinal layer
      - proximal convoluted tubule brush border
      - hematopoietic tissue
      - hepatogastric ligament
      - hepatoduodenal ligament
      - vaginal sphincter
      - ampulla of fallopian tube
      - popliteal area
      - bulb of penis
      - interventricular foramen of heart
      - entepicondylar foramen
      - vesicular appendage of epoophoron
      - remnnant of ductus deferens
      - remnant of processus vaginalis
      - canal of Nuck
      - diaphysis of fibula
      - diaphysis of tibia
      - superficial cervical fascia
      - elastica externa of notochord
      - iliac spine
      - anterior iliac spine
      - anterior superior iliac spine
      - anterior inferior iliac spine
      - posterior iliac spine
      - posterior superior iliac spine
      - posterior inferior iliac spine
      - ilio-marsupialis muscle
      - branch of ilio-marsupialis muscle
      - dartos muscle of scrotum
      - dartos muscle of labia majora
      - ulnar metaphysis
      - metaphysis of humerus
      - metaphysis of tibia
      - metaphysis of radius
      - diaphysis of metacarpal bone
      - diaphysis of metatarsal bone
      - sciatic notch
      - greater sciatic notch
      - lesser sciatic notch
      - iliac crest
      - ischiopubic ramus
      - ischial ramus
      - superior ischial ramus
      - inferior ischial ramus
      - pubic ramus
      - superior pubic ramus
      - inferior pubic ramus
      - acetabular notch
      - lamina terminalis of ischium
      - iliac endochondral element
      - iliac cartilage element
      - pubic endochondral element
      - pubic cartilage element
      - ischial endochondral element
      - ischial cartilage element
      - limb endochondral element
      - limb cartilage element
      - forelimb cartilage element
      - humerus cartilage element
      - radius cartilage element
      - ulna cartilage element
      - styliform cartilage
      - radius-ulna cartilage element
      - manus cartilage element
      - manual digit phalanx cartilage element
      - manual digit 1 phalanx cartilage element
      - manual digit 2 phalanx cartilage element
      - manual digit 3 phalanx cartilage element
      - manual digit 4 phalanx cartilage element
      - manual digit 5 phalanx cartilage element
      - manual digit metacarpus cartilage element
      - manual digit 1 metacarpus cartilage element
      - manual digit 2 metacarpus cartilage element
      - manual digit 3 metacarpus cartilage element
      - manual digit 4 metacarpus cartilage element
      - manual digit 5 metacarpus cartilage element
      - distal carpal cartilage element
      - proximal carpal cartilage
      - distal carpal bone 1 cartilage
      - distal carpal bone 2 cartilage
      - distal carpal bone 3 cartilage
      - distal carpal bone 4 cartilage
      - distal carpal bone 5 cartilage
      - hindlimb cartilage element
      - femur cartilage element
      - tibia cartilage element
      - fibula cartilage element
      - tibiotarsus cartilage element
      - pes cartilage element
      - pedal digit phalanx cartilage element
      - pedal digit 1 phalanx cartilage element
      - pedal digit 2 phalanx cartilage element
      - pedal digit 3 phalanx cartilage element
      - pedal digit 4 phalanx cartilage element
      - pedal digit 5 phalanx cartilage element
      - pedal digit metatarsal cartilage element
      - pedal digit 1 metatarsal cartilage element
      - pedal digit 2 metatarsal cartilage element
      - pedal digit 3 metatarsal cartilage element
      - pedal digit 4 metatarsal cartilage element
      - pedal digit 5 metatarsal cartilage element
      - calcaneum cartilage element
      - tarsometatarsus cartilage element
      - proximal tarsal cartilage
      - distal tarsal cartilage
      - distal tarsal bone 1 cartilage
      - distal tarsal bone 2 cartilage
      - distal tarsal bone 3 cartilage
      - distal tarsal bone 4 cartilage
      - distal tarsal bone 5 cartilage
      - autopod cartilage
      - phalanx cartilage element
      - centrale cartilage
      - proximal mesopodial cartilage element
      - distal mesopodial cartilage element
      - limb bone pre-cartilage condensation
      - phalanx pre-cartilage condensation
      - pedal digit phalanx pre-cartilage condensation
      - pedal digit 1 phalanx pre-cartilage condensation
      - pedal digit 2 phalanx pre-cartilage condensation
      - pedal digit 3 phalanx pre-cartilage condensation
      - pedal digit 4 phalanx pre-cartilage condensation
      - pedal digit 5 phalanx pre-cartilage condensation
      - manual digit phalanx pre-cartilage condensation
      - manual digit 1 phalanx pre-cartilage condensation
      - manual digit 2 phalanx pre-cartilage condensation
      - manual digit 3 phalanx pre-cartilage condensation
      - manual digit 4 phalanx pre-cartilage condensation
      - manual digit 5 phalanx pre-cartilage condensation
      - forelimb bone pre-cartilage condensation
      - humerus pre-cartilage condensation
      - radius-ulna pre-cartilage condensation
      - manual digit metacarpus pre-cartilage condensation
      - manual digit 1 metacarpus pre-cartilage condensation
      - manual digit 2 metacarpus pre-cartilage condensation
      - manual digit 3 metacarpus pre-cartilage condensation
      - manual digit 4 metacarpus pre-cartilage condensation
      - manual digit 5 metacarpus pre-cartilage condensation
      - proximal carpal bone pre-cartilage condensation
      - distal carpal bone 1 pre-cartilage condensation
      - distal carpal bone 2 pre-cartilage condensation
      - distal carpal bone 3 pre-cartilage condensation
      - distal carpal bone 4 pre-cartilage condensation
      - distal carpal bone 5 pre-cartilage condensation
      - hindlimb pre-cartilage condensation
      - femur pre-cartilage condensation
      - pedal digit metatarsal pre-cartilage condensation
      - pedal digit 1 metatarsal pre-cartilage condensation
      - pedal digit 2 metatarsal pre-cartilage condensation
      - pedal digit 3 metatarsal pre-cartilage condensation
      - pedal digit 4 metatarsal pre-cartilage condensation
      - pedal digit 5 metatarsal pre-cartilage condensation
      - calcaneum pre-cartilage condensation
      - proximal tarsal bone pre-cartilage condensation
      - distal tarsal bone pre-cartilage condensation
      - distal tarsal bone 1 pre-cartilage condensation
      - distal tarsal bone 2 pre-cartilage condensation
      - distal tarsal bone 3 pre-cartilage condensation
      - distal tarsal bone 4 pre-cartilage condensation
      - distal tarsal bone 5 pre-cartilage condensation
      - distal mesopodial pre-cartilage condensation
      - forelimb endochondral element
      - radius endochondral element
      - radius pre-cartilage condensation
      - radius-ulna endochondral element
      - ulna endochondral element
      - ulna pre-cartilage condensation
      - manual digit phalanx endochondral element
      - manual digit 1 phalanx endochondral element
      - manual digit 2 phalanx endochondral element
      - manual digit 3 phalanx endochondral element
      - manual digit 4 phalanx endochondral element
      - manual digit 5 phalanx endochondral element
      - manual digit metacarpus endochondral element
      - manual digit 1 metacarpus endochondral element
      - manual digit 2 metacarpus endochondral element
      - manual digit 3 metacarpus endochondral element
      - manual digit 4 metacarpus endochondral element
      - manual digit 5 metacarpus endochondral element
      - carpus endochondral element
      - distal carpal endochondral element
      - proximal carpal endochondral element
      - distal carpal bone 1 endochondral element
      - distal carpal bone 2 endochondral element
      - distal carpal bone 3 endochondral element
      - distal carpal bone 4 endochondral element
      - distal carpal bone 5 endochondral element
      - prepollical element
      - proximal-most prepollical element
      - distal-most prepollical element
      - humerus endochondral element
      - styliform element
      - hindlimb endochondral element
      - tibia endochondral element
      - tibia pre-cartilage condensation
      - tibiotarsus endochondral element
      - tibiotarsus pre-cartilage condensation
      - tarsometatarsus endochondral element
      - tarsometatarsus pre-cartilage condensation
      - fibula endochondral element
      - fibula pre-cartilage condensation
      - pedal digit phalanx endochondral element
      - pedal digit 1 phalanx endochondral element
      - pedal digit 2 phalanx endochondral element
      - pedal digit 3 phalanx endochondral element
      - pedal digit 4 phalanx endochondral element
      - pedal digit 5 phalanx endochondral element
      - pedal digit metatarsal endochondral element
      - pedal digit 1 metatarsal endochondral element
      - pedal digit 2 metatarsal endochondral element
      - pedal digit 3 metatarsal endochondral element
      - pedal digit 4 metatarsal endochondral element
      - pedal digit 5 metatarsal endochondral element
      - tarsus endochondral element
      - calcaneum endochondral element
      - proximal tarsal endochondral element
      - distal tarsal endochondral element
      - distal tarsal bone 1 endochondral element
      - distal tarsal bone 2 endochondral element
      - distal tarsal bone 3 endochondral element
      - distal tarsal bone 4 endochondral element
      - distal tarsal bone 5 endochondral element
      - element Y of hind mesopodium
      - prehallical element
      - proximal-most prehallical element
      - distal-most prehallical element
      - femur endochondral element
      - autopod endochondral element
      - phalanx endochondral element
      - centrale endochondral element
      - proximal mesopodial endochondral element
      - distal mesopodial endochondral element
      - epicardial fat
      - mesenteric fat pad
      - parametrial fat pad
      - neck of talus
      - interventricular foramen intermedium
      - atrial foramen intermedium
      - dorsal vessel heart
      - circulatory system dorsal vessel
      - lower part of vagina
      - urethra mesenchymal layer
      - ureteral valve
      - subcutaneous lymph node
      - scrotum skin
      - rugal fold of scrotum
      - corona of glans penis
      - base of glans penis
      - epicondyle of humerus
      - entepicondyle of humerus
      - ectepicondyle of humerus
      - muscular layer of prostatic urethra
      - muscle layer of spongiose part of urethra
      - isthmus of fallopian tube
      - descending trunk of arch of aorta
      - preductal region of aortic arch
      - postductal region of aortic arch
      - juxtaductal region of aortic arch
      - metaphysis of fibula
      - placentome of cotyledonary placenta
      - intertarsal sesamoid
      - raphe of scrotum
      - left renal pelvis
      - right renal pelvis
      - adrenal tissue
      - type 1 adrenal tissue
      - type 2 adrenal tissue
      - type 3 adrenal tissue
      - type 4 adrenal tissue
      - ilioischiadic foramen
      - supracondylar tubercle
      - ventral wall of dorsal aorta
      - neck of fibula
      - dorsal nerve of penis
      - dorsal nerve of clitoris
      - visceral serous membrane
      - visceral peritoneum
      - visceral serous pericardium
      - parietal serous membrane
      - parietal peritoneum
      - parietal serous pericardium
      - internal spermatic fascia
      - gubernacular bulb, intra-abdominal part
      - gubernacular bulb, extra-abdominal part
      - inflow tract
      - inflow tract of ventricle
      - inflow tract of right ventricle
      - inflow tract of left ventricle
      - inflow tract of atrium
      - remnant of cardiac valve
      - aortic body
      - jugular body
      - jugular bulb
      - superior bulb of internal jugular vein
      - inferior bulb of internal jugular vein
      - raphe of penis
      - sac of scrotum
      - raphe of perineum
      - axochord
      - presumptive axochord
      - basal zone of heart
      - gastrophrenic ligament
      - glans
      - glans penis
      - glans clitoris
      - apical region of heart ventricle
      - apical region of left ventricle
      - apical region of right ventricle
      - antotic pillar
      - preoptic pillar
      - wall of blood vessel
      - artery wall
      - wall of coronary artery
      - wall of brachiocephalic artery
      - wall of subclavian artery
      - wall of pulmonary artery
      - wall of common carotid artery
      - aorta wall
      - cardiopharyngeal field
      - wall of fallopian tube
      - wall of urethra
      - wall of male urethra
      - wall of female urethra
      - wall of vagina
      - wall of heart
      - heart ventricle wall
      - wall of left ventricle
      - anterior wall of left ventricle
      - wall of right ventricle
      - anterior wall of right ventricle
      - spleen pulp
      - red pulp of spleen
      - white pulp of spleen
      - spleen marginal sinus
      - parenchyma of spleen
      - ischial cartilage
      - paired fin radial element
      - paired fin radial cartilage
      - pelvic fin distal radial cartilage 2
      - pelvic fin distal radial cartilage 3
      - pelvic fin distal radial cartilage 1
      - pectoral fin radial cartilage
      - pectoral fin proximal radial cartilage
      - mesopterygium cartilage
      - propterygium cartilage
      - pectoral fin proximal radial cartilage 1
      - pectoral fin proximal radial cartilage 2
      - pectoral fin proximal radial cartilage 3
      - pectoral fin proximal radial cartilage 4
      - metapterygium cartilage
      - pectoral fin distal radial cartilage
      - pectoral fin distal radial cartilage 1
      - pectoral fin distal radial cartilage 2
      - pectoral fin distal radial cartilage 3
      - pelvic fin distal radial cartilage
      - pelvic fin radial element
      - pelvic fin distal radial element
      - pelvic fin distal radial element 2
      - pelvic fin distal radial element 3
      - pelvic fin distal radial element 1
      - pelvic fin middle radial element
      - pectoral fin radial element
      - pectoral fin proximal radial element
      - pectoral fin proximal radial element 1
      - pectoral fin proximal radial element 2
      - pectoral fin proximal radial element 3
      - pectoral fin proximal radial element 4
      - mesopterygium element
      - metapterygium element
      - propterygium element
      - pectoral fin distal radial element
      - pectoral fin distal radial element 1
      - pectoral fin distal radial element 2
      - pectoral fin distal radial element 3
      - pectoral fin intermediate radial bone
      - intermediate cell mass of mesoderm
      - adductor mandibulae complex
      - dorsal fin actinotrichium
      - pectoral fin actinotrichium
      - pelvic fin actinotrichium
      - corpuscles of Stannius
      - lateral floor plate
      - medial floor plate
      - posterior kidney
      - posterior process of basipterygium
      - notochord posterior region
      - posterior dentation of pectoral fin spine
      - anterior dentation of pectoral fin spine
      - anterior distal serration of pectoral fin spine
      - distal cartilage of posterior process of basipterygium
      - internal anterior process of basipterygium
      - distal cartilage of internal anterior process of basipterygium
      - middle anterior process of basipterygium
      - distal cartilage of middle anterior process of basipterygium
      - external anterior process of basipterygium
      - distal cartilage of external anterior process of basipterygium
      - lateral process of basipterygium
      - posterior pronephric duct
      - presumptive atrium primitive heart tube
      - presumptive cardiac ventricle primitive heart tube
      - rostral blood island
      - anterior lateral mesoderm
      - bulbus arteriosus outer layer
      - bulbus arteriosus middle layer
      - bulbus arteriosus inner layer
      - endocardial ring
      - atrioventricular ring
      - basipterygium element
      - basipterygium cartilage
      - crista dorsalis humeri
      - ilial ridge
      - ilial shaft
      - fovea capitis of humerus
      - ulnar condyle
      - trochlear groove of humerus
      - collum antibrachii
      - crista lateralis humeri
      - crista medialis humeri
      - crista radii
      - capitulum of radius
      - capitulum ulnae
      - sulcus longitudinalis
      - element Y of fore mesopodium
      - foramen perforans carpi
      - pubo-ischium
      - epileon
      - agger limitans anterior of ilium
      - agger limitans anterior of ischium
      - ilial protuberance
      - preacetabular expansion
      - fossula tuberis superioris
      - collum ilei
      - pars cylindriformis ilei
      - crista ischii
      - spina pelvis posterior
      - spina pelvis anterior
      - intumescentia bilateralis inferior
      - intumescentia bilateralis superior
      - incisura terminalis
      - crista hypertrophica ischium
      - interilial region
      - recessus coccygealis
      - epipubis
      - ypsiloid cartilage
      - femoral ridge
      - trochanteric crest
      - tibial crest
      - apophysis distalis of tibiofibula
      - caput ossis cruris
      - sulcus pro musculo extensori cruris brevis
      - eminentia arcuata
      - sulcus distalis ossis cruris
      - sulcus proximalis ossis cruris
      - foramen nutritium exterius
      - apophysis proximalis
      - apophysis distalis of tibiale fibulare
      - prehallux skeleton
      - foramen perforans tarsi
      - intermedium (fore)
      - mediale
      - postminimus
      - Nobelian rod
      - capitulum of radio-ulna
      - mesonephric early proximal tubule
      - mesonephric late distal segment
      - mesonephric late proximal tubule
      - dilated medial process of metacarpal IV
      - muscle rectus abdominis superficialis
      - musculus rectus abdominis profundus
      - late distal segment
      - vacuolated notochordal tissue
      - ischial peduncle
      - postacetabular buttress
      - postacetabular zone
      - posterior process of ilium
      - anterior distal condyle of femur
      - posterior distal condyle of femur
      - medial blade of ilium
      - postpubis
      - transverse pelvic ridge
      - ventral humeral ridge
      - ectepicondylar flange
      - lateral tuber of ulna
      - calcaneal tuber
      - preacetabular process
      - astragalus-calcaneum unit
      - ascending process of the astragalus
      - adductor blade
      - adductor crest
      - antitrochanter
      - cnemial crest
      - internal trochanter
      - supinator process
      - supraacetabular buttress
      - brevis shelf
      - bicipital crest
      - cotyloid notch
      - crista tibiofibularis
      - ectepicondylar foramen
      - ectocondylar tubercle
      - dorsal iliac process
      - fibular crest
      - iliac neck
      - iliac peduncle
      - iliac peduncle of the pubis
      - ischial foot
      - latissimus dorsi process
      - obturator process of ischium
      - prepectoral space
      - prepubic process
      - pubic boot
      - pubic peduncle
      - pubis-ischium contact
      - puboischiadic plate
      - supraacetabular crest
      - supraacetabular rim
      - trochanteric shelf
      - puboischiadic bar
      - accessory foramen
      - ventral ridge system
      - mesial pelvic ridge
      - process 2 of entepicondyle
      - process 3 of entepicondyle
      - process 4 of entepicondyle
      - neck of humerus
      - dorsal ridge
      - supracondyle tubercle
      - ventral supracondylar tubercle
      - dorsal supracondylar tubercle
      - astragalus head
      - lateral tubercle of astragalus
      - bicipital tuberosity
      - ulnar tuberosity
      - distal keel of metacarpal III
      - posterodorsal process of ilium
      - anterior humeral ridge
      - postaxial process of the ulnare
      - postaxial process of the femur
      - postaxial process of the fibula
      - pectoral process of humerus
      - deltoid process
      - columnar area
      - excurrent foramen of ectepicondylar foramen
      - incurrent foramen of ectepicondylar foramen
      - medial pelvic process
      - paired fin radial skeleton
      - pectoral fin radial skeleton
      - pelvic fin radial skeleton
      - dorsal iliac ridge
      - pelvic intercleithral cartilage
      - pectoral fin hook
      - pelvic fin hook
      - individual digit of digitopodial skeleton
      - digit 6 digitopodial skeleton
      - manual digit 6 digitopodial skeleton
      - digit 7 digitopodial skeleton
      - manual digit 7 digitopodial skeleton
      - digit 8 digitopodial skeleton
      - manual digit 8 digitopodial skeleton
      - pedal digit digitopodial skeleton
      - pedal digit 1 digitopodial skeleton
      - pedal digit 2 digitopodial skeleton
      - pedal digit 3 digitopodial skeleton
      - pedal digit 4 digitopodial skeleton
      - pedal digit 5 digitopodial skeleton
      - pedal digit 6 digitopodial skeleton
      - pedal digit 7 digitopodial skeleton
      - pedal digit 8 digitopodial skeleton
      - manual digit digitopodial skeleton
      - manual digit 1 digitopodial skeleton
      - manual digit 2 digitopodial skeleton
      - manual digit 3 digitopodial skeleton
      - manual digit 4 digitopodial skeleton
      - manual digit 5 digitopodial skeleton
      - alular digit digitopodial skeleton
      - manual major digit (Aves) digitopodial skeleton
      - manual minor digit (Aves) digitopodial skeleton
      - digit 1 digitopodial skeleton
      - digit 2 digitopodial skeleton
      - digit 3 digitopodial skeleton
      - digit 4 digitopodial skeleton
      - digit 5 digitopodial skeleton
      - insect embryonic/larval lymph gland
      - insect trunk mesoderm derivative
      - insect visceral mesoderm derivative
      - insect mesodermal crest
      - insect mesodermal crest of segment T3
      - insect cardiogenic mesoderm
      - tibial tuberosity
      - condyle of talus
      - medial condyle of talus
      - lateral condyle of talus
      - styloid process of radius
      - ulnar notch of radius
      - calcaneal body
      - tubercle of calcaneus
      - lateral tubercle of calcaneus
      - medial tubercle of calcaneus
      - coracoid process of calcaneus
      - fimbria of fallopian tube
      - serosal nerve fiber of appendix
      - moderator band
      - mesenteric lymphatic vessel
      - skin of iliac crest region
      - subserosa of fallopian tube
      - placental basal plate
      - placental villous stroma
      - chorionic villous tree
      - placental disc
      - apex of urinary bladder
      - proximal ureter
      - right proximal ureter
      - left proximal ureter
      - distal ureter
      - right distal ureter
      - left distal ureter
      - intramural ureter
      - right intramural ureter
      - left intramural ureter
      - ectoderm-derived structure
      - nose
      - zone of skin
      - skin of trunk
      - skin of back
      - lower back skin
      - upper back skin
      - skin of scapula region
      - skin of thoracolumbar junction
      - skin of thorax
      - skin of chest
      - skin of anterior chest
      - skin of breast
      - abdominal segment skin
      - skin of pelvis
      - perianal skin
      - skin of buttock
      - skin of sacral region
      - ischial callosity
      - skin of abdomen
      - suprapubic skin
      - skin of lateral lumbar region of abdomen
      - skin of umbilical area
      - inguinal region skin
      - skin of neck
      - skin of front of neck
      - gular fold
      - skin of limb
      - forelimb skin
      - skin of manus
      - skin of wrist
      - carpal pad
      - manual digit skin
      - dorsal skin of finger
      - nail bed of finger
      - pollical pad
      - manual autopod pad
      - palmar pad
      - skin of palm of manus
      - arm skin
      - skin of elbow
      - skin of forearm
      - upper arm skin
      - skin of forelimb wing
      - humeral patagium
      - hindlimb skin
      - skin of leg
      - skin of knee
      - upper leg skin
      - lower leg skin
      - skin of calf
      - skin of shin
      - skin of pes
      - skin of ankle
      - heel skin
      - pedal digit skin
      - dorsal skin of toe
      - nail bed of toe
      - hallical pad
      - pedal autopod pad
      - plantar pad
      - medial metatarsal pad
      - lateral metatarsal pad
      - skin of sole of pes
      - autopod skin
      - autopod pad
      - metapodial pad
      - digital pad
      - skin of palmar/plantar part of autopod
      - digit skin
      - dorsal skin of digit
      - nail bed
      - proximal nail bed
      - periungual skin
      - ungulate coronary band
      - skin of shoulder
      - skin of hip
      - tail skin
      - skin of lobe of tail
      - skin nerve field
      - head or neck skin
      - skin of head
      - skin of external ear
      - marginal cutaneous pouch of ear
      - antler velvet
      - skin of face
      - skin of eyelid
      - epicanthal fold
      - skin of lip
      - skin of lower lip
      - lower vermilion
      - skin of upper lip
      - upper vermilion
      - skin of cheek
      - cheek pouch
      - internal cheek pouch
      - external cheek pouch
      - brille
      - nasal diverticulum
      - nose skin
      - periorbital skin
      - skin of forehead
      - glabella skin
      - dewlap
      - skin of snout
      - skin of scalp
      - skin of temple
      - sex skin
      - vermilion
      - fin web
      - skin of clavicle region
      - axilla skin
      - skin of external genitalia
      - genital labium
      - skin of gonad
      - camera-type eye
      - feather
      - down feather
      - vaned feather
      - pennaceous feather
      - flight feather
      - rectrix feather
      - remex feather
      - primary remex feather
      - secondary remex feather
      - tertial remex feather
      - filoplume feather
      - blood feather
      - rictal bristle
      - forelimb feather
      - wing feather
      - tail feather
      - breast feather
      - dorsal feather
      - hindlimb feather
      - crural feather
      - auricular feather
      - macula lutea
      - macula
      - macula of saccule of membranous labyrinth
      - macula of utricle of membranous labyrinth
      - macula lagena
      - anterior macula
      - macula neglecta
      - posterior macula
      - cardiac neural crest
      - olivary body
      - anal canal
      - gyrus
      - postcentral gyrus
      - medial olfactory gyrus
      - posterior parahippocampal gyrus
      - supracallosal gyrus
      - paraterminal gyrus
      - angular gyrus
      - supramarginal gyrus
      - limen of insula
      - posterior cingulate gyrus
      - inferior temporal gyrus
      - anterior cingulate gyrus
      - fusiform gyrus
      - superior temporal gyrus
      - middle temporal gyrus
      - cingulate gyrus
      - parahippocampal gyrus
      - transverse gyrus of Heschl
      - anterior transverse temporal gyrus
      - posterior transverse temporal gyrus
      - gyrus rectus
      - precuneus cortex
      - paracentral gyrus
      - anterior paracentral gyrus
      - posterior paracentral gyrus
      - orbital gyrus
      - lateral orbital gyrus
      - medial orbital gyrus
      - posterior orbital gyrus
      - intermediate orbital gyrus
      - fronto-orbital gyrus
      - anterior orbital gyrus
      - occipital gyrus
      - lingual gyrus
      - superior occipital gyrus
      - cuneus cortex
      - lateral occipital cortex
      - inferior occipital gyrus
      - annectant gyrus
      - frontal gyrus
      - orbital part of inferior frontal gyrus
      - superior frontal gyrus
      - middle frontal gyrus
      - precentral gyrus
      - inferior frontal gyrus
      - orbitofrontal cortex
      - caudal middle frontal gyrus
      - rostral middle frontal gyrus
      - rostral gyrus
      - paracentral lobule
      - hair root
      - ophthalmic nerve
      - ramus nasalis internus
      - ramule palatinus
      - limbic system
      - lens cortex
      - lens nucleus
      - dermal papilla
      - cerebral subcortex
      - frontal nerve (branch of ophthalmic)
      - brain
      - neural tube derived brain
      - insect embryonic brain
      - insect adult brain
      - lens of camera-type eye
      - retina
      - central nervous system
      - insect embryonic/larval central nervous system
      - insect adult central nervous system
      - strand of hair
      - eyelash
      - upper eyelash
      - lower eyelash
      - strand of vibrissa hair
      - strand of pelage hair
      - strand of auchene hair
      - strand of awl hair
      - strand of guard hair
      - strand of zigzag hair
      - strand of wool
      - strand of duvet hair
      - keratin-coated spine
      - barbed keratin-coated spine
      - unbarbed keratin-coated spine
      - strand of pubic hair
      - strand of axillary hair
      - tail hair
      - ventral hair
      - dorsal hair
      - hair of head
      - strand of hair of face
      - nasal hair
      - strand of hair on external ear
      - pinna hair
      - hair of scalp
      - hair of trunk
      - strand of tylotrich hair
      - hair of neck
      - hair of limb
      - autopod hair
      - pes hair
      - manus hair
      - primary hair
      - vellus hair
      - terminal hair
      - androgenic hair
      - catagen hair
      - telogen hair
      - anagen hair
      - calcareous tooth
      - incisor tooth
      - upper jaw incisor
      - upper left incisor tooth
      - upper left incisor tusk
      - upper right incisor tusk
      - narwhal tusk
      - upper primary incisor tooth
      - upper central primary incisor tooth
      - right upper central primary incisor tooth
      - left upper central primary incisor tooth
      - upper lateral primary incisor tooth
      - right upper lateral primary incisor tooth
      - left upper lateral primary incisor tooth
      - upper central incisor tooth
      - upper central secondary incisor tooth
      - right upper central secondary incisor tooth
      - left upper central secondary incisor tooth
      - upper lateral incisor tooth
      - upper lateral secondary incisor tooth
      - right upper lateral secondary incisor tooth
      - left upper lateral secondary incisor tooth
      - upper secondary incisor tooth
      - lower jaw incisor
      - lower primary incisor tooth
      - lower central primary incisor tooth
      - right lower central primary incisor tooth
      - left lower central primary incisor tooth
      - lower lateral primary incisor tooth
      - right lower lateral primary incisor tooth
      - left lower lateral primary incisor tooth
      - lower central incisor tooth
      - lower central secondary incisor tooth
      - right lower central secondary incisor tooth
      - left lower central secondary incisor tooth
      - lower lateral incisor tooth
      - lower lateral secondary incisor tooth
      - right lower lateral secondary incisor tooth
      - left lower lateral secondary incisor tooth
      - lower secondary incisor tooth
      - incisor tusk
      - primary incisor tooth
      - primary central incisor tooth
      - primary lateral incisor tooth
      - secondary incisor tooth
      - incisor tooth 1
      - incisor tooth 2
      - incisor tooth 3
      - incisor tooth 4
      - incisor tooth 5
      - tooth of upper jaw
      - maxillary tooth
      - upper jaw molar
      - upper primary molar tooth
      - upper first primary molar tooth
      - right upper first primary molar tooth
      - left upper first primary molar tooth
      - upper second primary molar tooth
      - right upper second primary molar tooth
      - left upper second primary molar tooth
      - upper secondary molar tooth
      - upper first secondary molar tooth
      - right upper first secondary molar tooth
      - left upper first secondary molar tooth
      - upper second secondary molar tooth
      - right upper second secondary molar tooth
      - left upper second secondary molar tooth
      - upper third secondary molar tooth
      - right upper third secondary molar tooth
      - left upper third secondary molar tooth
      - upper fourth secondary molar tooth
      - upper molar 1
      - palatal tooth
      - vomerine tooth
      - tooth of palatine bone
      - ectopterygoid tooth
      - upper premolar tooth
      - upper secondary premolar tooth
      - upper first secondary premolar tooth
      - right upper first secondary premolar tooth
      - left upper first secondary premolar tooth
      - upper second secondary premolar tooth
      - right upper second secondary premolar tooth
      - left upper second secondary premolar tooth
      - upper fourth secondary premolar tooth
      - upper third secondary premolar tooth
      - upper primary premolar tooth
      - upper deciduous premolar 5
      - upper premolar 4
      - secondary upper tooth
      - upper secondary canine tooth
      - right upper secondary canine tooth
      - left upper secondary canine tooth
      - primary upper tooth
      - upper primary canine tooth
      - right upper primary canine tooth
      - left upper primary canine tooth
      - upper canine tooth
      - upper canine 1
      - premaxillary tooth
      - premaxillary tooth 2
      - premaxillary tooth 3
      - maxillopalatine tooth
      - tooth of lower jaw
      - dentary tooth
      - lower jaw molar
      - lower primary molar tooth
      - lower first primary molar tooth
      - right lower first primary molar tooth
      - left lower first primary molar tooth
      - lower second primary molar tooth
      - right lower second primary molar tooth
      - left lower second primary molar tooth
      - lower secondary molar tooth
      - lower first secondary molar tooth
      - right lower first secondary molar tooth
      - left lower first secondary molar tooth
      - lower second secondary molar tooth
      - right lower second secondary molar tooth
      - left lower second secondary molar tooth
      - lower third secondary molar tooth
      - right lower third secondary molar tooth
      - left lower third secondary molar tooth
      - lower fourth secondary molar tooth
      - lower molar 3
      - dentary tooth 2
      - dentary tooth 3
      - coronoid tooth
      - coronoid fang
      - lower premolar tooth
      - lower secondary premolar tooth
      - lower first secondary premolar tooth
      - right lower first secondary premolar tooth
      - left lower first secondary premolar tooth
      - lower second secondary premolar tooth
      - right lower second secondary premolar tooth
      - left lower second secondary premolar tooth
      - lower fourth secondary premolar tooth
      - lower third secondary premolar tooth
      - lower primary premolar tooth
      - lower deciduous premolar 5
      - lower premolar 1
      - lower premolar 2
      - mandibular symphyseal tooth
      - permanent lower tooth
      - lower secondary canine tooth
      - right lower secondary canine tooth
      - left lower secondary canine tooth
      - primary lower tooth
      - lower primary canine tooth
      - right lower primary canine tooth
      - left lower primary canine tooth
      - lower canine tooth
      - pseudodentary tooth
      - cuspid
      - canine tusk
      - primary canine tooth
      - secondary canine tooth
      - deciduous tooth
      - natal tooth
      - primary molar tooth
      - deciduous molar tooth 2
      - deciduous molar tooth 1
      - primary premolar tooth
      - deciduous premolar 5
      - fetal tooth
      - secondary tooth
      - secondary molar tooth
      - permanent molar tooth 2
      - permanent molar tooth 1
      - secondary premolar tooth
      - unerupted tooth
      - tusk
      - venom-injecting tooth
      - molariform tooth
      - molar tooth
      - molar tooth 1
      - molar tooth 3
      - molar tooth 2
      - molar tooth 4
      - molar tooth 5
      - premolar tooth
      - premolar 1
      - premolar 2
      - premolar tooth 5
      - premolar tooth 4
      - premolar 3
      - cheek tooth
      - calcareous egg tooth
      - replacement tooth
      - ceratobranchial 5 tooth
      - tooth 1V
      - tooth 5V
      - tooth 4V
      - tooth 2V
      - tooth 3V
      - tooth 1MD
      - tooth 2MD
      - tooth 1D
      - tooth 2D
      - tooth 4MD
      - tooth 3MD
      - entopterygoid tooth
      - basihyal tooth
      - pharyngobranchial 2 tooth
      - pharyngobranchial 3 tooth
      - upper pharyngeal 4 tooth
      - upper pharyngeal 5 tooth
      - upper pharyngeal tooth
      - basibranchial tooth
      - basibranchial 4 tooth
      - basibranchial 2 tooth
      - trituration tooth
      - parasphenoid tooth
      - upper jaw symphyseal tooth
      - mammiliform tooth
      - metapterygoid tooth
      - anus
      - lacrimal sac
      - olfactory nerve
      - oculomotor nerve
      - abducens nerve
      - vestibulocochlear nerve
      - eyelid
      - upper eyelid
      - lower eyelid
      - nictitating membrane
      - uvea
      - iris
      - lacrimal canaliculus
      - ciliary body
      - iris stroma
      - layer of retina
      - pigmented layer of retina
      - photoreceptor layer of retina
      - outer nuclear layer of retina
      - outer plexiform layer of retina
      - inner nuclear layer of retina
      - ganglionic layer of retina
      - nerve fiber layer of retina
      - inner plexiform layer of retina
      - retinal neural layer
      - photoreceptor inner segment layer
      - photoreceptor outer segment layer
      - limiting membrane of retina
      - outer limiting layer of retina
      - inner limiting layer of retina
      - optic disc
      - fovea centralis
      - vitreous body
      - anterior segment of eyeball
      - posterior segment of eyeball
      - conjunctiva
      - lacrimal gland
      - accessory lacrimal gland
      - Krause's gland
      - Ciaccio's gland
      - crypt of Henle
      - intraorbital lacrimal gland
      - exorbital lacrimal gland
      - palpebral fissure
      - nasal cartilage
      - cartilage of nasal septum
      - nasal capsule
      - nasal opening
      - fenestra dorsalis nasi
      - fenestra endochoanalis
      - fenestra endonarina communis
      - fenestra lateralis nasi
      - fenestra nasobasalis
      - fenestra nasolateralis
      - fenestra precerebralis
      - fenestra prechoanalis
      - foramen orbitonasale laterale
      - foramen orbitonasale mediale
      - medial orbitonasal foramen
      - olfactory foramen
      - major alar cartilage
      - minor alar cartilage
      - accessory nasal cartilage
      - lateral nasal cartilage
      - vomeronasal cartilage
      - alary cartilage
      - cartilago ectochoanalis
      - cartilago infranarina
      - cartilago retronarina
      - inferior prenasal cartilage
      - medial inferior prenasal cartilage
      - oblique cartilage
      - paranasal commissure
      - paries nasi
      - planum antorbitale
      - planum conchale
      - planum internasale
      - superior prenasal cartilage
      - anterior prenasal cartilage
      - bony labyrinth
      - semicircular canal
      - anterior semicircular canal
      - posterior semicircular canal
      - lateral semicircular canal
      - canalis semicircularis anterior
      - cochlea
      - internal ear
      - membranous labyrinth
      - lacrimal drainage system
      - cochlear duct of membranous labyrinth
      - semicircular duct
      - anterior semicircular duct
      - posterior semicircular duct
      - lateral semicircular duct
      - endolymphatic duct
      - ductus reuniens
      - vestibular labyrinth
      - cerebral hemisphere
      - left cerebral hemisphere
      - right cerebral hemisphere
      - medulla oblongata
      - mammary gland
      - abdominal mammary gland
      - cervical mammary gland
      - thoracic mammary gland
      - inguinal mammary gland
      - lobule of mammary gland
      - retrochiasmatic area
      - regional part of spinal cord
      - spinal cord segment
      - cervical spinal cord
      - lumbar spinal cord
      - lumbar subsegment of spinal cord
      - L5 segment of lumbar spinal cord
      - L1 segment of lumbar spinal cord
      - L3 segment of lumbar spinal cord
      - L2 segment of lumbar spinal cord
      - L4 segment of lumbar spinal cord
      - thoracic spinal cord
      - thoracic subsegment of spinal cord
      - T4 segment of thoracic spinal cord
      - T5 segment of thoracic spinal cord
      - T6 segment of thoracic spinal cord
      - T7 segment of thoracic spinal cord
      - T8 segment of thoracic spinal cord
      - T1 segment of thoracic spinal cord
      - T2 segment of thoracic spinal cord
      - T3 segment of thoracic spinal cord
      - T9 segment of thoracic spinal cord
      - T10 segment of thoracic spinal cord
      - T11 segment of thoracic spinal cord
      - T12 segment of thoracic spinal cord
      - conus medullaris
      - sacral spinal cord
      - caudal segment of spinal cord
      - cervical subsegment of spinal cord
      - C1 segment of cervical spinal cord
      - C8 segment of cervical spinal cord
      - C3 segment of cervical spinal cord
      - C2 segment of cervical spinal cord
      - C4 segment of cervical spinal cord
      - C5 segment of cervical spinal cord
      - C6 segment of cervical spinal cord
      - C7 segment of cervical spinal cord
      - sacral subsegment of spinal cord
      - S1 segment of sacral spinal cord
      - S2 segment of sacral spinal cord
      - S3 segment of sacral spinal cord
      - S4 segment of sacral spinal cord
      - S5 segment of sacral spinal cord
      - presubiculum
      - substantia nigra pars compacta
      - substantia nigra pars reticulata
      - papillary layer of dermis
      - reticular layer of dermis
      - stratum basale of epidermis
      - stratum spinosum of epidermis
      - stratum corneum of epidermis
      - hyponychium
      - nipple
      - left nipple
      - right nipple
      - areola
      - dermis
      - stratum spongiosum
      - stratum granulosum of epidermis
      - stratum lucidum of epidermis
      - hair shaft
      - cuticle of hair
      - cortex of hair
      - skin of body
      - adenohypophysis
      - mammillary body
      - spiral organ of cochlea
      - spinal cord
      - vomeronasal organ
      - corpora quadrigemina
      - pupillary membrane
      - periventricular zone of hypothalamus
      - medial zone of hypothalamus
      - lateral zone of hypothalamus
      - lamina of spiral limbus
      - vestibular aqueduct
      - vestibular membrane of cochlear duct
      - stria vascularis of cochlear duct
      - nail matrix
      - central canal of spinal cord
      - neural crest
      - mesencephalic neural crest
      - telencephalon neural crest
      - diencephalon neural crest
      - rhombencephalon neural crest
      - spinal cord neural crest
      - hyoid arch neural crest
      - neurectoderm
      - meninx
      - leptomeninx
      - pia mater
      - brain pia mater
      - forebrain pia mater
      - telencephalon pia mater
      - diencephalon pia mater
      - midbrain pia mater
      - hindbrain pia mater
      - spinal cord pia mater
      - arachnoid mater
      - forebrain arachnoid mater
      - diencephalon arachnoid mater
      - telencephalon arachnoid mater
      - midbrain arachnoid mater
      - hindbrain arachnoid mater
      - spinal cord arachnoid mater
      - brain arachnoid mater
      - dura mater
      - brain dura mater
      - forebrain dura mater
      - telencephalon dura mater
      - diencephalon dura mater
      - midbrain dura mater
      - hindbrain dura mater
      - spinal dura mater
      - meninx of spinal cord
      - brain meninx
      - meninx of midbrain
      - meninx of hindbrain
      - forebrain meninges
      - meninx of telencephalon
      - meninx of diencephalon
      - nasolacrimal duct
      - skin gland
      - eye skin gland
      - eye sebaceous gland
      - sebaceous gland of eyelid
      - tarsal gland
      - gland of Zeis
      - sweat gland of eyelid
      - epidermis gland
      - sweat gland
      - apocrine sweat gland
      - cerumen gland
      - axillary sweat gland
      - areolar sweat gland
      - eccrine sweat gland
      - palmar/plantar sweat gland
      - sebaceous gland
      - skin sebaceous gland
      - areolar gland
      - modified sebaceous gland
      - preputial gland
      - female preputial gland
      - perianal sebaceous gland
      - Zymbal's gland
      - skin mucous gland
      - skin apocrine gland
      - skin scent gland
      - interdigital gland
      - pars intermedia of adenohypophysis
      - pars tuberalis of adenohypophysis
      - lens fiber
      - cochlear labyrinth
      - otolith organ
      - utricle of membranous labyrinth
      - saccule of membranous labyrinth
      - fasciolar gyrus
      - regional part of brain
      - pallium
      - ventral part of telencephalon
      - corpus striatum
      - habenular trigone
      - prefrontal cortex
      - pons
      - primary motor cortex
      - auditory cortex
      - right auditory cortex
      - left auditory cortex
      - dentate gyrus of hippocampal formation
      - forebrain
      - midbrain
      - ventro-caudal cluster
      - telencephalon
      - diencephalon
      - dorsal plus ventral thalamus
      - hypothalamus
      - epithalamus
      - ventral thalamus
      - habenula
      - preoptic area
      - midbrain tegmentum
      - superior colliculus
      - inferior colliculus
      - neocortex
      - Ammon's horn
      - hindbrain
      - cerebellum
      - subiculum
      - olfactory bulb
      - reticular formation
      - brainstem
      - midbrain tectum
      - hippocampal formation
      - lateral hypothalamic area
      - pituitary stalk
      - cerebellar peduncular complex
      - anterior hypothalamic region
      - intermediate hypothalamic region
      - temporal operculum
      - basal part of pons
      - prepyriform area
      - orbital operculum
      - precentral operculum
      - tuber cinereum
      - anterior median eminence
      - posterior median eminence
      - ventral tegmental area
      - basal forebrain
      - regional part of cerebellar cortex
      - cerebellar hemisphere
      - left hemisphere of cerebellum
      - right hemisphere of cerebellum
      - cerebellum lobule
      - cerebellum hemisphere lobule
      - alar central lobule
      - anterior quadrangular lobule
      - copula pyramidis
      - ansiform lobule
      - ansiform lobule crus I
      - ansiform lobule crus II
      - lobule simplex
      - paraflocculus
      - hemispheric lobule VIII
      - cerebellum hemispheric lobule II
      - cerebellum hemispheric lobule III
      - cerebellum hemispheric lobule IV
      - cerebellum hemispheric lobule V
      - cerebellum hemispheric lobule VII
      - cerebellum hemispheric lobule X
      - paravermis lobule area
      - paravermic lobule II
      - paravermic lobule III
      - paravermic lobule IV
      - paravermic lobule IX
      - paravermic lobule V
      - paravermic lobule VI
      - paravermic lobule VII
      - paravermic lobule VIII
      - paravermic lobule X
      - quadrangular lobule
      - cerebellum vermis lobule
      - central lobule
      - cerebellum vermis lobule I
      - cerebellum vermis lobule II
      - cerebellum vermis lobule III
      - cerebellum vermis lobule IV
      - cerebellum vermis lobule IX
      - cerebellum vermis lobule V
      - cerebellum vermis lobule VI
      - cerebellum vermis lobule VII
      - cerebellum vermis lobule VIIA
      - cerebellum vermis lobule VIIB
      - cerebellum vermis lobule VIII
      - cerebellum vermis lobule X
      - paramedian lobule
      - cerebellum vermis culmen
      - cerebellum intermediate zone
      - cerebellar vermis
      - cerebellum anterior vermis
      - cerebellum posterior vermis
      - vermis of the flocculonodular lobe of the cerebellum
      - cerebellum lobe
      - anterior lobe of cerebellum
      - flocculonodular lobe
      - posterior lobe of cerebellum
      - cerebrocerebellum
      - hemisphere part of cerebellar anterior lobe
      - hemisphere part of cerebellar posterior lobe
      - paravermis parts of the cerebellar cortex
      - paravermis of the posterior lobe of the cerebellum
      - paravermis of the anterior lobe of the cerebellum
      - flocculonodular lobe, hemisphere portion
      - flocculus
      - cerebellum vermis lobule VIIAf
      - cerebellum vermis lobule VIIAt
      - posterior hypothalamic region
      - olfactory cortex
      - secondary olfactory cortex
      - parietal operculum
      - olfactory trigone
      - frontal operculum
      - dorsal hypothalamic area
      - substantia nigra pars lateralis
      - cingulate cortex
      - hippocampal field
      - CA1 field of hippocampus
      - CA2 field of hippocampus
      - CA3 field of hippocampus
      - CA4 field of hippocampus
      - accessory olfactory bulb
      - parasubiculum
      - raphe nuclei
      - dorsal thalamus
      - left dorsal thalamus
      - right dorsal thalamus
      - piriform cortex
      - pyramid of medulla oblongata
      - circumventricular organ
      - secretory circumventricular organ
      - pineal body
      - subcommissural organ
      - median eminence of neurohypophysis
      - neurohypophysis
      - sensory circumventricular organ
      - area postrema
      - subfornical organ
      - supraoptic crest
      - saccus vasculosus
      - rostral ventrolateral medulla
      - perirhinal cortex
      - perirhinal cortex of Burwell et al 1995
      - perirhinal cortex of primate of Burwell et al 1995
      - perirhinal cortex of rodent of Burwell et al 1995
      - subdivision of diagonal band
      - horizontal limb of the diagonal band
      - vertical limb of the diagonal band
      - Hadjikhani et al. (1998) visuotopic area V2d
      - nidopallium
      - hyperpallium
      - mesopallium
      - arcopallium
      - midbrain raphe nuclei
      - subparaventricular zone
      - superior cerebellar peduncle of midbrain
      - superior cerebellar peduncle of pons
      - medial preoptic region
      - rostral migratory stream
      - dorsolateral prefrontal cortex
      - anterior cingulate cortex
      - lower rhombic lip
      - upper rhombic lip
      - pole of cerebral hemisphere
      - temporal pole
      - frontal pole
      - occipital pole
      - main olfactory bulb
      - operculum of brain
      - retrorubral area of midbrain reticular nucleus
      - anterior division of bed nuclei of stria terminalis
      - posterior division of bed nuclei of stria terminalis
      - pineal gland stalk
      - core of nucleus accumbens
      - shell of nucleus accumbens
      - Brodmann area
      - Brodmann (1909) area 29
      - Brodmann (1909) area 26
      - anterior transverse temporal area 41
      - posterior transverse temporal area 42
      - Brodmann (1909) area 1
      - Brodmann (1909) area 3
      - Brodmann (1909) area 24
      - Brodmann (1909) area 35
      - Brodmann (1909) area 36
      - Brodmann (1909) area 5
      - Brodmann (1909) area 6
      - Brodmann (1909) area 18
      - Brodmann (1909) area 30
      - Brodmann (1909) area 31
      - Brodmann (1909) area 33
      - Brodmann (1909) area 34
      - Brodmann (1909) area 37
      - Brodmann (1909) area 38
      - Brodmann (1909) area 39
      - Brodmann (1909) area 44
      - Brodmann (1909) area 45
      - Brodmann (1909) area 46
      - Brodmann (1909) area 47
      - Brodmann (1909) area 48
      - Brodmann (1909) area 52
      - Brodmann (1909) area 11
      - Brodmann (1909) area 2
      - Brodmann (1909) area 4
      - Brodmann (1909) area 7
      - Brodmann (1909) area 8
      - Brodmann (1909) area 9
      - Brodmann (1909) area 10
      - Brodmann (1909) area 12
      - Brodmann (1909) area 13
      - Brodmann (1909) area 14
      - Brodmann (1909) area 15
      - Brodmann (1909) area 16
      - Brodmann (1909) area 19
      - Brodmann (1909) area 20
      - Brodmann (1909) area 21
      - Brodmann (1909) area 22
      - Brodmann (1909) area 23
      - Brodmann (1909) area 25
      - Brodmann (1909) area 27
      - Brodmann (1909) area 28
      - Brodmann (1909) area 32
      - Brodmann (1909) area 43
      - Brodmann (1909) area 8a
      - Brodmann (1909) area 40
      - Brodmann (1909) area 17
      - retrosplenial region
      - koniocortex
      - dorsal cap of Kooy
      - medial accessory olive
      - periamygdaloid cortex
      - dorsal tegmental nucleus pars dorsalis
      - dorsal tegmental nucleus pars ventralis
      - anterior nucleus of hypothalamus anterior part
      - anterior nucleus of hypothalamus central part
      - anterior nucleus of hypothalamus posterior part
      - anterior nucleus of hypothalamus dorsal part
      - tuberomammillary nucleus dorsal part
      - tuberomammillary nucleus ventral part
      - paraventricular nucleus of the hypothalamus descending division - medial parvocellular part, ventral zone
      - paraventricular nucleus of the hypothalamus descending division - dorsal parvocellular part
      - paraventricular nucleus of the hypothalamus descending division - lateral parvocellular part
      - paraventricular nucleus of the hypothalamus descending division - forniceal part
      - paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part
      - paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part
      - paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part
      - paraventricular nucleus of the hypothalamus descending division
      - paraventricular nucleus of the hypothalamus magnocellular division
      - paraventricular nucleus of the hypothalamus parvocellular division
      - fundus striati
      - vestibulocerebellum
      - spinocerebellum
      - dorsal ventricular ridge of pallium
      - allocortex
      - archicortex
      - paleocortex
      - periallocortex
      - medial pallium
      - dorsal pallium
      - lateral pallium
      - P1 area of pallium (Myxiniformes)
      - P2 area of pallium (Myxiniformes)
      - P3 area of pallium (Myxiniformes)
      - P4 area of pallium (Myxiniformes)
      - P5 area of pallium (Myxiniformes)
      - hyperpallium apicale
      - interstitial part of hyperpallium apicale
      - entopallium
      - cerebellopontine angle
      - thalamic eminence
      - ventral pallium
      - retrosplenial granular cortex
      - proisocortex
      - genu of corpus callosum
      - premotor cortex
      - supplemental motor cortex
      - anterior perforated substance
      - ventral zone of medial entorhinal cortex
      - uncinate fasciculus of the forebrain
      - inferior rostral gyrus
      - superior rostral gyrus
      - retrohippocampal region
      - planum temporale
      - medial orbital frontal cortex
      - posterior cingulate cortex
      - occipital fusiform gyrus
      - inferior lateral occipital cortex
      - superior lateral occipital cortex
      - anterior parahippocampal gyrus
      - temporal fusiform gyrus
      - anterior temporal fusiform gyrus
      - posterior temporal fusiform gyrus
      - paracingulate gyrus
      - anterior corona radiata
      - superior corona radiata
      - posterior corona radiata
      - rostral anterior cingulate cortex
      - olfactory entorhinal cortex
      - primary olfactory cortex
      - pericalcarine cortex
      - orbital gyri complex
      - lateral orbital frontal cortex
      - transverse frontopolar gyri complex
      - paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone
      - paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone
      - lateral amygdaloid nucleus, dorsolateral part
      - lateral amygdaloid nucleus, ventrolateral part
      - lateral amygdaloid nucleus, ventromedial part
      - superficial feature part of forebrain
      - superficial feature part of occipital lobe
      - cytoarchitectural part of dentate gyrus
      - intermediate part of hypophysis
      - subicular complex
      - gross anatomical parts of the cerebellum
      - temporoparietal junction
      - planum polare
      - hippocampal formation of GP94
      - medial ventral tegmental area
      - islands of Calleja of olfactory tubercle
      - isla magna of Calleja
      - postrhinal cortex of rodent of Burwell et al 1995
      - Sommer's sector
      - bed nuclei of the stria terminalis oval nucleus
      - rostral portion of the medial accessory olive
      - superficial feature part of the cerebellum
      - principal anterior division of supraoptic nucleus
      - chemoarchitectural part of brain
      - chemoarchitectural part of striatum
      - matrix compartment
      - matrix compartment of caudate nucleus
      - matrix part of head of caudate nucleus
      - matrix part of tail of caudate nucleus
      - matrix compartment of putamen
      - striosome
      - striosomal part of caudate nucleus
      - striosomal part of body of caudate nucleus
      - striosomal part of putamen
      - basis pontis
      - inferior transverse frontopolar gyrus
      - medial transverse frontopolar gyrus
      - superior transverse frontopolar gyrus
      - Hadjikhani et al. (1998) visuotopic partition scheme region
      - Hadjikhani et al. (1998) visuotopic area V1d
      - Hadjikhani et al. (1998) visuotopic area V1v
      - Hadjikhani et al. (1998) visuotopic area V2v
      - Hadjikhani et al. (1998) visuotopic area V3
      - Hadjikhani et al. (1998) visuotopic area V3A
      - Hadjikhani et al. (1998) visuotopic area VP
      - Hadjikhani et al. (1998) visuotopic area V4v
      - Hadjikhani et al. (1998) visuotopic area V8
      - Tootell and Hadjikhani (2001) LOC/LOP complex
      - Press, Brewer, Dougherty, Wade and Wandell (2001) visuotopic area V7
      - Ongur, Price, and Ferry (2003) prefrontal cortical partition scheme region
      - Ongur, Price, and Ferry (2003) area 10p
      - Ongur, Price, and Ferry (2003) area 10r
      - Ongur, Price, and Ferry (2003) area 10o
      - Ongur, Price, and Ferry (2003) area 10m
      - Ongur, Price, and Ferry (2003) area 11m
      - Ongur, Price, and Ferry (2003) area 47s
      - Ongur, Price, and Ferry (2003) area 13b
      - Ongur, Price, and Ferry (2003) area 13a
      - Ongur, Price, and Ferry (2003) area 14r
      - Ongur, Price, and Ferry (2003) area 14c
      - Ongur, Price, and Ferry (2003) area 24
      - Ongur, Price, and Ferry (2003) area 25
      - Ongur, Price, and Ferry (2003) area 32
      - Ongur, Price, and Ferry (2003) area G
      - Ongur, Price, and Ferry (2003) area PrCO
      - Ongur, Price, and Ferry (2003) area 11l
      - Ongur, Price, and Ferry (2003) area 13m
      - Ongur, Price, and Ferry (2003) area 13l
      - Ongur, Price, and Ferry (2003) area 47l
      - Ongur, Price, and Ferry (2003) area 47m
      - Ongur, Price, and Ferry (2003) area 47r
      - Ongur, Price, and Ferry (2003) area Iam
      - Ongur, Price, and Ferry (2003) area Ial
      - Ongur, Price, and Ferry (2003) area Iai
      - Ongur, Price, and Ferry (2003) area 9
      - Ongur, Price, and Ferry (2003) area 10l
      - Ongur, Price, and Ferry (2003) area Iapm
      - Ongur, Price, and Ferry (2003) area AON
      - isthmus of cingulate cortex
      - suprachiasmatic nucleus dorsomedial part
      - suprachiasmatic nucleus ventrolateral part
      - caudal anterior cingulate cortex
      - cytoarchitecture of entorhinal cortex
      - retrolenticular part of internal capsule
      - primary auditory cortex
      - secondary auditory cortex
      - uncus of parahippocampal gyrus
      - uncal CA1
      - uncal CA2
      - uncal CA3
      - rostral CA1
      - rostral CA2
      - rostral CA3
      - caudal CA1
      - caudal CA2
      - caudal CA3
      - posterior parietal cortex
      - granular insular cortex
      - agranular insular cortex
      - amygdalopiriform transition area
      - functional part of brain
      - somatosensory cortex
      - primary somatosensory cortex
      - secondary somatosensory cortex
      - barrel cortex
      - association cortex
      - visual association cortex
      - temporal cortex association area
      - rostral periventricular region of the third ventricle
      - cortical visual area
      - visual cortex
      - primary visual cortex
      - secondary visual cortex
      - second visual cortical area (sensu Mustela putorius furo)
      - third visual cortical area (sensu Mustela putorius furo)
      - fourth visual cortical area (sensu Mustela putorius furo)
      - temporal visual area a (sensu Mustela putorius furo)
      - temporal visual area b (sensu Mustela putorius furo)
      - posterior parietal rostral cortical area (sensu Mustela putorius furo)
      - posterior parietal caudal cortical area (sensu Mustela putorius furo)
      - anteromedial lateral suprasylvian visual area (sensu Mustela putorius furo)
      - anterolateral lateral suprasylvian visual area (sensu Mustela putorius furo)
      - posteromedial lateral suprasylvian visual area (sensu Mustela putorius furo)
      - posterolateral lateral suprasylvian visual area (sensu Mustela putorius furo)
      - dorsal lateral suprasylvian visual cortical area (sensu Mustela putorius furo)
      - ventral lateral suprasylvian visual area (sensu Mustela putorius furo)
      - posterior suprasylvian visual cortical area (sensu Mustela putorius furo)
      - anterior ectosylvian visual area (sensu Mustela putorius furo)
      - spenial visual area (sensu Mustela putorius furo)
      - cingulate visual area (sensu Mustela putorius furo)
      - A lamina of the lateral geniculate nucleus (sensu Mustela putorius furo)
      - A1 lamina of the lateral geniculate nucleus (sensu Mustela putorius furo)
      - C lamina of the lateral geniculate nucleus (sensu Mustela putorius furo)
      - Perigeniculate lamina of the lateral geniculate nucleus (sensu Mustela putorius furo)
      - amygdalohippocampal transition area
      - amygdalohippocampal area, magnocellular division
      - amygdalohippocampal area, parvocellular division
      - extrapyramidal tract system
      - dorsal auditory area
      - posterior parietal association areas
      - postrhinal area
      - primary visual area, layer 6a
      - anteromedial visual area
      - anterolateral visual area
      - lateral visual area
      - posterolateral visual area
      - posteromedial visual area
      - primary visual area, layer 4
      - primary visual area, layer 5
      - primary visual area, layer 2/3
      - anterolateral visual area, layer 5
      - posteromedial visual area, layer 6a
      - postrhinal area, layer 4
      - rostrolateral visual area
      - anteromedial visual area, layer 5
      - posteromedial visual area, layer 4
      - lateral visual area, layer 4
      - lateral visual area, layer 5
      - dorsal auditory area, layer 4
      - lateral visual area, layer 6a
      - posterolateral visual area, layer 4
      - rostrolateral area, layer 5
      - dorsolateral part of supraoptic nucleus
      - anterior segment of paracentral lobule
      - posterior segment of paracentral lobule
      - calcar avis of the lateral ventricle
      - postsubiculum
      - interanterodorsal nucleus of the thalamus
      - intergeniculate leaflet of the lateral geniculate complex
      - dopaminergic cell groups
      - A8 dopaminergic cell group
      - A14 dopaminergic cell group
      - A15 dopaminergic cell group
      - A9 dopaminergic cell group
      - A17 dopaminergic cell group
      - A10 dopaminergic cell group
      - A11 dopaminergic cell group
      - A13 dopaminergic cell group
      - A16 dopaminergic cell group
      - A12 dopaminergic cell group
      - Aaq dopaminergic cell group
      - telencephalic dopaminergic cell group
      - nucleus of the brachium of the inferior colliculus
      - ambient gyrus
      - secondary prosencephalon
      - inferior lobe
      - central pretectum
      - lateral granular eminence
      - corpus cerebelli
      - dorsal periventricular hypothalamus
      - granular eminence
      - medial division
      - synencephalon
      - vestibulolateralis lobe
      - dorsal zone of median tuberal portion of hypothalamus
      - medial caudal lobe
      - median tuberal portion
      - torus longitudinalis
      - periventricular grey zone
      - glossopharyngeal lobe
      - lateral division
      - torus semicircularis
      - valvula cerebelli
      - caudal tuberculum
      - caudal zone of median tuberal portion of hypothalamus
      - superficial pretectum
      - ventral zone
      - eminentia granularis
      - medullary command nucleus
      - noradrenergic cell groups
      - locus ceruleus
      - noradrenergic cell group A1
      - noradrenergiccell group A2
      - noradrenergic cell group A4
      - noradrenergic cell group A5
      - noradrenergic cell group A7
      - noradrenergic cell group A6sc
      - noradrenergic cell group Acg
      - visceral area
      - parapyramidal nucleus
      - parapyramidal nucleus, deep part
      - parapyramidal nucleus, superficial part
      - prelimbic area
      - infralimbic area
      - piriform-amygdalar area
      - dorsal peduncular area
      - gustatory cortex
      - somatomotor area
      - triangular part of inferior frontal gyrus
      - entorhinal cortex
      - isthmus of cingulate gyrus
      - apex of cochlea
      - macula lutea proper
      - opercular part of inferior frontal gyrus
      - pontine tegmentum
      - midbrain-hindbrain boundary
      - roof plate
      - rhombomere roof plate
      - rhombomere 1 roof plate
      - rhombomere 2 roof plate
      - rhombomere 3 roof plate
      - rhombomere 4 roof plate
      - rhombomere 5 roof plate
      - rhombomere 6 roof plate
      - rhombomere 7 roof plate
      - rhombomere 8 roof plate
      - pre-chordal neural plate
      - ciliary marginal zone
      - optic cup
      - trunk neural crest
      - cranial neural crest
      - glossopharyngeal neural crest
      - trigeminal neural crest
      - facio-acoustic neural crest
      - mandibular neural crest
      - hyoid neural crest
      - facial neural crest
      - blood-cerebrospinal fluid barrier
      - mammary gland alveolus
      - gland of diencephalon
      - pituitary gland
      - roof plate of midbrain
      - roof plate of telencephalon
      - roof plate of diencephalon
      - roof plate of metencephalon
      - roof plate of medulla oblongata
      - mesenchyme of mammary gland
      - submucosa of anal canal
      - mucosa of anal canal
      - mesenchyme of nasal septum
      - mammary gland connective tissue
      - mammary gland fat
      - mammary fat pad
      - interlobular stroma of mammary gland
      - intralobular stroma of mammary gland
      - tooth crown
      - molar crown
      - tooth root
      - root of molar tooth
      - Pacinian corpuscle
      - vestibular nerve
      - sensory dissociation area
      - brain ventricle/choroid plexus
      - choroid plexus
      - choroid plexus of third ventricle
      - choroid plexus of fourth ventricle
      - choroid plexus of lateral ventricle
      - choroid plexus of tectal ventricle
      - brain ventricle
      - telencephalic ventricle
      - anterior horn of lateral ventricle
      - body of lateral ventricle
      - posterior horn lateral ventricle
      - left lateral ventricle
      - right lateral ventricle
      - third ventricle
      - midbrain cerebral aqueduct
      - fourth ventricle
      - ocular fundus
      - cutaneous elastic tissue
      - saccule duct
      - utricle duct
      - utricle valve
      - interventricular foramen of CNS
      - periocular mesenchyme
      - semicircular canal ampulla
      - neural tube marginal layer
      - hindbrain marginal layer
      - cerebellum marginal layer
      - neural tube basal plate
      - basal plate metencephalon
      - basal plate medulla oblongata
      - myelencephalon basal plate
      - nasolabial region
      - optic vesicle
      - anterior ectodermal midgut
      - Harderian gland
      - eye muscle
      - orbicularis oculi muscle
      - orbitalis muscle
      - otic capsule
      - cartilaginous otic capsule
      - bony otic capsule
      - otic capsule pre-cartilage condensation
      - fourth ventricle aperture
      - fourth ventricle median aperture
      - fourth ventricle lateral aperture
      - septum pellucidum
      - crista ampullaris
      - cochlear nerve
      - neuromere
      - rhombomere
      - rhombomere 1
      - rhombomere 3
      - rhombomere 4
      - rhombomere 5
      - rhombomere 6
      - rhombomere 7
      - rhombomere 8
      - rhombomere 2
      - rhombomere 9
      - rhombomere 10
      - rhombomere 11
      - prosomere
      - midbrain neuromere
      - mesomere 1
      - mesomere 2
      - spinal neuromere
      - segmental subdivision of hindbrain
      - metencephalon
      - myelencephalon
      - prootic bone
      - dermal skeletal element
      - dermal bone
      - tetrapod frontal bone
      - lacrimal bone
      - nasal bone
      - left nasal bone
      - right nasal bone
      - jugal bone
      - squamous part of temporal bone
      - interparietal bone
      - premaxilla
      - maxilla
      - cleithrum
      - dentary
      - mandible
      - articular/anguloarticular
      - actinopterygian parietal bone
      - actinopterygian frontal bone
      - furcula
      - prefrontal bone
      - gastralium
      - angular bone
      - septomaxilla bone
      - postfrontal bone
      - postorbital bone
      - quadratojugal bone
      - coronoid bone
      - precoronoid bone
      - postcoronoid bone
      - anterior coronoid bone
      - posterior coronoid bone
      - early premaxilla
      - supratemporal bone
      - intertemporal bone
      - tabular bone
      - splenial bone
      - surangular bone
      - surangular pit line
      - prearticular bone
      - frontoparietal bone
      - interclavicle
      - parasternal process
      - dermal element of plastron
      - epiplastron
      - entoplastron
      - hypoplastron
      - xiphiplastron
      - hyoplastron
      - palate bone
      - palatine bone
      - vomer
      - parasphenoid
      - pterygoid bone
      - ectopterygoid bone
      - angular/surangular bone
      - supramaxilla
      - suprapreopercle
      - antorbital
      - opercle
      - preopercle
      - subopercle
      - preopercle horizontal limb
      - preopercle vertical limb
      - gill raker
      - infraorbital
      - infraorbital 1
      - infraorbital 5
      - infraorbital 2
      - infraorbital 3
      - infraorbital 4
      - infraorbital 6
      - infraorbital 7
      - infraorbital 8
      - infraorbital 9
      - infraorbital 10
      - infraorbital 11
      - infraorbital 12
      - dermosphenotic
      - postcleithrum
      - postcleithrum 1
      - postcleithrum 2
      - postcleithrum 3
      - urohyal
      - branchiostegal ray
      - branchiostegal ray 1
      - branchiostegal ray 3
      - branchiostegal ray 2
      - posttemporal
      - pterotic
      - supracleithrum
      - entopterygoid
      - extrascapula
      - lateral extrascapular
      - median extrascapular
      - interopercle
      - supraorbital bone
      - anterior supraorbital bone
      - coronomeckelian
      - supraethmoid
      - kinethmoid bone
      - pharyngeal tooth plate
      - lower pharyngobranchial toothplate
      - basihyal tooth plate
      - upper pharyngeal 4 tooth plate
      - upper pharyngeal 5 tooth plate
      - upper pharyngeal tooth plate
      - basibranchial tooth plate
      - basibranchial 4 tooth plate
      - basibranchial 2 tooth plate
      - pharyngobranchial tooth plate
      - pharyngobranchial 2 tooth plate
      - pharyngobranchial 3 tooth plate
      - pharyngobranchial 1 tooth plate
      - pharyngobranchial 4 tooth plate
      - median premaxilla
      - caudal-fin stay
      - nuchal plate
      - anterior nuchal plate
      - middle nuchal plate
      - posterior nuchal plate
      - accessory vomerine tooth plate
      - sensory canal tubular ossicle
      - rostral plate
      - parietal-supraoccipital
      - posttemporal-supracleithrum
      - canal plate
      - pterotic-posttemporal-supracleithrum
      - hypomaxilla
      - dermethmoid
      - bony plate
      - lateral plate
      - gular plate
      - fulcrum
      - basal fulcrum
      - caudal basal fulcrum
      - epaxial basal fulcrum
      - hypaxial basal fulcrum
      - fringing fulcrum
      - fish scute
      - dorsal scute
      - abdominal scute
      - caudal scute
      - infranuchal scute
      - predorsal scute
      - maxillopalatine
      - nasopremaxilla
      - pseudodentary
      - corpus
      - angulosplenial
      - prenasal (amphibians)
      - anocleithrum
      - lepidotrichium
      - fin spine
      - median fin spine
      - dorsal fin spine
      - dorsal fin spine 1
      - dorsal fin spine 2
      - procumbent dorsal fin spine
      - anal fin spine
      - anal fin spine 1
      - anal fin spine 2
      - median fin lepidotrichium
      - caudal fin lepidotrichium
      - caudal procurrent ray
      - caudal fin dorsal procurrent ray
      - caudal fin ventral procurrent ray
      - ventral caudal procurrent ray 2
      - ventral caudal procurrent ray 1
      - ventral caudal procurrent ray 3
      - ventral caudal procurrent ray 4
      - caudal principal ray
      - caudal principal ray 1
      - caudal principal ray 2
      - caudal principal ray 3
      - caudal principal ray 4
      - caudal principal ray 5
      - caudal principal ray 6
      - caudal principal ray 7
      - caudal principal ray 8
      - caudal principal ray 9
      - caudal principal ray 10
      - caudal principal ray 11
      - caudal principal ray 12
      - caudal principal ray 13
      - caudal principal ray 14
      - caudal principal ray 15
      - caudal principal ray 16
      - caudal principal ray 17
      - caudal principal ray 18
      - caudal principal ray 19
      - branched caudal fin ray
      - hypochordal lepidotrichium
      - epichordal lepidotrichium
      - anal fin lepidotrichium
      - anal fin ray
      - anal fin ray 1
      - anal fin ray 2
      - anal fin ray 3
      - anal fin ray 4
      - anal fin ray 5
      - anal fin ray 6
      - anal fin ray 7
      - branched anal fin ray
      - unbranched anal fin ray
      - dorsal fin lepidotrichium
      - dorsal fin ray
      - dorsal fin ray 1
      - dorsal fin ray 2
      - dorsal fin ray 3
      - dorsal fin ray 4
      - dorsal fin ray 5
      - dorsal fin ray 6
      - dorsal fin ray 7
      - branched dorsal fin ray
      - unbranched dorsal fin ray
      - adipose fin ray
      - extratemporal bone
      - extracleithrum
      - median dorsal plate
      - presupracleithrum
      - urodermal bone
      - dorsal cleithrum
      - ventral cleithrum
      - rostrodermethmoid
      - anterolateral plate
      - anteroventral plate
      - interolateral plate
      - spinal plate
      - posterior dorsolateral plate
      - anterior ventrolateral plate
      - posterior ventrolateral plate
      - ectocoracoid bone
      - postsplenial
      - submandibular bone
      - prenasal ossicle
      - gland of anal canal
      - tapetum lucidum of camera-type eye
      - choroid tapetum lucidum
      - choroidal guanine tapetum
      - choroidal tapetum cellulosum
      - choroidal tapetum fibrosum
      - retinal tapetum lucidum
      - parietal organ
      - ectodermal part of digestive tract
      - Rathkes pouch epithelium
      - mucosa of nasal septum
      - mucosa of lacrimal canaliculus
      - mucosa of nasolacrimal duct
      - mucosa of lacrimal sac
      - primary nerve cord
      - ventral nerve cord
      - primary dorsal nerve cord
      - collar nerve cord
      - forebrain-midbrain boundary
      - hindbrain-spinal cord boundary
      - neuropore
      - anterior neuropore
      - posterior neuropore
      - parenchyma of central nervous system
      - pineal parenchyma
      - tooth enamel organ
      - incisor enamel organ
      - molar enamel organ
      - hair medulla
      - choroid plexus stroma
      - lateral ventricle choroid plexus stroma
      - third ventricle choroid plexus stroma
      - fourth ventricle choroid plexus stroma
      - osseus labyrinth vestibule
      - tela choroidea of midbrain cerebral aqueduct
      - tela choroidea of fourth ventricle
      - tela choroidea of third ventricle
      - tela choroidea of telencephalic ventricle
      - lens vesicle
      - vagal neural crest
      - filum terminale
      - neural tube lateral wall
      - midbrain lateral wall
      - rhombomere lateral wall
      - rhombomere 1 lateral wall
      - rhombomere 2 lateral wall
      - rhombomere 3 lateral wall
      - rhombomere 4 lateral wall
      - rhombomere 5 lateral wall
      - rhombomere 6 lateral wall
      - rhombomere 7 lateral wall
      - rhombomere 8 lateral wall
      - telencephalon lateral wall
      - diencephalon lateral wall
      - spinal cord lateral wall
      - non-neural ectoderm
      - preplacodal ectoderm
      - crus commune
      - roof plate spinal cord region
      - neuraxis flexure
      - cephalic midbrain flexure
      - cervical flexure
      - pontine flexure
      - conjunctival sac
      - primary choana
      - bulb of hair follicle
      - vibrissa hair bulb
      - hair root sheath
      - hair inner root sheath
      - vibrissa inner root sheath
      - hair outer root sheath
      - vibrissa outer root sheath
      - vibrissa root sheath
      - hair root sheath matrix
      - infundibulum of hair follicle
      - eye trabecular meshwork
      - pre-Botzinger complex
      - falx cerebri
      - inferior parietal cortex
      - inferior horn of the lateral ventricle
      - superior parietal cortex
      - cochlear canal
      - diencephalic part of interventricular foramen
      - telencephalic part of interventricular foramen
      - chamber of eyeball
      - anterior chamber of eyeball
      - posterior chamber of eyeball
      - vitreous chamber of eyeball
      - remnant of Rathke's pouch
      - osseus cochlear canal
      - pectinate line
      - tentorium cerebelli
      - foramen cecum of frontal bone
      - cochlear modiolus
      - osseus spiral lamina
      - spiral ligament
      - canthus
      - inner canthus
      - inner canthus of right eye
      - inner canthus of left eye
      - outer canthus
      - right outer canthus
      - left outer canthus
      - corneo-scleral junction
      - suspensory ligament of lens
      - arthropod optic lobe
      - cephalopod optic lobe
      - nasal skeleton
      - osseus cochlea
      - medial entorhinal cortex
      - lateral entorhinal cortex
      - stratum compactum of dermis
      - stratum intermedium of tooth
      - external nose
      - osseus semicircular canal
      - nail plate
      - feather calamus
      - feather vane
      - afterfeather
      - feather barb
      - feather barbule
      - nasal bridge
      - helicotrema
      - enamel knot
      - neuromast
      - mandibular lateral line neuromast
      - otic lateral line neuromast
      - infraorbital lateral line neuromast
      - opercular lateral line neuromast
      - middle lateral line neuromast
      - posterior lateral line neuromast
      - occipital lateral line neuromast
      - supraorbital lateral line neuromast
      - anterior lateral line neuromast
      - Jakubowski's organ
      - dorsal lateral line neuromast
      - lateral line nerve
      - posterior lateral line nerve
      - anterior lateral line nerve
      - dorsal anterior lateral line nerve
      - ventral anterior lateral line nerve
      - middle lateral line nerve
      - anterodorsal lateral line nerve (ADLLN)
      - ramus superficial ophthalmic
      - ramus buccal
      - anteroventral lateral line nerve (AVLLN)
      - ramus mandibularis externus
      - jugal ramule
      - oral ramule
      - preopercular ramule
      - posterior lateral line nerve (PLLN)
      - ramus lateral
      - ramus ventral
      - middle lateral line nerve (MLLN)
      - ramus supraotic
      - ramulus suprabranchialis anterior
      - ramulus suprabranchialis posterior
      - ampullary organ
      - substratum of layer of retina
      - sublaminar layers S1 or S2
      - sublaminar layer S1
      - sublaminar layer S2
      - sublaminar layers S2 or S3
      - sublaminar layer S3
      - sublaminar layers S4 or S5
      - sublaminar layer S4
      - sublaminar layer S5
      - sublaminar layers S3 or S4
      - sublaminar layers S1 or S2 or S5
      - sublaminar layers S1 or S2 or S3
      - sublaminar layers S2 or S3 or S4
      - sublaminar layers S1 or S3 or S4
      - sublaminar layers S3 or S4 or S5
      - sublaminar layers S1 or S2 or S3 or S4
      - hoof lamina
      - ciliary stroma
      - vomeronasal nerve
      - distal limb integumentary appendage
      - nail
      - toilet claw
      - nail of manual digit
      - nail of manual digit 1
      - nail of manual digit 2
      - nail of manual digit 3
      - nail of manual digit 4
      - nail of manual digit 5
      - nail of pedal digit
      - nail of pedal digit 1
      - nail of pedal digit 2
      - nail of pedal digit 3
      - nail of pedal digit 4
      - nail of pedal digit 5
      - hoof
      - forebrain midbrain boundary neural plate
      - border between sublaminar layers
      - border of sublaminar layers S1 and S2
      - border of sublaminar layers S3 and S4
      - border of sublaminar layers S4 and S5
      - border of sublaminar layers S2 and S3
      - zona limitans intrathalamica
      - anal column
      - dentate gyrus subgranular zone
      - sacral neural crest
      - future hindbrain meninx
      - lateral line
      - dorsal lateral line
      - posterior lateral line
      - upper lateral line
      - ventral lateral line
      - anterior lateral line
      - supraorbital lateral line
      - occipital lateral line
      - infraorbital lateral line
      - middle lateral line
      - mandibular lateral line
      - opercular lateral line
      - otic lateral line
      - plica semilunaris of conjunctiva
      - eyeball of camera-type eye
      - placodal ectoderm
      - filum terminale internum
      - filum terminale externum
      - lacrimal punctum
      - midbrain neural tube
      - subdivision of conjunctiva
      - palpebral conjunctiva
      - bulbar conjunctiva
      - conjunctival fornix
      - lacrimal caruncle
      - neural crest-derived structure
      - mandibular ramus
      - enteric plexus
      - myenteric nerve plexus
      - myenteric nerve plexus of anorectum
      - myenteric nerve plexus of appendix
      - myenteric nerve plexus of colon
      - myenteric nerve plexus of small intestine
      - submucous nerve plexus
      - submucous nerve plexus of anorectum
      - submucous nerve plexus of appendix
      - submucous nerve plexus of colon
      - submucous nerve plexus of small intestine
      - subserosal plexus
      - arachnoid barrier layer
      - arachnoid trabecula
      - cornea
      - dento-alveolar joint
      - orbit of skull
      - sensory root of facial nerve
      - jaw skeleton
      - meckelian bone
      - secondary palate
      - soft palate
      - palatine uvula
      - dental pulp
      - incisor dental pulp
      - dental pulp of median incisor tusk
      - molar dental pulp
      - corneal epithelium
      - sclera
      - substantia propria of cornea
      - enteric nervous system
      - superior part of vestibular ganglion
      - inferior part of vestibular ganglion
      - terminal nerve
      - Meckel's cartilage
      - hard palate
      - skeleton of upper jaw
      - skeleton of lower jaw
      - epithelium of soft palate
      - epithelium of hard palate
      - facial bone
      - sphenoid bone
      - ethmoid bone
      - zygomatic arch
      - left zygomatic arch
      - right zygomatic arch
      - interfrontal bone
      - nasal concha of ethmoid bone
      - supreme nasal concha
      - superior nasal concha
      - middle nasal concha
      - inferior nasal concha
      - facial bone primordium
      - presphenoid bone
      - postsphenoidal bone
      - body of sphenoid
      - endochondral scleral ossicle
      - anterior sclerotic bone
      - posterior sclerotic bone
      - intramembranous scleral ossicle
      - os opticus
      - palpebral bone
      - scleral sesamoid bone
      - bone of jaw
      - bone of lower jaw
      - mentomeckelian
      - retroarticular
      - articular bone
      - pseudoangular
      - parasymphysial plate
      - mesial parasymphysial foramen
      - lateral parasymphysial foramen
      - bone of upper jaw
      - quadrate bone
      - metapterygoid
      - autopalatine
      - rhinosphenoid
      - ethomosphenoid region
      - eyelid connective tissue
      - eyelid submuscular connective tissue
      - dermis connective tissue
      - dermis adipose tissue
      - ganoine
      - elasmodine
      - palatal muscle
      - palatoglossus muscle
      - levator veli palatini
      - tensor veli palatini
      - palatopharyngeus muscle
      - uvular muscle
      - sella turcica
      - anterior stroma of cornea
      - posterior stroma of cornea
      - gonial bone
      - tarsal gland acinus
      - alveolar ridge
      - alveolar process of maxilla
      - processus pterygoideus of maxilla
      - alveolar ridge of mandible
      - alveolar ridge of premaxilla
      - cribriform plate
      - sphenoid bone pterygoid process
      - temporal process of zygomatic bone
      - zygomatic process of temporal bone
      - mandible condylar process
      - mandible head
      - mandible neck
      - mandible coronoid process
      - mandible temporal crest
      - medial palpebral ligament
      - palatoquadrate cartilage
      - hyoquadrate process
      - eyelid tarsus
      - superior eyelid tarsus
      - inferior eyelid tarsus
      - mucosa of palate
      - mucosa of soft palate
      - mucosa of uvula
      - mucosa of hard palate
      - segmental spinal nerve
      - capillary layer of choroid
      - malleus head
      - malleus processus brevis
      - malleus neck
      - corneal primordium
      - foramen rotundum
      - secondary palatal shelf
      - primary palate
      - upper jaw molar epithelium
      - lower jaw molar epithelium
      - secondary palatal shelf epithelium
      - primary palate epithelium
      - upper jaw incisor epithelium
      - lower jaw incisor epithelium
      - maxillary process of inferior nasal concha
      - palatine process of maxilla
      - ethmoidal process of inferior nasal concha
      - orbital fissure
      - superior orbital fissure
      - inferior orbital fissure
      - incisive canal
      - mandibular canal
      - manubrium of malleus
      - mental foramen
      - mandible angular process
      - periodontal ligament
      - transverse palatine fold
      - dental follicle
      - branchial basket
      - geschmacksstreifen
      - sensory root of trigeminal nerve
      - chromaffin system
      - layer of sclera
      - episcleral layer of eyeball
      - substantia propria of sclera
      - suprachoroid lamina
      - skeletal element of eye region
      - scleral skeletal element
      - scleral cartilage
      - posterior sclerotic cartilage
      - anterior sclerotic cartilage
      - scleral ossicle
      - sclerotic ring
      - nictitating membrane lamina
      - optic pedicel
      - odontoid tissue
      - dentine
      - enamel
      - cementum
      - pre-dentine
      - pre-enamel
      - pre-enameloid
      - enameloid
      - cosmine
      - orthodentine
      - osteodentine
      - vasodentine
      - odontode tissue
      - acrodin
      - endodontium
      - uncinate process of ethmoid
      - enteric nerve
      - cholinergic enteric nerve
      - oropharyngeal choana
      - ectethmoid
      - palatoquadrate arch
      - facial skeleton
      - perpendicular plate of ethmoid
      - infra-orbital canal of maxilla
      - body of mandible
      - masseteric fossa
      - palatine raphe
      - raphe of hard palate
      - raphe of soft palate
      - supraorbital ridge
      - lenticular process of incus bone
      - bony part of hard palate
      - frontal process of zygomatic bone
      - Merkel nerve ending
      - palatine torus
      - interdental plate
      - arachnoid villus
      - zygomatic plate
      - stratum argenteum of choroid
      - blood vessel layer of choroid
      - simian shelf
      - frontal process of maxilla
      - mesenchyme derived from neural crest
      - mesenchyme of soft palate
      - mesenchyme of hard palate
      - secondary palatal shelf mesenchyme
      - Meckel's cartilage pre-cartilage condensation
      - mesenchyme derived from head neural crest
      - odontogenic papilla
      - odontogenic papilla of incisor
      - upper jaw incisor odontogenic papilla
      - lower jaw incisor odontogenic papilla
      - molar dental papilla
      - upper jaw molar odontogenic papilla
      - lower jaw molar odontogenic papilla
      - integumentary papilla
      - oropharyngeal papilla
      - eye mesenchyme
      - eyelid mesenchyme
      - upper eyelid mesenchyme
      - lower eyelid mesenchyme
      - mesenchyme of vomeronasal organ
      - uncondensed odontogenic mesenchyme
      - odontogenic mesenchyme of molar
      - incisor mesenchyme
      - head ectomesenchyme
      - associated mesenchyme of otic placode
      - periotic mesenchyme
      - mesenchyme of fronto-nasal process
      - medial nasal process mesenchyme
      - lateral nasal process mesenchyme
      - optic neural crest
      - mesenchyme from rhombencephalic neural crest
      - mesenchyme of mandible
      - primary palate mesenchyme
      - 2nd arch mesenchyme from neural crest
      - 3rd arch mesenchyme from neural crest
      - 4th arch mesenchyme from neural crest
      - 6th arch mesenchyme from neural crest
      - 1st arch mesenchyme from neural crest
      - 1st arch mandibular mesenchyme from neural crest
      - 1st arch maxillary mesenchyme from neural crest
      - maxillary process mesenchyme from neural crest
      - mandibular process mesenchyme from neural crest
      - Reichert's cartilage pre-cartilage condensation
      - mesenchyme derived from trunk neural crest
      - migration pathway NC-derived mesenchyme
      - medial migration pathway NC-derived mesenchyme
      - lateral migration pathway NC-derived mesenchyme
      - sphenoid bone pre-cartilage condensation
      - sphenoid cartilage element
      - pharyngeal arch mesenchyme from neural crest
      - lateral process of malleus
      - palatine aponeurosis
      - velar vocal fold
      - sphenoid endochondral element
      - foramen spinosum of sphenoid bone
      - craniopharyngeal canal
      - rostral margin of orbit
      - incisive process of premaxilla
      - cingulum of upper canine tooth
      - cingulum of lower canine tooth
      - posterior fascicle of palatopharyngeus
      - anterior process of malleus
      - palatine bone horizontal plate
      - anterior root of zygomatic arch
      - intraramal joint
      - labial cartilage
      - lateral condyle of quadrate
      - maxillary shank
      - medial condyle of quadrate
      - nasal process of premaxilla
      - quadrate condyle
      - vidian canal
      - infra-orbital foramen of maxilla
      - ethmoid foramen
      - foramen of nasal bone
      - mandibular symphyseal region
      - short ciliary nerve
      - palatine process of premaxilla
      - paraganglion (generic)
      - chromaffin paraganglion
      - paraaortic body
      - nonchromaffin paraganglion
      - trunk of segmental spinal nerve
      - interincisive suture
      - palatomaxillary suture
      - transverse palatine suture
      - suture of hard palate
      - median palatine suture
      - auditory ossicle endochondral element
      - auditory ossicle bone
      - incus bone
      - malleus bone
      - plectral apparatus
      - stapes endochondral element
      - stapes pre-cartilage condensation
      - stapes cartilage element
      - incus endochondral element
      - incus pre-cartilage condensation
      - incus cartilage element
      - malleus endochondral element
      - malleus pre-cartilage condensation
      - malleus cartilage element
      - auditory ossicle cartilage element
      - auditory ossicle pre-cartilage element
      - anterior nasal spine of maxilla
      - tuberculum sellae
      - infraorbital margin
      - orbital margin
      - scleral lamina cribrosa
      - Sattler's layer
      - Haller's layer
      - wall of orbit
      - quadrate ventral process
      - entopterygoid vertical strut
      - premaxilla ascending process
      - anterior dorsomedial process of autopalatine
      - maxilla ascending process
      - quadrate dorsal process
      - quadrate posterodorsal process
      - palatine cartilage
      - pterygoquadrate cartilage
      - anterior cartilage of palatine
      - posterior cartilage of palatine
      - pre-narial cartilage
      - medial cartilage of palatine
      - dentary foramen
      - premaxilla dentigerous process
      - alary process of premaxilla
      - angulosplenial coronoid process
      - anterior process of pars palatina of maxilla
      - anterior ramus of pterygoid
      - antorbital process
      - ascending process of palatoquadrate
      - basal process of palatoquadrate
      - basimandibulare
      - crista contacta
      - crista dentalis of maxilla
      - crista dentalis of premaxilla
      - crista lateralis of premaxilla
      - dilatatio alaris
      - flange of quadratojugal
      - footplate of pars media plectri
      - infrarostral cartilage
      - lamella alaris
      - lamina anterior of pars facialis
      - margo mandibularis of pterygoid
      - margo orbitalis of maxilla
      - margo orbitalis of pterygoid
      - margo orbitalis of squamosal
      - margo tympanicus of pterygoid
      - medial ramus of pterygoid
      - otic ligament
      - otic plate of pterygoid
      - otic process
      - otic ramus of squamosal
      - palatine process of the pars facialis of the maxilla
      - palatoquadrate articular process
      - pars articularis of mandibular arch
      - pars externa plectri
      - pars facialis of maxilla
      - pars facialis of maxillopalatine
      - pars interna plectri
      - pars media plectri
      - posterior condyle
      - posterior mental process
      - posterior ramus of pterygoid
      - posterolateral vomerine process
      - prearticular coronoid process
      - preorbital process of the pars facialis of the maxilla
      - processus ascendens plectri
      - processus infrafenestralis
      - processus internus of pseudoangular
      - processus lingualis of pterygoid
      - processus posterior of maxilla
      - processus suprafenestralis
      - processus zygomatico-maxillaris
      - pseudobasal process
      - pterygoid process of palatoquadrate
      - quadrate process of palatoquadrate
      - retroarticular process
      - rostral process
      - stylus of pars media plectri
      - ventral ramus of squamosal
      - vomerine canal
      - zygomatic ramus of squamosal
      - margo libera
      - crista interna
      - crista praeopercularis
      - anterior process of vomer
      - processus frontalis of maxilla
      - lamina anterior of maxilla
      - pars glenoidalis of quadratojugal
      - pars jugalis
      - processus dorsalis of lamella alaris
      - processus posterodorsalis of lamella alaris
      - dentigerous process
      - prechoanal process
      - postchoanal process
      - margo choanalis
      - crista vomeri
      - suprarostral cartilage
      - anterior quadratocranial commissure
      - quadratoethmoid process
      - suprarostral ala
      - articular process of palatoquadrate
      - suboccular arch
      - processus triangularis of palatoquadrate cartilage
      - incisor process
      - meckelian foramen
      - palatine prong
      - processus descendens of sphenoid
      - ethmo-palatine cartilage
      - suborbital stay
      - premaxilla articular process
      - premaxilla maxillary process
      - greater palatine foramen
      - lesser palatine foramen
      - ecto-epithelium
      - neural tube
      - ear vesicle
      - eye primordium
      - neural plate
      - spinal cord neural plate
      - forebrain neural plate
      - midbrain neural plate
      - hindbrain neural plate
      - optic stalk
      - epithelium of elbow
      - epithelium of carpal region
      - epithelium of hip
      - epithelium of knee
      - epithelium of shoulder
      - epithelium of mammary gland
      - mammary duct
      - duct of areolar gland
      - extralobar lactiferous duct
      - terminal lactiferous duct
      - main lactiferous duct
      - primary lactiferous duct
      - secondary lactiferous duct
      - tertiary lactiferous duct
      - quarternary lactiferous duct
      - male mammary gland duct
      - mammary gland cord
      - mammary duct terminal end bud
      - mammary gland myoepithelium
      - epithelium of forearm
      - epithelium of footplate
      - epithelium of otic placode
      - lateral crista primordium
      - posterior crista primordium
      - epithelium of incisor
      - incisor dental lamina
      - pelvic appendage bud ectoderm
      - pectoral appendage bud ectoderm
      - dental epithelium
      - cervical loop
      - stellate reticulum
      - inner dental epithelium
      - outer dental epithelium
      - molar epithelium
      - molar dental lamina
      - primary dental epithelium
      - choroid plexus epithelium
      - lateral ventricle choroid plexus epithelium
      - third ventricle choroid plexus epithelium
      - fourth ventricle choroid plexus epithelium
      - cerebellar plate
      - germinal neuroepithelium
      - neural tube ventricular layer
      - epithalamus ventricular layer
      - spinal cord ventricular layer
      - neural tube mantle layer
      - neural tube lateral wall mantle layer
      - diencephalon mantle layer
      - midbrain mantle layer
      - spinal cord mantle layer
      - epithalamus mantle layer
      - ependyma
      - brain ependyma
      - third ventricle ependyma
      - lateral ventricle ependyma
      - fourth ventricle ependyma
      - spinal cord ependyma
      - eponychium
      - neural fold
      - cephalic neural fold
      - lamina terminalis of neural tube
      - upper leg epithelium
      - pedal digit epithelium
      - pedal digit 2 epithelium
      - pedal digit 3 epithelium
      - pedal digit 4 epithelium
      - pedal digit 5 epithelium
      - pedal digit 1 epithelium
      - manual digit epithelium
      - manual digit 2 epithelium
      - manual digit 3 epithelium
      - manual digit 4 epithelium
      - manual digit 5 epithelium
      - manual digit 1 epithelium
      - upper arm epithelium
      - lower leg epithelium
      - mammary bud
      - Rathke's pouch
      - lens vesicle epithelium
      - notochordal plate
      - inner ear epithelium
      - endolymphatic sac
      - epithelium of superior semicircular canal
      - crista of ampulla of anterior semicircular duct of membranous laybrinth
      - epithelium of posterior semicircular canal
      - crista of ampulla of posterior semicircular duct of membranous laybrinth
      - epithelium of lateral semicircular canal
      - crista of ampulla of lateral semicircular duct of membranous laybrinth
      - epithelium of cochlear duct
      - epithelium of endolymphatic sac
      - epithelium of endolymphatic duct
      - vestibular epithelium
      - epithelium of utricle
      - epithelium of saccule
      - epithelium of ductus reuniens
      - crus commune epithelium
      - crista ampullaris neuroepithelium
      - macula communis
      - pars distalis of adenohypophysis
      - enveloping layer of ectoderm
      - epithelium of handplate
      - embryonic skin basal layer
      - oral epithelium from ectoderm
      - feather bud, epidermal component
      - 1st arch maxillary ectoderm
      - 1st arch mandibular ectoderm
      - frontonasal process epithelium
      - medial-nasal process ectoderm
      - lateral nasal process surface ectoderm
      - anal membrane ectodermal component
      - anal canal epithelium
      - transitional glandular epithelium of anorectum
      - carapacial ridge ectoderm
      - epithelium of duct of salivary gland
      - eye epithelium
      - ciliary epithelium
      - epithelium of lens
      - lens anterior epithelium
      - lens equatorial epithelium
      - iris epithelium
      - Harderian gland epithelium
      - lacrimal gland epithelium
      - anterior chamber epithelium
      - epithelium of conjunctiva
      - lacrimal gland bud
      - eyelid epithelium
      - upper eyelid epithelium
      - lower eyelid epithelium
      - skin epithelium
      - hair follicle bulge
      - hair follicle matrix region
      - hair follicle isthmus
      - nose epithelium
      - epithelium of nasal septum
      - external naris epithelium
      - nasolacrimal groove
      - epithelium of external nose
      - olfactory rosette
      - primitive olfactory epithelium
      - insect mesothoracic tergum primordium
      - secretory coil of eccrine sweat gland
      - epidermis suprabasal layer
      - lateral ventricle subependymal layer
      - ocular surface region
      - ciliary processes
      - layer of dura mater
      - periosteal dura mater
      - meningeal dura mater
      - opisthotic
      - perilymphatic channel
      - scala vestibuli
      - scala tympani
      - scala media
      - lacrimal nerve
      - Verson's gland
      - lunule of nail
      - central nervous system cell part cluster
      - neural nucleus
      - nucleus of brain
      - cranial nerve nucleus
      - facial nucleus
      - facial motor nucleus
      - superior salivatory nucleus
      - abducens nucleus
      - trochlear nucleus
      - hypoglossal nucleus
      - inferior salivatory nucleus
      - trigeminal nucleus
      - motor nucleus of trigeminal nerve
      - dorsal motor nucleus trigeminal nerve
      - ventral motor nucleus trigeminal nerve
      - trigeminal sensory nucleus
      - spinal nucleus of trigeminal nerve
      - mesencephalic nucleus of trigeminal nerve
      - principal sensory nucleus of trigeminal nerve
      - isthmic primary nucleus
      - nucleus of the descending root
      - secondary gustatory nucleus trigeminal nuclei
      - medial funicular nucleus trigeminal nuclei
      - vagus nerve nucleus
      - nucleus ambiguus
      - commissural nucleus of vagus nerve
      - nucleus of solitary tract
      - gelatinous nucleus of solitary tract
      - medial nucleus of solitary tract
      - gustatory nucleus
      - ventrolateral nucleus of solitary tract
      - medial subnucleus of solitary tract
      - commissural nucleus of the solitary tract
      - paracommissural nucleus of solitary tract
      - motor nucleus of vagal nerve
      - dorsal motor nucleus of vagus nerve
      - accessory XI nerve nucleus
      - octaval nerve sensory nucleus
      - rostral octaval nerve sensory nucleus
      - caudal octaval nerve sensory nucleus
      - magnocellular octaval nucleus
      - descending octaval nucleus
      - tangential nucleus
      - octaval nerve motor nucleus
      - rostral octaval nerve motor nucleus
      - caudal octaval nerve motor nucleus
      - periventricular nucleus
      - nucleus subceruleus
      - nucleus of medial eminence
      - limitans nucleus
      - suprageniculate nucleus of thalamus
      - brainstem nucleus
      - red nucleus
      - ventral nucleus of posterior commissure
      - pontine raphe nucleus
      - parvocellular oculomotor nucleus
      - dorsal tegmental nucleus
      - peripeduncular nucleus
      - interpeduncular nucleus
      - reticulotegmental nucleus
      - pontine nuclear group
      - laterodorsal tegmental nucleus
      - ventral tegmental nucleus
      - interstitial nucleus of Cajal
      - linear nucleus
      - ventral nucleus of lateral lemniscus
      - anterior median oculomotor nucleus
      - nucleus of posterior commissure
      - rostral interstitial nucleus of medial longitudinal fasciculus
      - ventral oculomotor nucleus
      - caudal central oculomotor nucleus
      - central oculomotor nucleus
      - dorsal oculomotor nucleus
      - intermediate oculomotor nucleus
      - medial oculomotor nucleus
      - salivatory nucleus
      - nucleus of superior olivary complex
      - lateral superior olivary nucleus
      - medial superior olivary nucleus
      - periolivary nucleus
      - lateral periolivary nucleus
      - preolivary nucleus
      - nucleus of trapezoid body
      - ventral nucleus of trapezoid body
      - medial nucleus of trapezoid body
      - dorsal nucleus of trapezoid body
      - lateral nucleus of trapezoid body
      - dorsal periolivary nucleus
      - retro-olivary nucleus
      - superior paraolivary nucleus
      - nucleus of pontine reticular formation
      - caudal pontine reticular nucleus
      - inferior central nucleus
      - oral pontine reticular nucleus
      - accessory abducens nucleus
      - nucleus of midbrain reticular formation
      - dorsal raphe nucleus
      - pedunculopontine tegmental nucleus
      - cuneiform nucleus
      - subcuneiform nucleus
      - median raphe nucleus
      - Barrington's nucleus
      - parabrachial nucleus
      - diffuse reticular nucleus
      - medial parabrachial nucleus
      - lateral parabrachial nucleus
      - nucleus of medulla oblongata
      - cochlear nucleus
      - ventral cochlear nucleus
      - dorsal cochlear nucleus
      - anteroventral cochlear nucleus
      - posteroventral cochlear nucleus
      - lateral reticular nucleus
      - parvocellular reticular nucleus
      - gigantocellular nucleus
      - nucleus raphe magnus
      - nucleus raphe pallidus
      - nucleus prepositus
      - nucleus raphe obscurus
      - accessory cuneate nucleus
      - arcuate nucleus of medulla
      - lateral pericuneate nucleus
      - medial pericuneate nucleus
      - nucleus intercalatus
      - parasolitary nucleus
      - peritrigeminal nucleus
      - pontobulbar nucleus
      - sublingual nucleus
      - supraspinal nucleus
      - vestibular nucleus
      - inferior vestibular nucleus
      - medial vestibular nucleus
      - superior vestibular nucleus
      - lateral vestibular nucleus
      - inferior olivary nucleus
      - principal inferior olivary nucleus
      - medial accessory inferior olivary nucleus
      - dorsal accessory inferior olivary nucleus
      - inferior olive dorsal accessory nucleus
      - inferior olive medial accessory nucleus
      - inferior olive ventral accessory nucleus
      - inferior olive, beta nucleus
      - paramedian reticular nucleus
      - intermediate reticular nucleus
      - retrotrapezoid nucleus
      - paragigantocellular nucleus
      - lateral paragigantocellular nucleus
      - dorsal paragigantocellular nucleus
      - dorsal paramedian reticular nucleus
      - paratrigeminal nucleus
      - retroambiguus nucleus
      - dorsal column nucleus
      - cuneate nucleus
      - gracile nucleus
      - nucleus of Bischoff
      - secondary gustatory nucleus medulla oblongata
      - vagal lobe
      - dorsolateral motor nucleus of vagal nerve
      - medial motor nucleus of vagal nerve
      - interpeduncular nucleus medulla oblongata
      - lateral line sensory nucleus
      - medial octavolateralis nucleus
      - caudal octavolateralis nucleus
      - medial funicular nucleus medulla oblongata
      - nucleus isthmi
      - facial lobe
      - inferior reticular formation
      - nucleus lateralis valvulae
      - superior reticular formation medial column
      - viscerosensory commissural nucleus of Cajal
      - nucleus of medial longitudinal fasciculus of medulla
      - Perihypoglossal nuclei
      - magnocellular reticular nucleus
      - anterior tegmental nucleus
      - rostral linear nucleus
      - paranigral nucleus
      - parabrachial pigmental nucleus
      - dorsolateral oculomotor nucleus
      - nucleus H of ventral tegmentum
      - nucleus K of ventral tegmentum
      - supragenual nucleus of pontine tegmentum
      - nucleus incertus
      - superior raphe nucleus
      - caudal motor nucleus of abducens
      - rostral motor nucleus of abducens
      - superior reticular formation tegmentum
      - sublaterodorsal nucleus
      - supratrigeminal nucleus
      - accessory facial motor nucleus
      - efferent vestibular nucleus
      - lateral tegmental nucleus
      - interstitial nucleus of the vestibular nerve
      - diencephalic nucleus
      - hypothalamic nucleus
      - lateral tuberal nucleus
      - supraoptic nucleus
      - paraventricular nucleus of hypothalamus
      - lateral preoptic nucleus
      - arcuate nucleus of hypothalamus
      - dorsomedial nucleus of hypothalamus
      - ventromedial nucleus of hypothalamus
      - tuberomammillary nucleus
      - lateral hypothalamic nucleus
      - nucleus lateralis tuberis system (sensu Teleostei)
      - lateral mammillary nucleus
      - medial mammillary nucleus
      - supramammillary nucleus
      - suprachiasmatic nucleus
      - medial preoptic nucleus
      - perifornical nucleus
      - anteroventral periventricular nucleus
      - posterior nucleus of hypothalamus
      - posterior periventricular nucleus
      - premammillary nucleus
      - dorsal premammillary nucleus
      - ventral premammillary nucleus
      - intermediate periventricular nucleus
      - dorsal hypothalamic nucleus
      - nucleus preopticus
      - nucleus recessus preopticus
      - periventricular nucleus of hypothalamus
      - tuberal supraoptic nucleus
      - circular nucleus of antherior hypothalamic nucleus
      - nucleus recessus
      - nucleus recessus lateralis
      - nucleus recessus posterioris
      - diffuse nuclei
      - caudal periventricular hypothalamus
      - central nucleus inferior lobe
      - rostral tuberal nucleus
      - nucleus of the lateral recess
      - nucleus of the posterior recess
      - periventricular hypothalamic nucleus, anterior part
      - periventricular hypothalamic nucleus, intermediate part
      - ventrolateral preoptic nucleus
      - tuberal nucleus (sensu Rodentia)
      - posterior pretectal nucleus
      - preoptic nucleus
      - preoptic periventricular nucleus
      - median preoptic nucleus
      - anterior nucleus of hypothalamus
      - anteroventral preoptic nucleus
      - magnocellular preoptic nucleus
      - rostral parvocellular preoptic nucleus
      - caudal parvocellular preoptic nucleus
      - nucleus of thalamus
      - habenular nucleus
      - lateral habenular nucleus
      - medial habenular nucleus
      - nucleus of dorsal thalamus
      - subthalamic nucleus
      - paraventricular nucleus of thalamus
      - posterior paraventricular nucleus of thalamus
      - anterior paraventricular nucleus of thalamus
      - reuniens nucleus
      - parafascicular nucleus
      - central medial nucleus
      - paracentral nucleus
      - ventral lateral nucleus of thalamus
      - lateral geniculate body
      - dorsal lateral geniculate nucleus
      - ventral lateral geniculate nucleus
      - ventral posterior nucleus of thalamus
      - lateral pulvinar nucleus
      - ventral anterior nucleus of thalamus
      - medial pulvinar nucleus
      - oral pulvinar nucleus
      - anterodorsal nucleus of thalamus
      - anteromedial nucleus of thalamus
      - anteroventral nucleus of thalamus
      - metathalamus
      - midline nuclear group
      - intralaminar nuclear group
      - lateral nuclear group of thalamus
      - medial dorsal nucleus of thalamus
      - dorsal nucleus of medial geniculate body
      - magnocellular nucleus of medial geniculate body
      - ventral nuclear group
      - anterior nuclear group
      - ventral posteroinferior nucleus
      - ventral posterolateral nucleus
      - ventral posteromedial nucleus of thalamus
      - rhomboidal nucleus
      - subfascicular nucleus
      - rostral intralaminar nuclear group
      - centromedian nucleus of thalamus
      - pulvinar nucleus
      - inferior pulvinar nucleus
      - lateral posterior nucleus of thalamus
      - lateral dorsal nucleus
      - ventral nucleus of medial geniculate body
      - paratenial nucleus
      - posterior nucleus of thalamus
      - submedial nucleus of thalamus
      - central dorsal nucleus of thalamus
      - central lateral nucleus
      - anterodorsal nucleus of medial geniculate body
      - caudal intralaminar nuclear group
      - posterodorsal nucleus of medial geniculate body
      - basal ventral medial nucleus of thalamus
      - central caudal thalamic nucleus
      - dorsal caudal thalamic nucleus
      - nucleus of ventral thalamus
      - ventral intermediate nucleus of thalamus
      - endopeduncular nucleus
      - thalamic reticular nucleus
      - zona incerta
      - rostrolateral thalamic nucleus of Butler & Saidel
      - ventromedial thalamic nucleus
      - subparafascicular nucleus
      - magnocellular superficial pretectal nucleus
      - parvocellular superficial pretectal nucleus
      - caudal pretectal nucleus
      - accessory pretectal nucleus
      - periventricular pretectal nucleus
      - dorsal pretectal periventricular nucleus
      - ventral pretectal periventricular nucleus
      - paracommissural periventricular pretectal nucleus
      - torus lateralis
      - nucleus subglomerulosis
      - periventricular nucleus of caudal tuberculum
      - tertiary gustatory nucleus
      - paraventricular organ
      - caudal tuberal nucleus
      - nucleus of the medial longitudinal fasciculus synencephalon
      - nucleus of the tract of the postoptic commissure
      - intermediate nucleus
      - parvocellular preoptic nucleus
      - preglomerular nucleus
      - lateral preglomerular nucleus
      - medial preglomerular nucleus
      - caudal preglomerular nucleus
      - rostral preglomerular nucleus
      - ventro-rostral cluster
      - nucleus of lateral lemniscus
      - dorsal nucleus of lateral lemniscus
      - intermediate nucleus of lateral lemniscus
      - midbrain nucleus
      - substantia nigra
      - nucleus of midbrain tectum
      - parabigeminal nucleus
      - central nucleus of inferior colliculus
      - olivary pretectal nucleus
      - external nucleus of inferior colliculus
      - principal pretectal nucleus
      - pericentral nucleus of inferior colliculus
      - sublentiform nucleus
      - nucleus of optic tract
      - subbrachial nucleus
      - subbrachial nucleus of mouse of Franklin and Paxinos 2008
      - sagulum nucleus
      - medial pretectal nucleus
      - anterior pretectal nucleus
      - ventrolateral nucleus
      - central nucleus torus semicircularis
      - accessory nucleus of optic tract
      - dorsal accessory nucleus of optic tract
      - lateral accessory nucleus of optic tract
      - medial accessory nucleus of optic tract
      - hindbrain nucleus
      - nucleus of cerebellar nuclear complex
      - dentate nucleus
      - fastigial nucleus
      - cerebellum interpositus nucleus
      - emboliform nucleus
      - cerebellum globose nucleus
      - epifascicular nucleus
      - endolemniscal nucleus
      - electrosensory lateral line lobe
      - telencephalic nucleus
      - caudate nucleus
      - putamen
      - left putamen
      - right putamen
      - globus pallidus
      - medial septal nucleus
      - septofimbrial nucleus
      - nucleus of diagonal band
      - bed nucleus of stria terminalis
      - island of Calleja
      - nucleus accumbens
      - olfactory tubercle
      - lentiform nucleus
      - anterior olfactory nucleus
      - lateral septal nucleus
      - central amygdaloid nucleus
      - intercalated amygdaloid nuclei
      - accessory basal amygdaloid nucleus
      - lateral amygdaloid nucleus
      - basal amygdaloid nucleus
      - cortical amygdaloid nucleus
      - medial amygdaloid nucleus
      - nucleus of lateral olfactory tract
      - dorsal septal nucleus
      - nucleus of anterior commissure
      - triangular septal nucleus
      - substantia innominata
      - nucleus isthmo-opticus
      - magnocellular nucleus of stria terminalis
      - septohippocampal nucleus
      - basal nucleus of telencephalon
      - fusiform nucleus of stria terminalis
      - oval nucleus of stria terminalis
      - principal nucleus of stria terminalis
      - transverse nucleus of stria terminalis
      - endopiriform nucleus
      - central nucleus of pallium
      - septohypothalamic nucleus
      - posterior amygdaloid nucleus
      - lateral nucleus of stria terminalis
      - medial nucleus of stria terminalis
      - anterior cortical amygdaloid nucleus
      - posterolateral cortical amygdaloid nucleus
      - posteromedial cortical amygdaloid nucleus
      - telencephalic song nucleus HVC
      - robust nucleus of arcopallium
      - bed nucleus of the accessory olfactory tract
      - lateral entopeduncular nucleus
      - cerebral nuclei
      - striatum-like amygdalar nuclei
      - caudal linear nucleus
      - interfascicular linear nucleus
      - pretectal nucleus
      - intermediate pretectal nucleus
      - central pretectal nucleus
      - dorsal accessory optic nucleus
      - ventral accessory optic nucleus
      - superficial pretectal nucleus
      - nucleus praetectalis profundus
      - nucleus geniculatus of pretectum
      - nucleus lentiformis of pretectum
      - nucleus posteriodorsalis of pretectum
      - nucleus lentiformis thalamus
      - ventral pretectal nucleus (sauropsida)
      - tectal gray nucleus (Testudines)
      - nucleus lentiformis mesencephali (Aves)
      - nucleus pretectalis diffusus
      - nucleus subpretectalis
      - nucleus interstitio-pretectalis-subpretectalis
      - lateral spiriform nucleus
      - medial spiriform nucleus
      - nucleus circularis of pretectum
      - area X of basal ganglion
      - nucleus of midbrain tegmentum
      - nucleus of spinal cord
      - intermediolateral nucleus
      - lateral cervical nucleus
      - dorsal thoracic nucleus
      - spinal cord reticular nucleus
      - dorsal commissural nucleus of spinal cord
      - nucleus of phrenic nerve
      - nucleus of the bulbocavernosus
      - nucleus of pudendal nerve
      - ventral commissural nucleus of spinal cord
      - lateral spinal nucleus
      - nucleus sacci vasculosi
      - cranial nerve II
      - cerebral cortex
      - axon tract
      - nervous system commissure
      - brain commissure
      - commissure of superior colliculus
      - commissure of inferior colliculus
      - commissure of diencephalon
      - posterior commissure
      - habenular commissure
      - ventral supraoptic decussation
      - anterior hypothalamic commissure
      - dorsal supraoptic decussation
      - supramammillary commissure
      - postoptic commissure
      - commissure of telencephalon
      - intercerebral commissure
      - anterior commissure
      - corpus callosum
      - fasciculus aberans
      - anterior commissure anterior part
      - posterior part of anterior commissure
      - dorsal telencephalic commissure
      - hippocampal commissure
      - ventral commissure
      - hindbrain commissure
      - inferior olivary commissure
      - interthalamic adhesion
      - cerebellar commissure
      - spinal cord commissure
      - spinal cord white commissure
      - spinal cord ventral commissure
      - lumbar spinal cord ventral commissure
      - sacral spinal cord ventral commissure
      - cervical spinal cord ventral commissure
      - thoracic spinal cord ventral commissure
      - spinal cord dorsal white commissure
      - corticospinal tract
      - posterior spinocerebellar tract
      - ventral corticospinal tract
      - trigeminothalamic tract
      - ventral trigeminal tract
      - dorsal trigeminal tract
      - pons reticulospinal tract
      - medulla reticulospinal tract
      - spinocerebellar tract
      - cuneate fasciculus
      - cuneate fasciculus of medulla
      - cuneate fasciculus of spinal cord
      - tract of spinal cord
      - tract of brain
      - fornix of brain
      - tectobulbar tract
      - uncrossed tecto-bulbar tract
      - crossed tecto-bulbar tract
      - olfactory tract
      - olfactory tract linking bulb to ipsilateral dorsal telencephalon
      - lateral olfactory stria
      - olfactory tract linking bulb to ipsilateral ventral telencephalon
      - vestibulocerebellar tract
      - corticotectal tract
      - central tegmental tract of midbrain
      - lateral corticospinal tract
      - dentatothalamic tract
      - spinothalamic tract of midbrain
      - cuneocerebellar tract
      - dorsolateral fasciculus of medulla
      - mesencephalic tract of trigeminal nerve
      - pallidotegmental fasciculus
      - rubrospinal tract
      - solitary tract
      - spino-olivary tract
      - longitudinal pontine fibers
      - transverse pontine fibers
      - ventral amygdalofugal projection
      - olivocerebellar tract
      - vestibulospinal tract
      - olivocochlear bundle
      - central tegmental tract of pons
      - spinothalamic tract of pons
      - tectopontine tract
      - spinothalamic tract of medulla
      - tectospinal tract
      - anterior spinocerebellar tract
      - cingulum of brain
      - cingulate cortex cingulum
      - temporal cortex cingulum
      - hippocampus cortex cingulum
      - spinothalamic tract
      - central tegmental tract
      - tract of diencephalon
      - optic tract
      - supraopticohypophysial tract
      - mammillary princeps fasciculus
      - mammillothalamic tract of hypothalamus
      - postcommissural fornix of brain
      - mammillothalamic axonal tract
      - mammillotectal axonal tract
      - mammillotegmental axonal tract
      - thalamic fiber tract
      - tectothalamic tract
      - accessory optic tract
      - nigrostriatal tract
      - precommissural fornix of forebrain
      - spinal trigeminal tract
      - spinal trigeminal tract of medulla
      - spinal trigeminal tract of pons
      - genu of facial nerve
      - corticobulbar tract
      - pontocerebellar tract
      - perforant path
      - sagittal stratum
      - reticulospinal tract
      - central cervical spinocerebellar tract
      - rostral spinocerebellar tract
      - tractus sacci vasculosi
      - corticobulbar and corticospinal tracts
      - rubroreticular tract
      - medial corticohypothalmic tract
      - bulbocerebellar tract
      - neural glomerulus
      - olfactory glomerulus
      - cerebellar glomerulus
      - thalamic glomerulus
      - pars intercerebralis
      - gray matter
      - gray matter of spinal cord
      - apex of spinal cord dorsal horn
      - cervical spinal cord gray matter
      - cervical spinal cord gray commissure
      - ventral gray commissure of spinal cord
      - dorsal gray commissure of spinal cord
      - thoracic spinal cord gray commissure
      - sacral spinal cord gray commissure
      - lumbar spinal cord gray commissure
      - thoracic spinal cord gray matter
      - nucleus proprius of spinal cord
      - sacral spinal cord gray matter
      - lumbar spinal cord gray matter
      - brain gray matter
      - pretectal region
      - basal ganglion
      - amygdala
      - claustrum of brain
      - pallidum
      - ventral pallidum
      - dorsal pallidum
      - periventricular gray matter
      - gray matter of hindbrain
      - solitary tract nuclear complex
      - inferior olivary complex
      - superior olivary complex
      - cerebellar cortex
      - cerebellar nuclear complex
      - medullary reticular formation
      - pontine reticular formation
      - oral part of spinal trigeminal nucleus
      - cochlear nuclear complex
      - vestibular nuclear complex
      - medullary raphe nuclear complex
      - neodentate part of dentate nucleus
      - caudal part of spinal trigeminal nucleus
      - central gray substance of medulla
      - interpolar part of spinal trigeminal nucleus
      - central gray substance of pons
      - superior reticular formation
      - paleodentate of dentate nucleus
      - lateral medullary reticular complex
      - intermediate reticular formation
      - paramedian medullary reticular complex
      - primary superior olive
      - medullary anterior horn
      - dorsomedial subnucleus of solitary tract
      - dorsolateral subnucleus of solitary tract
      - parvocellular subnucleus of solitary tract
      - central medullary reticular nuclear complex
      - gray matter of forebrain
      - basal nuclear complex
      - gray matter of telencephalon
      - striatum
      - head of caudate nucleus
      - tail of caudate nucleus
      - body of caudate nucleus
      - subcallosal area
      - dorsal striatum
      - cerebral hemisphere gray matter
      - septum of telencephalon
      - insula
      - hilus of dentate gyrus
      - lateral globus pallidus
      - medial globus pallidus
      - periamygdaloid area
      - septal nuclear complex
      - lateral septal complex
      - medial septal complex
      - claustral amygdaloid area
      - lateral part of basal amygdaloid nucleus
      - medial part of basal amygdaloid nucleus
      - anterior amygdaloid area
      - basolateral amygdaloid nuclear complex
      - corticomedial nuclear complex
      - cortex of cerebral lobe
      - frontal cortex
      - right frontal lobe
      - left frontal lobe
      - parietal cortex
      - temporal cortex
      - occipital cortex
      - limbic cortex
      - insular cortex
      - amygdalohippocampal area
      - ventral striatum
      - Wulst
      - gray matter of diencephalon
      - medial geniculate body
      - caudal part of ventral lateral nucleus
      - medial part of ventral lateral nucleus
      - pars postrema of ventral lateral nucleus
      - medial part of medial mammillary nucleus
      - densocellular part of medial dorsal nucleus
      - magnocellular part of medial dorsal nucleus
      - paralaminar part of medial dorsal nucleus
      - parvocellular part of medial dorsal nucleus
      - lateral part of medial mammillary nucleus
      - area X of ventral lateral nucleus
      - posterior nuclear complex of thalamus
      - caudal part of ventral posterolateral nucleus of thalamus
      - magnocellular part of ventral anterior nucleus
      - parvocellular part of ventral anterior nucleus
      - oral part of ventral lateral nucleus
      - parvocellular part of ventral posteromedial nucleus
      - oral part of ventral posterolateral nucleus
      - principal part of ventral posteromedial nucleus
      - thalamic complex
      - central part of mediodorsal nucleus of the thalamus
      - lateral part of mediodorsal nucleus of the thalamus
      - gray matter of midbrain
      - oculomotor nuclear complex
      - midbrain reticular formation
      - magnocellular part of red nucleus
      - parvocellular part of red nucleus
      - central gray substance of midbrain
      - oculomotor division of oculomotor nuclear complex
      - electromotor division of oculomotor nuclear complex
      - subpretectal complex of Aves
      - nuclear complex of neuraxis
      - trigeminal nuclear complex
      - future facial nucleus
      - future inferior salivatory nucleus
      - future superior salivatory nucleus
      - future nucleus ambiguus
      - midbrain basal plate
      - central gray substance
      - layer of dentate gyrus
      - dentate gyrus polymorphic layer
      - dentate gyrus pyramidal layer
      - dentate gyrus molecular layer
      - dentate gyrus granule cell layer
      - dentate gyrus molecular layer middle
      - dentate gyrus molecular layer inner
      - dentate gyrus granule cell layer inner blade
      - dentate gyrus granule cell layer outer blade
      - layer of hippocampus
      - hippocampus pyramidal layer
      - hippocampus granule cell layer
      - hippocampus molecular layer
      - hippocampus stratum lacunosum
      - hippocampus stratum oriens
      - hippocampus stratum radiatum
      - hippocampus stratum lucidum
      - hippocampus stratum lacunosum moleculare
      - layer of CA1 field
      - pyramidal layer of CA1
      - CA1 stratum oriens
      - CA1 stratum radiatum
      - CA1 stratum lacunosum moleculare
      - CA1 alveus
      - layer of CA2 field
      - pyramidal layer of CA2
      - CA2 stratum oriens
      - CA2 stratum radiatum
      - CA2 stratum lacunosum moleculare
      - alveus of CA2 field
      - layer of CA3 field
      - pyramidal layer of CA3
      - CA3 stratum oriens
      - CA3 stratum radiatum
      - CA3 stratum lacunosum moleculare
      - CA3 alveus
      - hippocampus fimbria
      - white matter
      - white matter of cerebellum
      - arbor vitae
      - caudal cerebellar tract
      - commissure of the secondary gustatory nuclei
      - white matter of spinal cord
      - cervical spinal cord white matter
      - thoracic spinal cord white matter
      - sacral spinal cord white matter
      - lumbar spinal cord white matter
      - brain white matter
      - brainstem white matter
      - medial pes lemniscus
      - capsule of red nucleus
      - cerebellar peduncle
      - superior cerebellar peduncle
      - middle cerebellar peduncle
      - inferior cerebellar peduncle
      - white matter of medulla oblongata
      - juxtarestiform body
      - secondary gustatory tract
      - ventral rhombencephalic commissure medulla oblongata
      - white matter of pons
      - white matter of pontine tegmentum
      - dorsal acoustic stria
      - trapezoid body
      - intermediate acoustic stria
      - ventral acoustic stria
      - white matter of midbrain
      - cerebral peduncle
      - cerebral crus
      - white matter of hindbrain
      - white matter of myelencephalon
      - amiculum of inferior olive
      - white matter of metencephalon
      - amiculum of dentate nucleus
      - superior medullary velum
      - white matter of the cerebellar cortex
      - white matter of forebrain
      - diencephalic white matter
      - capsule of medial geniculate body
      - stratum zonale of thalamus
      - stria medullaris
      - ansa lenticularis
      - peduncle of diencephalon
      - mammillary peduncle
      - peduncle of thalamus
      - anterior thalamic peduncle
      - superior thalamic peduncle
      - inferior thalamic peduncle
      - posterior thalamic peduncle
      - radiation of thalamus
      - anterior thalamic radiation
      - posterior thalamic radiation
      - medial forebrain bundle telencephalon
      - tract of the postoptic commissure
      - white matter of telencephalon
      - cerebral hemisphere white matter
      - tapetum of corpus callosum
      - internal capsule of telencephalon
      - anterior column of fornix
      - stria terminalis
      - external capsule of telencephalon
      - corona radiata of neuraxis
      - centrum semiovale
      - limb of internal capsule of telencephalon
      - anterior limb of internal capsule
      - posterior limb of internal capsule
      - extreme capsule
      - body of corpus callosum
      - rostrum of corpus callosum
      - splenium of the corpus callosum
      - white matter of cerebral lobe
      - white matter of frontal lobe
      - white matter of parietal lobe
      - white matter of temporal lobe
      - posterior parahippocampal white matter
      - white matter of occipital lobe
      - white matter of limbic lobe
      - induseum griseum
      - taenia tectum of brain
      - lateral longitudinal stria
      - medial longitudinal stria
      - radiation of cerebral hemisphere
      - auditory radiation
      - optic radiation
      - Meyer's loop of optic radiation
      - forceps major of corpus callosum
      - forceps minor of corpus callosum
      - commissura rostral, pars ventralis
      - commissura rostral, pars dorsalis
      - stria of telencephalon
      - lateral forebrain bundle telencephalon
      - supraoptic tract
      - peduncle of neuraxis
      - stria of neuraxis
      - medial olfactory stria
      - periventricular white matter
      - white matter radiation
      - amiculum
      - brainstem and spinal white matter
      - rostral mesencephalo-cerebellar tract
      - rostral cerebellar tract
      - medial longitudinal catecholaminergic tract
      - endohypothalamic tract
      - preopticohypothalamic tract
      - lateral forebrain bundle
      - brachium of superior colliculus
      - neuropil
      - cerebral cortex neuropil
      - diagonal band of Broca
      - lamina of septum pellucidum
      - nervous system lemniscus
      - medial lemniscus of midbrain
      - medial lemniscus of medulla
      - lateral lemniscus
      - medial lemniscus of pons
      - medial lemniscus
      - lateral pes lemniscus
      - brachium of inferior colliculus
      - olfactory bulb layer
      - olfactory bulb mitral cell layer
      - olfactory bulb glomerular layer
      - olfactory bulb main glomerular layer
      - olfactory bulb granule cell layer
      - olfactory bulb subependymal zone
      - olfactory bulb outer nerve layer
      - olfactory bulb plexiform layer
      - olfactory bulb external plexiform layer
      - olfactory bulb internal plexiform layer
      - accessory olfactory bulb granule cell layer
      - accessory olfactory bulb mitral cell layer
      - accessory olfactory bulb external plexiform layer
      - accessory olfactory bulb internal plexiform layer
      - cerebellar layer
      - granular layer of cerebellar cortex
      - cerebellum external granule cell layer
      - cerebellum internal granule cell layer
      - molecular layer of cerebellar cortex
      - Purkinje cell layer of cerebellar cortex
      - cerebellum ventricular layer
      - body of fornix
      - postnatal subventricular zone
      - caudate-putamen
      - gracile fasciculus
      - gracile fasciculus of medulla
      - gracile fasciculus of spinal cord
      - fasciculus of spinal cord
      - fasciculus of brain
      - medial forebrain bundle
      - habenulo-interpeduncular tract
      - medial longitudinal fasciculus
      - medial longitudinal fasciculus of midbrain
      - medial longitudinal fasciculus of medulla
      - medial longitudinal fasciculus of pons
      - dorsal longitudinal fasciculus of medulla
      - predorsal bundle
      - dorsal longitudinal fasciculus of pons
      - dorsal longitudinal fasciculus of midbrain
      - dorsal longitudinal fasciculus of hypothalamus
      - uncinate fasciculus
      - dorsal longitudinal fasciculus
      - forebrain ipsilateral fiber tracts
      - cerebral nerve fasciculus
      - superior longitudinal fasciculus
      - temporal part of superior longitudinal fasciculus
      - inferior longitudinal fasciculus
      - occipitofrontal fasciculus
      - subcallosal fasciculus
      - inferior occipitofrontal fasciculus
      - arcuate fasciculus
      - ventral thalamic fasciculus
      - lenticular fasciculus
      - subthalamic fasciculus
      - habenulo-interpeduncular tract of diencephalon
      - habenulo-interpeduncular tract of midbrain
      - internal arcuate fiber bundle
      - dorsal external arcuate fiber bundle
      - glossopharyngeal nerve fiber bundle
      - ventral external arcuate fiber bundle
      - posterior column of fornix
      - vagal nerve fiber bundle
      - accessory nerve fiber bundle
      - funiculus of neuraxis
      - funiculus of spinal cord
      - lateral funiculus of spinal cord
      - ventral funiculus of spinal cord
      - dorsal funiculus of spinal cord
      - mammillary axonal complex
      - layer of superior colliculus
      - gray matter layer of superior colliculus
      - superior colliculus superficial gray layer
      - zonal layer of superior colliculus
      - stratum lemnisci of superior colliculus
      - middle gray layer of superior colliculus
      - deep gray layer of superior colliculus
      - white matter of superior colliculus
      - superficial white layer of superior colliculus
      - middle white layer of superior colliculus
      - deep white layer of superior colliculus
      - superficial layer of superior colliculus
      - intermediate layer of superior colliculus
      - deep layer of superior colliculus
      - superior colliculus stratum zonale
      - root of cranial nerve
      - root of trochlear nerve
      - oculomotor nerve root
      - vestibulocochlear nerve root
      - root of abducens nerve
      - caudal root of abducens nerve
      - rostral root of abducens nerve
      - trigeminal nerve root
      - motor root of trigeminal nerve
      - facial nerve root
      - motor root of facial nerve
      - hypoglossal nerve root
      - root of optic nerve
      - glossopharyngeal nerve root
      - neural decussation
      - decussation of superior cerebellar peduncle
      - ventral tegmental decussation
      - decussation of medial lemniscus
      - pyramidal decussation
      - decussation of trochlear nerve
      - dorsal tegmental decussation
      - decussation of diencephalon
      - optic chiasma
      - accessory olfactory bulb glomerular layer
      - hippocampus alveus
      - hilum of neuraxis
      - hilum of dentate nucleus
      - hilum of inferior olivary complex
      - olfactory pathway
      - layer of lateral geniculate body
      - magnocellular layer of dorsal nucleus of lateral geniculate body
      - parvocellular layer of dorsal nucleus of lateral geniculate body
      - koniocellular layer of dorsal nucleus of lateral geniculate body
      - lateral geniculate nucleus parvocellular layer
      - piriform cortex layer 1
      - piriform cortex layer 2
      - piriform cortex layer 3
      - white matter lamina of neuraxis
      - white matter lamina of diencephalon
      - medullary lamina of thalamus
      - internal medullary lamina of thalamus
      - external medullary lamina of thalamus
      - white matter lamina of cerebral hemisphere
      - medial medullary lamina of globus pallidus
      - accessory medullary lamina of globus pallidus
      - lateral medullary lamina of globus pallidus
      - lamina terminalis of cerebral hemisphere
      - white matter lamina of cerebellum
      - forebrain ventricular layer
      - spinal cord column
      - dorsal horn of spinal cord
      - thoracic spinal cord dorsal horn
      - cervical spinal cord dorsal horn
      - lumbar spinal cord dorsal horn
      - sacral spinal cord dorsal horn
      - ventral horn of spinal cord
      - thoracic spinal cord ventral horn
      - cervical spinal cord ventral horn
      - lumbar spinal cord ventral horn
      - sacral spinal cord ventral horn
      - spinal cord motor column
      - spinal cord medial motor column
      - spinal cord lateral motor column
      - spinal cord lateral horn
      - thoracic spinal cord lateral horn
      - cervical spinal cord lateral horn
      - sacral spinal cord lateral horn
      - lumbar spinal cord lateral horn
      - spinal cord dorsal column
      - spinal cord lateral column
      - spinal cord ventral column
      - subdivision of spinal cord lateral column
      - thoracic spinal cord lateral column
      - sacral spinal cord lateral column
      - cervical spinal cord lateral column
      - lumbar spinal cord lateral column
      - subdivision of spinal cord dorsal column
      - thoracic spinal cord dorsal column
      - sacral spinal cord dorsal column
      - cervical spinal cord dorsal column
      - lumbar spinal cord dorsal column
      - subdivision of spinal cord ventral column
      - thoracic spinal cord ventral column
      - sacral spinal cord ventral column
      - cervical spinal cord ventral column
      - lumbar spinal cord ventral column
      - lamina of gray matter of spinal cord
      - substantia gelatinosa
      - substantia gelatinosa of thoracic spinal cord dorsal horn
      - substantia gelatinosa of cervical spinal cord dorsal horn
      - substantia gelatinosa of lumbar spinal cord dorsal horn
      - spinal cord gray commissure
      - lamina I of gray matter of spinal cord
      - lamina III of gray matter of spinal cord
      - lamina IV of gray matter of spinal cord
      - lamina V of gray matter of spinal cord
      - lamina VI of gray matter of spinal cord
      - lamina VII of gray matter of spinal cord
      - lamina VIII of gray matter of spinal cord
      - lamina IX of gray matter of spinal cord
      - corticopontine fibers
      - olfactory cortex layer 1
      - olfactory cortex layer 2
      - dorsal cochlear nucleus pyramidal cell layer
      - entorhinal cortex layer 4
      - entorhinal cortex layer 5
      - molecular layer of dorsal cochlear nucleus
      - entorhinal cortex layer 3
      - entorhinal cortex layer 6
      - entorhinal cortex layer 1
      - entorhinal cortex layer 2
      - piriform cortex layer 2a
      - piriform cortex layer 2b
      - piriform cortex layer 1a
      - piriform cortex layer 1b
      - granular cell layer of dorsal cochlear nucleus
      - epiphyseal tract
      - pineal tract
      - rostral epiphyseal tract
      - ansa peduncularis
      - olfactory cortex layer 3
      - accessory nerve cord of dorsal region
      - radiation of corpus callosum
      - parallel fiber
      - parallel fiber, bifurcated
      - parallel fiber, teleost
      - insect synaptic neuropil domain
      - insect centro-posterior medial synaptic neuropil domain
      - laminar subdivision of the cortex
      - layer of neocortex
      - cortical layer I
      - dorsolateral prefrontal cortex layer 1
      - cortical layer II
      - dorsolateral prefrontal cortex layer 2
      - cortical layer III
      - dorsolateral prefrontal cortex layer 3
      - cortical layer IV
      - dorsolateral prefrontal cortex layer 4
      - cortical layer V
      - dorsolateral prefrontal cortex layer 5
      - cortical layer VI
      - dorsolateral prefrontal cortex layer 6
      - primary motor cortex layer 5
      - primary motor cortex layer 6
      - primary somatosensory cortex layer 6
      - primary motor cortex layer 1
      - primary somatosensory area barrel field layer 5
      - primary somatosensory area barrel field layer 1
      - primary somatosensory area barrel field layer 2/3
      - primary somatosensory area barrel field layer 6b
      - primary somatosensory area barrel field layer 6a
      - primary somatosensory area barrel field layer 4
      - cortical layer VIb
      - cortical layer II/III
      - cortical layer IV/V
      - cortical layer V/VI
      - upper layers of the cortex
      - lower layers of the cortex
      - ora serrata of retina
      - Eimer's organ
      - infundibular organ
      - urophysis
      - orbital part of frontal bone
      - utriculosaccular duct
      - feather shaft
      - feather rachis
      - ramus of feather barb
      - ramus of feather barbule
      - dermal pulp of feather shaft
      - dermal condensation of feather follicle
      - feather bud, dermal component
      - dermis of feather follicle
      - epidermis of feather follicle
      - outer epidermal layer of feather follicle
      - inner epidermal layer of feather follicle
      - areolar tubercle
      - duct of sebaceous gland
      - acinus of sebaceous gland
      - acinus of areolar gland
      - acinus of lactiferous gland
      - acinus of lacrimal gland
      - internal acoustic meatus
      - anterior uvea
      - hair matrix
      - mammary gland luminal epithelium
      - suspensory ligament of breast
      - zygomatic process of frontal bone
      - feather barbicel
      - stratum intermedium of epidermis
      - tunica fibrosa of eyeball
      - muscle layer of anal canal
      - vallecula of cerebellum
      - nasal tentacle
      - eyelid gland
      - nictitans gland
      - postorbital process
      - peripheral region of retina
      - notochordal canal
      - basilar papilla
      - common crus of semicircular duct
      - subdivision of spinal cord central canal
      - thoracic division of spinal cord central canal
      - cervical division of cord spinal central canal
      - lumbar division of spinal cord central canal
      - sacral division of spinal cord central canal
      - layer of hippocampal field
      - CA3 stratum lucidum
      - stratum lucidum of caudal CA3
      - stratum lucidum of rostral CA3
      - stratum lucidum of uncal CA3
      - stratum lacunosum-moleculare of caudal CA1
      - stratum radiatum of caudal CA1
      - stratum pyramidale of caudal CA1
      - stratum oriens of caudal CA1
      - stratum lacunosum-moleculare of caudal CA2
      - stratum radiatum of caudal CA2
      - stratum pyramidale of caudal CA2
      - stratum oriens of caudal CA2
      - stratum lacunosum-moleculare of caudal CA3
      - stratum radiatum of caudal CA3
      - stratum pyramidale of caudal CA3
      - stratum oriens of caudal CA3
      - stratum lacunosum-moleculare of rostral CA1
      - stratum radiatum of rostral CA1
      - stratum pyramidale of rostral CA1
      - stratum oriens of rostral CA1
      - stratum lacunosum-moleculare of rostral CA2
      - stratum radiatum of rostral CA2
      - stratum pyramidale of rostral CA2
      - stratum oriens of rostral CA2
      - stratum lacunosum-moleculare of rostral CA3
      - stratum radiatum of rostral CA3
      - stratum pyramidale of rostral CA3
      - stratum oriens of rostral CA3
      - stratum lacunosum-moleculare of uncal CA1
      - stratum radiatum of uncal CA1
      - stratum pyramidale of uncal CA1
      - stratum oriens of uncal CA1
      - stratum lacunosum-moleculare of uncal CA2
      - stratum radiatum of uncal CA2
      - stratum pyramidale of uncal CA2
      - stratum oriens of uncal CA2
      - stratum lacunosum-moleculare of uncal CA3
      - stratum radiatum of uncal CA3
      - stratum pyramidale of uncal CA3
      - stratum oriens of uncal CA3
      - basis modioli
      - base of cochlear canal
      - vestibular fissure of the cochlear canal
      - terminal part of the cochlear canal
      - Harderian gland duct
      - inferior branch of oculomotor nerve
      - superior branch of oculomotor nerve
      - neck of tooth
      - parapineal organ
      - septal olfactory organ
      - root of nail
      - dorsum of nose
      - lobe of cerebral hemisphere
      - temporal lobe
      - left temporal lobe
      - right temporal lobe
      - parietal lobe
      - left parietal lobe
      - right parietal lobe
      - occipital lobe
      - left occipital lobe
      - right occipital lobe
      - limbic lobe
      - left limbic lobe
      - right limbic lobe
      - olfactory lobe
      - frontal lobe
      - sub-lobar region
      - left sub-lobar region
      - right sub-lobar region
      - dorsal part of optic cup
      - ventral part of optic cup
      - ridge of tooth
      - transverse ridge of tooth
      - triangular ridge of tooth
      - oblique ridge of tooth
      - marginal ridge of tooth
      - transverse marginal ridge of tooth
      - mesial marginal ridge of tooth
      - distal marginal ridge of tooth
      - cingulum of tooth
      - lower jaw cingulum
      - cingulum of lower incisor tooth
      - cingulum of lower jaw molar
      - upper jaw cingulum
      - cingulum of upper incisor tooth
      - cingulum of upper jaw molar
      - cingulum of incisor tooth
      - cingulum of canine tooth
      - cingulum of molar tooth
      - paracristid
      - postcingulum
      - postcingulum of deciduous premolar 5
      - posteroloph
      - molar 1 posteroloph
      - posthypocrista
      - posthypocrista of deciduous premolar 5
      - precingulum
      - preprotocrista
      - internal surface of frontal bone
      - parafoveal part of retina
      - perifoveal part of retina
      - foveola of retina
      - mammary lobe
      - rhombomere boundary
      - dorsal zone of medial entorhinal cortex
      - epidermal egg tooth
      - central figure of scute
      - hyoid articular area
      - stylar shelf
      - subolfactory process
      - sallet
      - recessus basilaris
      - chorioretinal region
      - pole of lens
      - posterior pole of lens
      - anterior pole of lens
      - supcapsular region of anterior region of lens
      - supcapsular region of posterior region of lens
      - lacrimal lake
      - lacrimal papilla
      - nasociliary nerve
      - long ciliary nerve
      - circuit part of central nervous system
      - principal neuronal circuit
      - intrinsic neuronal circuit
      - lateral eminence of hypophysis
      - spiral prominence of cochlear duct
      - lateral eminence of fourth ventricle
      - margin of eyelid
      - pars plicata of ciliary body
      - pars plana of ciliary body
      - duct of eccrine sweat gland
      - duct of apocrine sweat gland
      - diaphragma sellae
      - falx cerebelli
      - unencapsulated tactile receptor
      - dura mater lymph vessel
      - outer root sheath companion layer
      - hair canal
      - skin appendage follicle
      - hair follicle
      - vibrissa follicle
      - coat hair follicle
      - feather follicle
      - parenchyma of mammary gland
      - piriform aperture
      - wall of anal canal
      - wall of central canal of spinal cord
      - wall of ventricular system of brain
      - wall of lateral ventricle
      - wall of cerebral aqueduct
      - wall of third ventricle
      - wall of fourth ventricle
      - wall of eyeball
      - wall of membranous labyrinth
      - wall of lacrimal duct
      - mole
      - nose anterior margin
      - nose vertex
      - actinotrichium
      - dorsal actinotrichium
      - ventral actinotrichium
      - anal fin actinotrichium
      - caudal fin actinotrichium
      - adipose fin actinotrichium
      - immature otolith
      - immature anterior otolith
      - immature posterior otolith
      - gigantocellular part of magnocellular preoptic nucleus
      - primary olfactory fiber layer
      - external cellular layer
      - granular layer corpus cerebelli
      - molecular layer corpus cerebelli
      - caudal mesencephalo-cerebellar tract
      - internal cellular layer
      - saccus dorsalis
      - cerebellar crest
      - granular layer valvula cerebelli
      - molecular layer valvula cerebelli
      - lateral wall neural rod
      - posterior lateral line primordium
      - primary posterior lateral line primordium
      - secondary posterior lateral line primordium
      - epidermal superficial stratum
      - epidermal intermediate stratum
      - dermal superficial region
      - telencephalon diencephalon boundary
      - stratum fibrosum et griseum superficiale
      - stratum marginale
      - stratum opticum
      - stratum periventriculare
      - alar plate midbrain
      - epiotic
      - basipterygoid process of parasphenoid
      - type 1 odontode
      - urohyal lateral process
      - urohyal median process
      - epioccipital posterior process
      - posterior cleithral process
      - posterior dentation of dorsal fin spine 2
      - ascending process of the parasphenoid
      - dermal scale focus
      - climbing fiber
      - dorsolateral septum
      - epidermal placode
      - mossy fiber
      - otic vesicle protrusion
      - lateral semicircular canal primordium
      - posterior semicircular canal primordium
      - anterior semicircular canal primordium
      - otic vesicle ventral protrusion
      - pillar of the semicircular canal
      - pillar of the anterior semicircular canal
      - pillar of the lateral semicircular canal
      - Purkinje cell layer corpus cerebelli
      - Purkinje cell layer valvula cerebelli
      - scale primordium
      - ctenius
      - ampullary nerve
      - fin fold pectoral fin bud
      - pectoral fin fold
      - inner ear foramen
      - sacculoagenar foramen
      - dorso-rostral cluster
      - epiphysial cluster
      - anterior presumptive neural plate
      - posterior presumptive neural plate
      - posterior neural keel
      - anterior neural keel
      - midbrain neural keel
      - forebrain neural keel
      - forebrain midbrain boundary neural keel
      - spinal cord neural keel
      - hindbrain neural keel
      - posterior neural rod
      - anterior neural rod
      - midbrain neural rod
      - forebrain midbrain boundary neural rod
      - forebrain neural rod
      - spinal cord neural rod
      - hindbrain neural rod
      - forebrain midbrain boundary neural tube
      - forebrain neural tube
      - spinal cord neural tube
      - hindbrain neural tube
      - midbrain hindbrain boundary neural keel
      - midbrain hindbrain boundary neural rod
      - midbrain hindbrain boundary neural tube
      - neurogenic field
      - dorsolateral field
      - epibranchial field
      - olfactory field
      - anterior maxillary process
      - anterior nasal wall
      - anterolateral process of frontoparietal
      - capsular process
      - crista intermedia
      - crista subnasalis
      - crista supraorbitalis
      - extremitas anterior
      - lamina inferior
      - lamina nariochoanalis
      - lamina precerebralis
      - lamina superior
      - median prenasal process
      - parasagittal crest
      - cultriform process
      - subotic alae
      - pars amphibiorum
      - pars basilaris
      - pars inferior of labyrinth
      - pineal foramen
      - planum terminale
      - planum triangulare
      - posterior maxillary process
      - posterior maxillary process dorsal process
      - postnasal wall
      - recessus fenestrae ovalis
      - seydels palatal process
      - skeletal support for eminentia olfactoria
      - solum nasi
      - spatium sacculare
      - supraorbital flange
      - tectum nasi
      - processus lingularis of nasal skeleton
      - processus posterior of parasphenoid
      - anterior ramus of cleithrum
      - margo anterior of cleithrum
      - margo posterior of cleithrum
      - margo scapularis
      - margo vertebralis
      - spina acromioidea
      - anterior lamina recurvata
      - posterior lamina recurvata
      - posterior ramus of cleithrum
      - pit organ
      - median pars intermedia
      - mandibular arch neural crest
      - ramus nasalis lateralis
      - ramus nasalis medialis
      - ramules cutaneous
      - ramus anterior of CN VIII
      - ramus posterior of CN VIII
      - limiting layer of elasmoid scale
      - parasphenoid flange
      - postbranchial lamina
      - cleithrum head
      - hypocleideum
      - anteroventral process of cleithrum
      - ventral limb of posttemporal
      - lepidotrichial segment
      - proximal segment of caudal ray
      - distal segment of caudal ray
      - procurrent spur
      - epioccipital bridge
      - fin hook
      - anal fin hook
      - caudal fin hook
      - dorsal fin hook
      - insect labial disc
      - insect clypeo-labral disc
      - insect eye-antennal disc
      - insect antennal disc
      - insect dorsal thoracic disc
      - insect wing disc
      - insect haltere disc
      - insect ventral thoracic disc
      - insect prothoracic leg disc
      - insect genital disc
      - insect male genital disc
      - insect female genital disc
      - insect protocerebrum
      - insect embryonic/larval protocerebrum
      - insect adult protocerebrum
      - insect arista
      - insect clypeus
      - insect proboscis
      - insect dorsal mesothorax
      - insect mesothoracic tergum
      - insect prothoracic leg
      - insect prothoracic tarsal segment
      - insect prothoracic metatarsus
      - insect metatarsus of male prothoracic leg
      - insect analia
      - insect female analia
      - insect male analia
      - insect stomatogastric nervous system
      - insect Bolwig organ
      - insect dorsal ectoderm derivative
      - insect tracheal primordium
      - insect tracheal pit
      - insect dorsal epidermis primordium
      - insect abdominal histoblast anlage
      - insect anterior ectoderm derivative
      - insect visual primordium
      - insect clypeo-labral primordium
      - insect Bolwig organ primordium
      - insect ventral ectoderm derivative
      - insect ventral epidermis primordium
      - insect presumptive prothoracic metatarsus
      - insect presumptive arista
      - central retina
      - Henle's fiber layer
      - fasciola cinerea
      - dorsal iris
      - supraorbital foramen
      - conceptus
      - muscle structure
      - muscle organ
      - chordate pharyngeal muscle
      - constrictor muscle of pharynx
      - superior pharyngeal constrictor
      - middle pharyngeal constrictor
      - pre-tracheal muscle
      - stylopharyngeus muscle
      - salpingopharyngeus muscle
      - cleidooccipital muscle
      - ceratohyoideus muscle
      - pharyngeal adductor
      - caudal oblique
      - dorsal transverse
      - internal levator
      - pharyngohyoid
      - caudal levator
      - internal pharyngoclavicularis
      - dorsal oblique branchial muscle
      - dorsal retractor
      - external levatores
      - ventral transverse
      - external pharyngoclavicularis
      - transversus epibranchialis 2
      - rotator muscle of the vertebral column
      - intercostal muscle
      - internal intercostal muscle
      - external intercostal muscle
      - innermost intercostal muscle
      - longus colli muscle
      - sartorius muscle
      - auricular muscle
      - extrinsic auricular muscle
      - parotidoauricular muscle
      - superior auricular muscle
      - anterior auricular muscle
      - posterior auricular muscle
      - intrinsic auricular muscle
      - helicis major
      - helicis minor
      - tragicus muscle
      - antitragicus muscle
      - transverse muscle of auricle
      - oblique muscle of auricle
      - eyelid muscle
      - respiratory system muscle
      - diaphragm
      - appendicocostalis muscle
      - respiratory muscle
      - rectus thoracis muscle
      - diaphragmaticus muscle
      - esophagus muscle
      - esophageal sphincter
      - esophageal-pneumatic duct sphincter
      - skin muscle
      - feather muscle
      - sphincter muscle
      - anal sphincter
      - smooth muscle sphincter
      - striated muscle sphincter
      - upper esophageal sphincter
      - caval sphincter
      - gastrointestinal sphincter
      - ileocecal valve
      - pyloric sphincter
      - gastroesophageal sphincter
      - cloacal sphincter
      - pouch sphincter
      - mantle muscle
      - pennate muscle
      - columnella muscle
      - cremaster muscle
      - pes anserinus of tibia
      - intermandibularis
      - posterolateral supplementary element
      - apical supplementary element
      - anterolateral supplementary element
      - occipitofrontalis muscle
      - iliothoracic muscle
      - femorothoracic muscle
      - ventral lateral sacrocaudal muscle
      - muscle of Aristotle's lantern
      - vestimentum muscle
      - compressor glandulae muscle
      - pterygoideus glandulae muscle
      - cloacal muscle
      - transverse cloacal muscle
      - levator cloacae
      - hypobranchial group muscle
      - serratus muscle
      - skeletal muscle organ, vertebrate
      - extensor muscle
      - extensor digitorum brevis pes
      - extensor digitorum longus
      - extrinsic extensor muscle of manus
      - extensor carpi ulnaris muscle
      - extensor pollicis longus muscle
      - extensor digitorum communis
      - extensor digitorum lateralis muscle
      - extensor digiti minimi muscle
      - extensor carpi radialis muscle
      - extensor carpi radialis longus muscle
      - extensor carpi radialis brevis muscle
      - extensor pollicis brevis muscle
      - extensor digitorum brevis manus
      - flexor muscle
      - flexor hallucis longus
      - flexor carpi radialis muscle
      - flexor carpi ulnaris muscle
      - flexor digitorum profundus
      - tibialis
      - tibialis anterior
      - tibialis posterior
      - flexor hallucis brevis muscle
      - flexor cruris lateralis muscle
      - flexor cruris lateralis pars accessoria muscle
      - external ventral flexor
      - inferior ventral flexor
      - superior dorsal flexor
      - dorsal flexor
      - ventral flexor
      - tongue muscle
      - extrinsic muscle of tongue
      - hyoglossus muscle
      - styloglossus
      - muscle of shoulder
      - serratus ventralis
      - infraspinatus muscle
      - coracobrachialis muscle
      - brachialis muscle
      - triceps brachii
      - supraspinatus muscle
      - teres muscle
      - teres minor muscle
      - brachioradialis
      - cleidobrachialis muscle
      - brachiocephalic muscle
      - supracoracoideus muscle of wing
      - supracoracoideus muscle
      - scapulohumeralis muscle
      - skeletal muscle of trunk
      - muscle of back
      - splenius
      - splenius capitis
      - splenius cervicis
      - lower back muscle
      - upper back muscle
      - thoracic segment muscle
      - serratus dorsalis superior muscle
      - chest muscle
      - transversus thoracis
      - subcostal muscle
      - levator costarum
      - abdominal segment muscle
      - muscle of pelvis
      - levator ani muscle
      - coccygeus muscle
      - muscle of pelvic girdle
      - iliacus muscle
      - gluteal muscle
      - gluteus maximus
      - gluteus medius
      - tensor fasciae latae muscle
      - gluteus minimus
      - piriformis muscle
      - quadratus femoris
      - obturator muscle
      - obturator externus
      - obturator internus
      - perineal muscle
      - ischiocavernosus muscle
      - muscle of anal triangle
      - bulbospongiosus muscle
      - constrictor vulvae muscle
      - male bulbospongiosus muscle
      - female bulbospongiosus muscle
      - muscle of pelvic diaphragm
      - iliococcygeus muscle
      - puborectalis muscle
      - pubococcygeus muscle
      - male pubococcygeus muscle
      - female pubococcygeus muscle
      - iliofemoralis muscle
      - pubotibialis
      - muscle of abdomen
      - quadratus lumborum
      - anterior abdominal wall muscle
      - transversus abdominis muscle
      - pyramidalis
      - abdominal oblique muscle
      - abdominal external oblique muscle
      - abdominal internal oblique muscle
      - somitomeric trunk muscle
      - infracarinalis
      - superficial lateralis (teleost)
      - supracarinalis
      - epaxialis
      - hypaxialis
      - limb muscle
      - forelimb muscle
      - muscle of arm
      - forelimb zeugopod muscle
      - flexor digitorum superficialis
      - supinator muscle
      - flexor pollicis longus muscle
      - forelimb stylopod muscle
      - biceps brachii
      - anconeus muscle
      - muscle of manus
      - adductor pollicis muscle
      - manual digit muscle
      - abductor pollicis brevis muscle
      - flexor pollicis brevis muscle
      - intrinsic muscle of manus
      - lumbrical muscle of manus
      - interosseous muscle of manus
      - dorsal interosseous of manus
      - first dorsal interosseous of manus
      - palmar interosseous muscle of manus
      - thenar muscle
      - hypothenar muscle
      - palmaris brevis
      - abductor digiti minimi of hand
      - flexor digiti minimi brevis of hand
      - opponens digiti minimi of hand
      - pronator teres
      - abductor pollicis, radioulna-prepollox
      - abductor pollicis muscle
      - abductor pollicis longus
      - forelimb epitrochlearis muscle
      - palmaris longus muscle
      - m.scapulotriceps
      - hindlimb muscle
      - quadriceps femoris
      - rectus femoris
      - vastus lateralis
      - vastus medialis
      - vastus intermedius
      - muscle of leg
      - popliteus muscle
      - flexor digitorum longus
      - hindlimb stylopod muscle
      - adductor longus
      - adductor brevis
      - adductor magnus
      - gracilis
      - pectineus muscle
      - muscle of posterior compartment of hindlimb stylopod
      - biceps femoris
      - semitendinosus
      - semimembranosus muscle
      - gemellus muscle
      - inferior gemellus muscle
      - superior gemellus muscle
      - hindlimb zeugopod muscle
      - gastrocnemius
      - soleus muscle
      - triceps surae
      - peroneus
      - fibularis longus
      - fibularis tertius
      - fibularis brevis
      - fibularis quartus
      - plantaris
      - gastrocnemius internus
      - gastrocnemius externus
      - muscle of pes
      - pedal digit muscle
      - abductor hallucis muscle
      - intrinsic muscle of pes
      - lumbrical muscle of pes
      - interosseous muscle of pes
      - dorsal pes interosseous muscle
      - plantar interosseous muscle of pes
      - adductor hallucis muscle
      - flexor digitorum brevis muscle
      - caudofemoralis
      - caudofemoralis longus
      - caudofemoralis brevis
      - ambiens muscle
      - iliotibialis muscle
      - interosseous muscle of autopod
      - axial muscle
      - erector spinae muscle group
      - transversospinales muscle
      - muscle of vertebral column
      - longissimus muscle
      - longissimus thoracis muscle
      - longissimus cervicis muscle
      - longissimus capitis
      - longissimus lumborum muscle
      - longissimus atlantis muscle
      - scalenus medius
      - iliocostalis muscle
      - iliocostalis thoracis muscle
      - iliocostalis cervicis muscle
      - iliocostalis lumborum
      - rectus capitis lateralis muscle
      - post-anal tail muscle
      - extrinsic post-anal tail muscle
      - spinalis caudalis muscle
      - extensor caudae muscle
      - extensor caudae medialis muscle
      - extensor caudae lateralis muscle
      - iliocaudalis muscle
      - hemipenis transversus muscle
      - transversus perinei muscle
      - retractor penis magnus muscle
      - rectus capitis anterior
      - rectus capitis posterior major
      - rectus capitis posterior minor
      - prevertebral muscle
      - longus capitis muscle
      - psoas muscle
      - psoas major muscle
      - psoas minor muscle
      - prevertebral muscle of neck
      - scalene muscle
      - scalenus anterior
      - spinalis muscle
      - spinalis thoracis muscle
      - spinalis capitis muscle
      - spinalis cervicis muscle
      - semispinalis muscle
      - semispinalis thoracis
      - semispinalis cervicis
      - semispinalis capitis
      - serratus dorsalis muscle
      - serratus dorsalis inferior muscle
      - levator claviculae muscle
      - puboischiofemoralis internus muscle
      - abductor muscle
      - superficial pelvic abductor
      - pelvic abductor profundus
      - abductor profundus
      - superficial abductor
      - pelvic complex muscle
      - hip muscle
      - adductor muscle of hip
      - pelvic adductor profundus
      - superficial pelvic adductor
      - pelvic appendage muscle
      - dorsal pelvic arrector
      - ventral pelvic arrector
      - M. glutaeus magnus
      - M. tensor fasciae latae
      - M. sartorius
      - M. semitendinosus
      - M. quadratus femoris
      - M. gemellus
      - M. gracilis major
      - M. gracilis minor
      - M. semimembranosus
      - M. ileo-fibularis
      - M. pyriformis
      - M. ileo-femoralis
      - M. iliacus internus
      - M. iliacus externus
      - M. pulmonum proprius
      - M. tibialis posticus
      - M. tibialis anticus longus
      - M. extensor cruris brevis
      - M. tibialis anticus brevis
      - M. tarsalis posticus
      - M. plantaris profundus
      - M. cruralis
      - M. plantaris longus
      - M. coccygeosacralis
      - M. coccygeoiliacus
      - M. iliolumbaris
      - M. coccygeocutaneus
      - pectoral complex muscle
      - muscle of pectoral girdle
      - patagialis muscle
      - pectoral appendage muscle
      - superficial adductor
      - coracoradialis
      - dorsal arrector
      - adductor profundus
      - ventral arrector
      - puboischiotibialis muscle
      - M. extensor digitorum communis longus
      - m. rhomboideus anterior
      - m. opercularis
      - m. cucullaris
      - m. rhomboideus posterior
      - m. serratus superior
      - m. serratus medius
      - m. serratus inferior
      - m. latissimus dorsi
      - m. dorsalis scapulae
      - m. interscapularis
      - m. sternoepicoracoideus
      - M. coracoradialis
      - M. coracobrachialis longus
      - M. coracobrachialis brevis
      - M. flexor carpi ulnaris
      - M. palmaris longus
      - M. palmaris profundis
      - M. flexor antibrachii medialis
      - M. ulnocarpalis
      - M. flexor antibrachii lateralis superficialis
      - M. flexor antibrachii lateralis profundus
      - craniocervical muscle
      - muscle of neck
      - scalenus posterior
      - jugulohyoideus muscle
      - sternooccipital muscle
      - sphincter colli superficialis muscle
      - sphincter colli profundus muscle
      - sphincter colli muscle
      - adductor muscle
      - adductor pollicis muscle of prepollex
      - cleidocephalicus muscle
      - omotransversarius muscle
      - sternocephalicus muscle
      - puboischiofemoralis muscle
      - puboischiofemoralis externus muscle
      - scapular muscle
      - intrinsic muscle
      - longitudinal hypochordal
      - interradialis
      - hypural musculature
      - arrector muscle
      - ventral intermandibularis anterior
      - ventral intermandibularis posterior
      - m. flexor indicis superficialis proprius
      - caudalipuboischiotibialis
      - flexor caudalis muscle
      - levator auris longus muscle
      - retractor lateralis muscle
      - retractor lateralis posterior muscle
      - retractor lateralis anterior muscle
      - trigeminal nerve muscle
      - oral siphon muscle
      - orovelar muscle
      - pericardial muscle
      - somatic muscle, invertebrate
      - transversely striated somatic muscle
      - obliquely striated somatic muscle
      - insect adult somatic muscle
      - vestigial structure
      - pelvic spur
      - remnant of embryonic structure
      - Meckel's diverticulum
      - multi cell part structure
      - neuron projection bundle
      - nerve fasciculus
      - nerve
      - sensory nerve
      - mental nerve
      - sciatic nerve
      - spinal nerve
      - nerve of cervical vertebra
      - thoracic nerve
      - intercostal nerve
      - lumbar nerve
      - sacral nerve
      - coccygeal nerve
      - accessory XI nerve spinal component
      - neck nerve
      - shoulder nerve
      - eyelid nerve
      - palpebral branch of infra-orbital nerve
      - inferior palpebral branch of infra-orbital nerve
      - lower eyelid nerve
      - infra-orbital nerve
      - upper eyelid nerve
      - iris nerve
      - nerve of trunk region
      - nerve of thoracic segment
      - chest nerve
      - thoracic splanchnic nerve
      - least splanchnic nerve
      - greater splanchnic nerve
      - lesser splanchnic nerve
      - nerve of abdominal segment
      - abdomen nerve
      - pelvis nerve
      - pudendal nerve
      - perineal nerve
      - limb nerve
      - forelimb nerve
      - arm nerve
      - median nerve
      - radial nerve
      - axillary nerve
      - ulnar nerve
      - lower arm nerve
      - upper arm nerve
      - palmar branch of median nerve
      - manus nerve
      - wrist nerve
      - digit nerve of manus
      - hindlimb nerve
      - leg nerve
      - femoral nerve
      - tibial nerve
      - common fibular nerve
      - saphenous nerve
      - upper leg nerve
      - lower leg nerve
      - sural nerve
      - plantar nerve
      - lateral plantar nerve
      - medial plantar nerve
      - deep fibular nerve
      - superficial fibular nerve
      - pes nerve
      - pedal digit nerve
      - ankle nerve
      - thoracic cavity nerve
      - phrenic nerve
      - musculocutaneous nerve
      - back nerve
      - parasympathetic nerve
      - pelvic splanchnic nerve
      - descending branch of the vagus nerve
      - parasympathetic cholinergic nerve
      - ansa cervicalis
      - obturator nerve
      - efferent nerve
      - ventral ramus of spinal nerve
      - dorsal ramus of spinal nerve
      - mylohyoid nerve
      - nerve of head region
      - mandibular nerve
      - maxillary nerve
      - pharyngeal branch of vagus nerve
      - cranial nerve
      - trochlear nerve
      - trigeminal nerve
      - facial nerve
      - ramus palatinus
      - glossopharyngeal nerve
      - hypoglossal nerve
      - vagus nerve
      - ramus auricularis of the vagus nerve
      - accessory XI nerve cranial component
      - chorda tympani branch of facial nerve
      - recurrent laryngeal nerve
      - left recurrent laryngeal nerve
      - right recurrent laryngeal nerve
      - lingual nerve
      - nerve of tympanic cavity
      - nasopalatine nerve
      - carotid sinus nerve
      - digastric branch of facial nerve
      - nerve to stylohyoid from facial nerve
      - nerve to stylopharyngeus from glossopharyngeal nerve
      - masseteric nerve
      - superior laryngeal nerve
      - deep temporal nerve
      - buccal nerve
      - lateral pterygoid nerve
      - superior alveolar nerve
      - posterior superior alveolar nerve
      - anterior superior alveolar nerve
      - inferior alveolar nerve
      - vidian nerve
      - pterygopalatine nerve
      - autonomic nerve
      - nerve innervating pinna
      - great auricular nerve
      - posterior auricular nerve
      - meningeal branch of mandibular nerve
      - tympanic nerve
      - zygomaticotemporal nerve
      - trunk maxillary-mandibularis
      - ramus muscularis of glossopharyngeus nerve
      - ramus muscularis of vagus nerve
      - laryngeus ventralis
      - meningeal branch of spinal nerve
      - communicating branch of spinal nerve
      - sympathetic nerve
      - splanchnic nerve
      - lumbar splanchnic nerve
      - sacral splanchnic nerve
      - nerve to quadratus femoris
      - laryngeal nerve
      - accessory XI nerve
      - nerve of penis
      - nerve of clitoris
      - fibular nerve
      - hyoideomandibular nerve
      - brachial nerve plexus
      - lumbosacral nerve plexus
      - sacral nerve plexus
      - lumbar nerve plexus
      - cardiac nerve plexus
      - pulmonary nerve plexus
      - nerve root
      - spinal nerve root
      - ventral root of spinal cord
      - ventral nerve root of cervical spinal cord
      - dorsal root of spinal cord
      - dorsal nerve root of cervical spinal cord
      - root of thoracic nerve
      - dorsal nerve root of thoracic spinal cord
      - ventral nerve root of thoracic spinal cord
      - root of lumbar spinal nerve
      - ventral nerve root of lumbar spinal cord
      - dorsal nerve root of lumbar spinal cord
      - root of cervical nerve
      - root of sacral nerve
      - dorsal nerve root of sacral spinal cord
      - ventral nerve root of sacral spinal cord
      - root of coccygeal nerve
      - root of vagus nerve
      - accessory nerve root
      - terminal nerve root
      - root of olfactory nerve
      - nerve trunk
      - trunk of sciatic nerve
      - axillary nerve trunk
      - vagus X nerve trunk
      - left vagus X nerve trunk
      - right vagus X nerve trunk
      - sympathetic nerve trunk
      - thoracic sympathetic nerve trunk
      - lumbar sympathetic nerve trunk
      - cervical sympathetic nerve trunk
      - sacral sympathetic nerve trunk
      - spinal nerve trunk
      - trunk of phrenic nerve
      - trunk of intercostal nerve
      - cervical nerve plexus
      - neuron projection bundle connecting eye with brain
      - superior mesenteric plexus
      - pharyngeal nerve plexus
      - dorsal column-medial lemniscus pathway
      - cranial neuron projection bundle
      - inferior mesenteric nerve plexus
      - entire myelin sheath
      - nerve fiber
      - trigeminal nerve fibers
      - postganglionic autonomic fiber
      - postganglionic sympathetic fiber
      - postganglionic parasympathetic fiber
      - preganglionic autonomic fiber
      - preganglionic sympathetic fiber
      - preganglionic parasympathetic fiber
      - sympathetic afferent fiber
      - myelinated nerve fiber
      - unmyelinated nerve fiber
      - luminal layer of epithelium
      - endometrium luminal epithelium
      - subluminal layer of epithelium
      - digestive syncytial vacuole
      - cauda equina
      - layer of microvilli
      - brush border layer
      - intestinal brush border layer
      - striated border microvillus layer
      - short microvillus layer
      - cloacal villus
      - nerve ending
      - sensory receptor
      - mechanoreceptor
      - tactile mechanoreceptor
      - encapsulated tactile receptor
      - nociceptor nerve ending
      - sensory corpuscle
      - Herbst's corpuscle
      - Meissner's corpuscle
      - Ruffini nerve ending
      - interoceptor
      - baroreceptor
      - arterial baroreceptor
      - low-pressure baroreceptor
      - vein baroreceptor
      - cardiac baroreceptor
      - pulmonary baroreceptor
      - chemoreceptor
      - vibrissal follicle-sinus complex
      - thermoreceptor
      - bulboid corpuscle
      - nerve ending of of corpus cavernosum maxillaris
      - glial limiting membrane
      - nervous system cell part layer
      - central nervous system gray matter layer
      - central nervous system white matter layer
      - transparent eye structure
      - keratin sheath of horn
      - regenerating anatomical structure
      - blastema
      - blastema of regenerating fin/limb
      - blastema of regenerating digit tip
      - apical epidermal cap
      - regenerating fin/limb
      - distal epidermal cap of regenerating fin/limb
      - basal regeneration epithelium of regenerating fin/limb
      - anatomical junction
      - nerve plexus
      - spinal nerve plexus
      - coccygeal nerve plexus
      - autonomic nerve plexus
      - celiac nerve plexus
      - superior hypogastric nerve plexus
      - inferior hypogastric nerve plexus
      - internal carotid nerve plexus
      - hypogastric nerve
      - sympathetic nerve plexus
      - renal nerve plexus
      - mesenteric plexus
      - aortic plexus
      - abdominal nerve plexus
      - thoracic aortic plexus
      - ophthalmic plexus
      - bronchoalveolar duct junction
      - mouth-foregut junction
      - kidney corticomedullary boundary
      - ureteropelvic junction
      - ureterovesical junction
      - somite border
      - gingival epithelial attachment
      - gluteal sulcus
      - digestive tract junction
      - foregut-midgut junction
      - esophagogastric junction
      - forestomach-glandular stomach junction
      - gastroduodenal junction
      - choledocho-duodenal junction
      - intestinal-cloacal junction
      - intestinal junction
      - ileocecal junction
      - rectosigmoid junction
      - duodeno-jejunal junction
      - descending sigmoid junction
      - jejuno-ileal junction
      - cortical arch of kidney
      - sac
      - epithelial sac
      - yolk sac
      - visceral yolk sac
      - parietal yolk sac
      - arborizing epithelial duct system
      - embryonic lymph sac
      - jugular lymph sac
      - retroperitoneal embryonic lymph sac
      - iliac lymph sac
      - embryonic cisterna chyli
      - accessory lymph sac
      - anal sac
      - castor sac
      - digestive tract diverticulum
      - caecum
      - echinoderm gastric caecum
      - hepatic cecum
      - actinopterygian pyloric caecum
      - bladder organ
      - swim bladder
      - multicellular anatomical structure
      - organ
      - sense organ
      - chemosensory organ
      - gustatory organ
      - eye
      - simple eye
      - stemma
      - pinhole eye
      - spherical lensed eye
      - simple eye with multiple lenses
      - ommatidium
      - median eye
      - left eye
      - right eye
      - multi-unit eye
      - compound eye
      - nauplius eye
      - chordotonal organ
      - ear
      - right ear
      - left ear
      - tongue
      - olfactory organ
      - osphradium
      - arthropod sensillum
      - head sensillum
      - dorsal ocellus
      - lateral ocellus
      - insect embryonic/larval head sensillum
      - insect external sensillum
      - insect eo-type sensillum
      - insect chaeta
      - insect internal sensillum
      - insect embryonic/larval sensillum
      - golgi tendon organ
      - amphid sensory organ
      - statocyst
      - cupular organ
      - coronal organ
      - ascidian anterior sensory vesicle
      - ascidian ocellus
      - corpuscle of de Quatrefage
      - electroreceptor organ
      - rostral organ
      - mormyromast organ
      - lateral line sense organ
      - ampulla of Lorenzini
      - lunge feeding organ
      - insect larval sense organ
      - insect embryonic/larval head sense organ
      - insect embryonic/larval ocular segment sensillum
      - insect external sensory organ
      - insect internal sense organ
      - membrane organ
      - articular capsule
      - capsule of temporomandibular joint
      - articular capsule of glenohumeral joint
      - articular capsule of hip joint
      - fibrous pericardium
      - tympanic membrane
      - patagium
      - gill membrane
      - respiration organ
      - respiratory velum
      - ligament
      - ligamentum flavum
      - pelvic ligament
      - inguinal ligament
      - anular ligament of radius
      - nonskeletal ligament
      - suspensory ligament
      - suspensory ligament of duodenum
      - cranial suspensory ligament
      - posterior incudal ligament
      - thyrohyoid ligament
      - median thyrohyoid ligament
      - lateral thyrohyoid ligament
      - crico-esophageal tendon
      - blowhole ligament
      - annular ligament of stapes
      - skeletal ligament
      - nuchal ligament
      - calcaneal tendon
      - calcaneofibular ligament
      - ligament of pinna
      - ligament of knee joint
      - patellar ligament
      - cruciate ligament of knee
      - anterior cruciate ligament of knee joint
      - posterior cruciate ligament of knee joint
      - anterolateral ligament of knee
      - ligament of vertebral column
      - posterior longitudinal ligament
      - anterior longitudinal ligament
      - ligament of temporomandibular joint
      - ligament of sternoclavicular joint
      - talofibular ligament
      - anterior talofibular ligament
      - posterior talofibular ligament
      - medial ligament of ankle joint
      - distal sesamoid impar ligament
      - malleal ligament
      - lateral malleal ligament
      - superior malleal ligament
      - anterior malleal ligament
      - ligament of hip joint
      - coracoclavicular ligament
      - transcapular ligament
      - lateral ethmoid-ectopterygoid ligament
      - interopercular-mandibular ligament
      - humerovertebral ligament
      - premaxillary-maxillary ligament
      - primordial ligament
      - metapterygoid-autopalatine ligament
      - lateral ethmoid-autopalatine ligament
      - mesethmoid-premaxillary ligament
      - mesethmoid-maxillary ligament
      - intercostal ligament
      - annular ligament
      - cruciate ligament of atlas
      - arcuate ligament
      - medial arcuate ligament
      - lateral arcuate ligament
      - median arcuate ligament
      - ligament of middle ear
      - urogenital diaphragm
      - uterine ligament
      - epihyoideum
      - palato-maxillary ligament
      - mandibulo-lacrimal ligament
      - palato-vomerine ligament
      - sympathetic trunk
      - dorsal sympathetic chain
      - ventral sympathetic chain
      - simple organ
      - spermathecum
      - mammalian vulva
      - pharyngotympanic tube
      - gland
      - exocrine gland
      - gastric gland
      - cardiac gastric gland
      - pyloric gastric gland
      - principal gastric gland
      - fundic gastric gland
      - intermediate gastric gland
      - serous gland
      - parotid gland
      - gustatory gland
      - mucous gland
      - palatine gland
      - endometrial gland
      - cervical gland
      - anterior lingual gland
      - submucosal gland
      - duodenal gland
      - submucosal esophageal gland
      - hemipenial mucuous gland
      - buccal gland
      - uropygial gland
      - apocrine gland
      - oral gland
      - saliva-secreting gland
      - major salivary gland
      - submandibular gland
      - sublingual gland
      - minor salivary gland
      - Weber's gland
      - labial gland
      - buccal salivary gland
      - zygomatic gland
      - molar gland
      - anterior buccal gland
      - intermaxillary salivary gland
      - gland of tongue
      - Duvernoy's gland
      - supralabial gland
      - infralabial gland
      - merocrine gland
      - silk gland
      - Marshall's gland
      - scent gland
      - violet gland
      - venom gland
      - snake venom gland
      - platypus crural gland
      - holocrine gland
      - hemipenial holocrine gland
      - barnacle cement gland
      - exocrine gland of integumental system
      - femoral gland
      - endocrine gland
      - corpus allatum
      - parathyroid gland
      - superior parathyroid gland
      - digestive system gland
      - ascidian digestive gland
      - hepatopancreas
      - mollusc hepatopancreas
      - arthropod hepatopancreas
      - neuroendocrine gland
      - arthropod neurohemal organ
      - corpus cardiacum
      - retrocerebral complex
      - hatching gland
      - gland of integumental system
      - gland of digestive tract
      - intestinal gland
      - crypt of Lieberkuhn
      - crypt of Lieberkuhn of small intestine
      - crypt of Lieberkuhn of ileum
      - crypt of Lieberkuhn of duodenum
      - crypt of Lieberkuhn of jejunum
      - crypt of Lieberkuhn of large intestine
      - crypt of Lieberkuhn of colon
      - crypt of Lieberkuhn of appendix
      - gland of foregut
      - pharyngeal gland
      - rectal salt gland
      - cloacal gland
      - urodeal gland
      - dorsal cloacal gland
      - amphibian cloacal gland
      - dorsal pelvic gland
      - lateral pelvic gland
      - foregut-midgut junction gland
      - reproductive gland
      - female reproductive gland
      - gastropod albumen gland
      - oviduct shell gland
      - paraurethral gland
      - vestibular gland
      - oviduct albumen gland
      - male reproductive gland
      - seminal fluid secreting gland
      - ampullary gland
      - male accessory sex gland
      - vesicular gland
      - salt gland
      - cranial salt gland
      - eye gland
      - hemolymphoid system gland
      - embryonic cement gland
      - stomatodeum gland
      - ascidian neural complex
      - excretory gland
      - antennal gland
      - crustacean maxillary gland
      - coxal gland
      - parotoid gland
      - alveolar gland
      - gular gland
      - gland of ocular region
      - medial gland of ocular region
      - lateral gland of orbital region
      - pterygopodial gland
      - swim bladder gas gland
      - intermaxillary gland (sensu Osteolepiformes)
      - respiratory system gland
      - granular gland
      - gill
      - papula
      - pharyngeal gill
      - internal gill
      - compound organ
      - cavitated compound organ
      - kidney
      - left kidney
      - right kidney
      - bronchial tube
      - solid compound organ
      - Weberian ossicle
      - intercalarium
      - tripus
      - os suspensorium
      - manubrium
      - os suspensorium medial flange
      - claustrum element
      - claustrum cartilage
      - claustrum bone
      - respiratory airway
      - open tracheal system trachea
      - insect trachea
      - dorsal trunk of insect trachea
      - future tongue
      - corpus cavernosum maxillaris
      - circulatory organ
      - primary circulatory organ
      - peristaltic circulatory vessel
      - accessory circulatory organ
      - lymph heart
      - right lymph heart
      - left lymph heart
      - embryonic lymph heart
      - copulatory lymph heart
      - cardial lymph propulsor
      - epibranchial organ
      - ovipositor
      - caudal-fin organ
      - reproductive organ
      - gonad
      - testis
      - left testis
      - right testis
      - ovary
      - right ovary
      - left ovary
      - median ovary
      - hermaphrodite gonad
      - indifferent gonad
      - female reproductive organ
      - internal female genitalia
      - external female genitalia
      - male reproductive organ
      - external male genitalia
      - internal male genitalia
      - intromittent organ
      - hemipenis
      - clasper
      - cephalic clasper
      - pelvic fin clasper
      - clasper plate
      - prepelvic clasper
      - priapium
      - phallodeum
      - intromittent organ (Ascaphus type)
      - internal genitalia
      - external genitalia
      - indifferent external genitalia
      - synovial bursa
      - navicular bursa
      - navicular bursa of manus
      - navicular bursa of pes
      - arthropod fat body
      - radula
      - skeletal element
      - bone element
      - long bone
      - clavicle bone
      - right clavicle
      - left clavicle
      - endochondral bone
      - bony vertebral centrum
      - centrum 1
      - centrum 2
      - centrum 3
      - centrum 4
      - centrum 5
      - centrum 6
      - Weberian complex centrum
      - procoelous
      - opisthocoelous
      - epichordal
      - perichordal
      - heterocoelous
      - acoelous
      - amphicoelous
      - ectochordal
      - holochordal
      - stegochordal
      - anomocoelous
      - displasiocoelous
      - intercentrum
      - atlas intercentrum
      - axis intercentrum
      - pleurocentrum
      - basioccipital bone
      - exoccipital bone
      - turbinate bone
      - sternebra
      - rib
      - true rib
      - false rib
      - floating rib
      - rib 1
      - rib 2
      - rib 3
      - rib 4
      - rib 5
      - rib 6
      - rib 7
      - rib 9
      - rib 10
      - rib 11
      - rib 12
      - rib 8
      - cervical rib
      - lumbar rib
      - rib of vertebra 6
      - rib of vertebra 5
      - rib of vertebra 2
      - rib of vertebra 1
      - rib of vertebra 3
      - rib of vertebra 4
      - presacral rib
      - trunk rib
      - sacral rib
      - rib of vertebra 7
      - rib of vertebra 8
      - vertebra
      - vertebral bone 1
      - vertebral bone 2
      - sacral vertebra
      - sacral vertebra 1
      - sacral vertebra 2
      - sacral vertebra 3
      - sacral vertebra 4
      - caudal vertebra
      - preural vertebra
      - preural 1 vertebra
      - preural 2 vertebra
      - preural 3 vertebra
      - ural vertebra
      - ural vertebra 2
      - ural vertebra 1
      - caudal vertebra 1
      - thoracic vertebra
      - thoracic vertebra 1
      - thoracic vertebra 2
      - thoracic vertebra 3
      - thoracic vertebra 4
      - thoracic vertebra 5
      - thoracic vertebra 6
      - thoracic vertebra 7
      - thoracic vertebra 9
      - thoracic vertebra 10
      - thoracic vertebra 11
      - thoracic vertebra 12
      - thoracic vertebra 8
      - lumbar vertebra
      - lumbar vertebra 1
      - lumbar vertebra 2
      - lumbar vertebra 3
      - lumbar vertebra 4
      - lumbar vertebra 5
      - trunk or cervical vertebra
      - cervical vertebra
      - mammalian cervical vertebra 3
      - mammalian cervical vertebra 4
      - mammalian cervical vertebra 5
      - mammalian cervical vertebra 6
      - mammalian cervical vertebra 7
      - proatlas
      - trunk vertebra
      - transverse process-bearing vertebra
      - non-transverse process-bearing vertebra
      - predorsal vertebra
      - precaudal vertebra
      - Weberian vertebra
      - non-Weberian precaudal vertebra
      - urostyle
      - preural centrum 1+ ural centrum 1
      - preural centrum 1 + ural centrum 1 + ural centrum 2
      - neural arch
      - vertebral arch of axis
      - lumbar vertebral arch
      - cervical vertebral arch
      - posterior arch of atlas
      - vertebral arch of sacral segment
      - thoracic vertebral arch
      - scaphium
      - uroneural
      - uroneural 1
      - pleurostyle
      - uroneural 2
      - uroneural 3
      - stegural
      - upper uroneural
      - neural arch 2
      - neural arch 3
      - neural arch 4
      - rudimentary neural arch
      - neural arch 1
      - accessory neural arch
      - neural arch 5
      - imbricate neural arch
      - non-imbricate neural arch
      - coracoid bone
      - supraoccipital bone
      - hypohyal bone
      - scapula
      - perichondral bone
      - mesethmoid bone
      - procoracoid bone
      - hyomandibular bone
      - ceratohyal bone
      - basihyal bone
      - stylohyoid bone
      - thyrohyoid bone
      - entotympanic bone
      - rostral entotympanic element
      - interhyal bone
      - dorsal hypohyal bone
      - lateral ethmoid bone
      - mesocoracoid bone
      - radial bone
      - median fin radial bone
      - anal fin radial bone
      - anal fin proximal radial bone
      - anal fin distal radial bone
      - anal fin middle radial bone
      - dorsal fin radial bone
      - dorsal fin distal radial bone
      - dorsal fin distal radial bone 1
      - dorsal fin distal radial bone 2
      - dorsal fin distal radial bone 3
      - dorsal fin distal radial bone 4
      - dorsal fin distal radial bone 5
      - dorsal fin distal radial bone 6
      - dorsal fin distal radial bone 7
      - dorsal fin distal radial bone 8
      - dorsal fin proximal radial bone
      - dorsal fin proximal radial bone 1
      - dorsal fin proximal radial bone 2
      - dorsal fin proximal radial bone 3
      - dorsal fin proximal radial bone 4
      - dorsal fin proximal radial bone 5
      - dorsal fin proximal radial bone 6
      - dorsal fin proximal radial bone 7
      - dorsal fin proximal radial bone 8
      - dorsal fin middle radial bone
      - median fin proximal radial bone
      - ventral hypohyal bone
      - basioccipital posterodorsal region
      - exoccipital posteroventral region
      - hypobranchial bone
      - hypobranchial 1 bone
      - hypobranchial 4 bone
      - hypobranchial 3 bone
      - hypobranchial 2 bone
      - pterosphenoid
      - ceratobranchial bone
      - ceratobranchial 1 bone
      - ceratobranchial 5 bone
      - ceratobranchial 4 bone
      - ceratobranchial 3 bone
      - ceratobranchial 2 bone
      - intermuscular bone
      - epipleural
      - epineural
      - epineural 1
      - epineural 2
      - epineural 3
      - epineural 4
      - epineural 5
      - epineural 6
      - epicentral bone
      - cephalic rib
      - myorhabdoid bone
      - dorsal myorhabdoid bone
      - ventral myorhabdoid bone
      - pharyngobranchial bone
      - pharyngobranchial 2 bone
      - pharyngobranchial 3 bone
      - pharyngobranchial 1 bone
      - pharyngobranchial 4 bone
      - suprapharyngobranchial
      - sphenotic
      - posterior ceratohyal
      - epibranchial bone
      - epibranchial 1 bone
      - epibranchial 4 bone
      - epibranchial 2 bone
      - epibranchial 3 bone
      - symplectic
      - hemal postzygapophysis
      - specialized hemal arch and spine
      - supraneural 7 bone
      - supraneural 6 bone
      - supraneural 5 bone
      - supraneural 9 bone
      - supraneural 2 bone
      - supraneural 3 bone
      - supraneural 8 bone
      - basibranchial 1 bone
      - basibranchial 2 bone
      - basibranchial 3 bone
      - basibranchial 4 bone
      - sublingual bone
      - sublingual dorsal and ventral fused
      - sublingual dorsal ossification
      - sublingual ventral ossification
      - hemal spine
      - hypural
      - hypural 1
      - hypural 2
      - hypural 3
      - hypural 4
      - hypural 5
      - hypural 6
      - hypural 7
      - fused hypural 1 and 2
      - parhypural
      - parapophysis + rib of vertebra 4
      - preethmoid bone
      - transverse radial
      - anal-fin stay
      - dorsal-fin stay
      - basibranchial 5 bone
      - parapophysis + rib of vertebra 3
      - parapophysis + rib of vertebra 3 + rib of vertebra 4
      - supraneural 1 bone
      - supraneural 4 bone
      - second preethmoid bone
      - hypural plate
      - ural centrum
      - ural centrum 2
      - ural centrum 1
      - ural centrum 3
      - ural centrum 4
      - interhaemal bone
      - hemal prezygapophysis
      - otoccipital
      - sphenethmoid
      - suprasphenoid
      - parahyoid
      - os triangulare
      - anterior radial
      - posterior radial
      - hypobranchial I
      - ceratobranchial I
      - hypobranchial II
      - interarcual bone
      - intramembranous bone
      - tetrapod parietal bone
      - tympanic ring
      - neck bone
      - trunk bone
      - thoracic segment bone
      - chest bone
      - abdominal segment bone
      - fused sacrum
      - bone of pelvis
      - bone of dorsum
      - coccyx
      - carapace bone
      - peripheral plate of carapace
      - pleural plate of carapace
      - neural plate of carapace
      - pygal plate of carapace
      - nuchal plate of carapace
      - suprapygal plate of carapace
      - costal plate of carapace
      - fin bone
      - bony fin ray
      - camptotrichium
      - basibranchial bone
      - basibranchial I
      - basibranchial II
      - cranial bone
      - sutural bone
      - neurocranium bone
      - occipital bone
      - basiotic bone
      - intercalar
      - petrosal bone
      - bone of tail
      - bone of reproductive organ
      - os priapium
      - ctenactinium
      - aproctal bone of priapium
      - pygostyle
      - synsacrum
      - membrane bone
      - ossified transcapular ligament
      - lateral bone
      - bone of craniocervical region
      - head bone
      - irregular bone
      - hyoid bone
      - pneumatized bone
      - temporal bone
      - bone of hip region
      - flat bone
      - accessory bone
      - bone of appendage girdle complex
      - girdle bone/zone
      - pectoral girdle bone
      - bone of pectoral complex
      - shoulder bone
      - bone of pelvic complex
      - paraglossale
      - replacement bone
      - perichordal bone
      - notochordal ossification
      - chondral bone
      - short bone
      - sesamoid bone
      - flexor sesamoid
      - ossified tendon
      - ossified ligament
      - cartilago sesamoides
      - supratendinal bridge
      - supraneural bone
      - post-Weberian supraneural
      - os basale
      - tooth-like structure
      - chitinous tooth
      - keratinous tooth
      - anal tooth
      - egg tooth
      - scapulocoracoid
      - cartilage element
      - cartilage of external ear
      - crus of ear
      - costal cartilage
      - xiphoid cartilage
      - cartilage of respiratory system
      - neck cartilage
      - intervertebral disk of cervical vertebra
      - intervertebral disk of third cervical vertebra
      - intervertebral disk of fourth cervical vertebra
      - intervertebral disk of fifth cervical vertebra
      - intervertebral disk of sixth cervical vertebra
      - intervertebral disk of seventh cervical vertebra
      - intervertebral disk of axis
      - intervertebral disk of atlas
      - cervical vertebra cartilage element
      - cranial cartilage
      - cartilage element of chondrocranium
      - neurocranial trabecula
      - basioccipital cartilage element
      - lamina orbitonasalis
      - tectum synoticum
      - trabecula cranii
      - parachordal cartilage
      - prechordal cartilage
      - hypophyseal cartilage
      - exoccipital cartilage element
      - supraoccipital cartilage element
      - ethmoid cartilage
      - nasal concha cartilage
      - kinethmoid cartilage
      - basal plate cartilage
      - epiphyseal bar
      - occipital arch cartilage
      - taenia marginalis anterior
      - trabecula communis
      - taenia marginalis posterior
      - rostral cartilage
      - pila antoptica
      - pila metoptica
      - taenia tecti marginalis
      - taeniae tecti marginalis
      - taenia tecti transversalis
      - taenia tecti medialis
      - pila preoptica
      - antorbital cartilage
      - second preethmoid cartilage
      - pharyngeal arch cartilage
      - articular cartilage element
      - hyomandibular cartilage
      - ceratohyal cartilage
      - hypohyal cartilage
      - basihyal cartilage
      - thyrohyoid cartilage
      - tympanohyoid cartilage
      - basibranchial cartilage
      - basibranchial 1 cartilage
      - basibranchial 4 cartilage
      - basibranchial 5 cartilage
      - basibranchial 2 cartilage
      - basibranchial 3 cartilage
      - basibranchial copula
      - anterior copula
      - posterior copula
      - interhyal cartilage
      - ceratobranchial cartilage
      - ceratobranchial 2 cartilage
      - ceratobranchial 3 cartilage
      - ceratobranchial 4 cartilage
      - ceratobranchial 1 cartilage
      - ceratobranchial 5 cartilage
      - hypobranchial cartilage
      - hypobranchial 4 cartilage
      - hypobranchial 1 cartilage
      - hypobranchial 2 cartilage
      - hypobranchial 3 cartilage
      - epibranchial cartilage
      - epibranchial 5 cartilage
      - epibranchial 1 cartilage
      - epibranchial 3 cartilage
      - epibranchial 2 cartilage
      - epibranchial 4 cartilage
      - pharyngobranchial cartilage
      - pharyngobranchial 4 cartilage
      - pharyngobranchial 3 cartilage
      - pharyngobranchial 2 cartilage
      - pharyngobranchial 1 cartilage
      - sublingual cartilage
      - sublingual dorsal cartilage
      - sublingual ventral cartilage
      - mediopharyngobranchial
      - gongyloid cartilage
      - gill ray
      - post-ceratobranchial cartilage
      - epibranchial 1 bone proximal cartilage
      - epibranchial 2 bone proximal cartilage
      - ceratobranchial 3 bone distal cartilage
      - ceratobranchial 4 bone proximal cartilage
      - ceratobranchial 4 bone distal cartilage
      - ceratobranchial 5 bone distal cartilage
      - hypobranchial 1 bone distal cartilage
      - hypobranchial 2 bone distal cartilage
      - epibranchial 3 bone uncinate process cartilage
      - epibranchial 4 bone uncinate process cartilage
      - mandibular-hyoid median cartilage
      - interarcual cartilage
      - commissura terminales of hyoid apparatus
      - cartilago orbitalis
      - cartilago prootico-occipitalis
      - arcus praeoccipitalis
      - orbital cartilages
      - rib cartilage element
      - scapula cartilage element
      - cartilage of pharyngotympanic tube
      - cartilaginous vertebral centrum
      - calcar
      - piston cartilage
      - vertebra cartilage element
      - sacral vertebra cartilage element
      - caudal vertebra cartilage element
      - thoracic vertebra cartilage element
      - lumbar vertebra cartilage element
      - precaudal vertebra cartilage element
      - intervertebral cartilage
      - intervertebral disk
      - tail intervertebral disc
      - intervertebral disk of thoracic vertebra
      - intervertebral disk of lumbar vertebra
      - intervertebral disk of sacral vertebra
      - procoracoid cartilage
      - disk of temporomandibular joint
      - acetabular labrum
      - glenoid labrum of scapula
      - bursal cartilage
      - sesamoid cartilage
      - Y-shaped fibrocartilage skeleton of ventral pouch
      - future piston
      - postcranial axial cartilage
      - basidorsal
      - roofing cartilage
      - supradorsal
      - basiventral
      - median fin cartilage
      - median caudal cartilage
      - supraneural cartilage
      - supraneural 2 cartilage
      - supraneural 3 cartilage
      - supraneural 1 cartilage
      - supraneural 4 cartilage
      - supraneural 5 cartilage
      - supraneural 6 cartilage
      - supraneural 7 cartilage
      - supraneural 8 cartilage
      - supraneural 9 cartilage
      - mesocoracoid cartilage
      - pelvic radial cartilage
      - pelvic radial 3 cartilage
      - pelvic radial 2 cartilage
      - pelvic radial 1 cartilage
      - radial cartilage
      - median fin radial cartilage
      - anal fin radial cartilage
      - anal fin proximal radial cartilage
      - anal fin distal radial cartilage
      - anal fin middle radial cartilage
      - dorsal fin radial cartilage
      - dorsal fin distal radial cartilage
      - dorsal fin distal radial cartilage 1
      - dorsal fin distal radial cartilage 2
      - dorsal fin distal radial cartilage 3
      - dorsal fin distal radial cartilage 4
      - dorsal fin distal radial cartilage 5
      - dorsal fin distal radial cartilage 6
      - dorsal fin distal radial cartilage 7
      - dorsal fin distal radial cartilage 8
      - dorsal fin proximal radial cartilage
      - dorsal fin proximal radial cartilage 1
      - dorsal fin proximal radial cartilage 2
      - dorsal fin proximal radial cartilage 3
      - dorsal fin proximal radial cartilage 4
      - dorsal fin proximal radial cartilage 5
      - dorsal fin proximal radial cartilage 6
      - dorsal fin proximal radial cartilage 7
      - dorsal fin proximal radial cartilage 8
      - dorsal fin middle radial cartilage
      - median fin proximal radial cartilage
      - suprascapula
      - epicoracoid
      - cartilago lateralis of aryngo-tracheal chamber
      - otic opercular element
      - permanent cartilage
      - transient cartilaginous element
      - prepubic element
      - pelvic cartilage
      - ventral marginal cartilage
      - dorsal fin basal cartilage (elasmobranchs)
      - anal fin basal cartilage
      - posterior dorsal fin basal cartilage (elasmobranchs)
      - anterior dorsal fin basal cartilage (elasmobranchs)
      - lateral ethmoid cartilage
      - interneural spine cartilage
      - interhaemal spine cartilage
      - long bone cartilage element
      - arch of centrum of vertebra
      - arch of atlas
      - cartilaginous neural arch
      - hemal arch
      - endochondral element
      - sternum
      - manubrium of sternum
      - mesethmoid element
      - hyomandibular element
      - basihyal element
      - basibranchial element
      - basibranchial 1 element
      - basibranchial 2 element
      - basibranchial 3 element
      - basibranchial 4 element
      - basibranchial 5 element
      - supraoccipital endochondral element
      - supraoccipital pre-cartilage condensation
      - rib endochondral element
      - rib pre-cartilage condensation
      - basioccipital endochondral element
      - basioccipital pre-cartilage condensation
      - exoccipital endochondral element
      - exoccipital pre-cartilage condensation
      - scapula endochondral element
      - scapula pre-cartilage condensation
      - alisphenoid endochondral element
      - orbitosphenoid endochondral element
      - nasal turbinal
      - interhyal element
      - hypobranchial element
      - hypobranchial 1 element
      - hypobranchial 2 element
      - hypobranchial 3 element
      - hypobranchial 4 element
      - ceratobranchial element
      - ceratobranchial 1 element
      - ceratobranchial 2 element
      - ceratobranchial 3 element
      - ceratobranchial 4 element
      - ceratobranchial 5 element
      - epibranchial element
      - epibranchial 1 element
      - epibranchial 2 element
      - epibranchial 3 element
      - epibranchial 4 element
      - epibranchial 5 element
      - pharyngobranchial element
      - pharyngobranchial 1 element
      - pharyngobranchial 2 element
      - pharyngobranchial 3 element
      - pharyngobranchial 4 element
      - radial element
      - median fin radial element
      - caudal fin radial element
      - hypochordal radial
      - anal fin radial element
      - anal fin proximal radial element
      - anal fin distal radial element
      - anal fin middle radial element
      - dorsal fin radial element
      - dorsal fin distal radial element
      - dorsal fin distal radial element 1
      - dorsal fin distal radial element 2
      - dorsal fin distal radial element 3
      - dorsal fin distal radial element 4
      - dorsal fin distal radial element 5
      - dorsal fin distal radial element 6
      - dorsal fin distal radial element 7
      - dorsal fin distal radial element 8
      - dorsal fin proximal radial element
      - dorsal fin proximal radial element 1
      - dorsal fin proximal radial element 2
      - dorsal fin proximal radial element 3
      - dorsal fin proximal radial element 4
      - dorsal fin proximal radial element 5
      - dorsal fin proximal radial element 6
      - dorsal fin proximal radial element 7
      - dorsal fin proximal radial element 8
      - dorsal fin middle radial element
      - median fin proximal radial element
      - epichordal radial
      - omosternum
      - postcoracoid
      - palatoquadrate element
      - supraneural element
      - supraneural 1 element
      - supraneural 2 element
      - supraneural 3 element
      - supraneural 4 element
      - supraneural 5 element
      - supraneural 6 element
      - supraneural 7 element
      - supraneural 8 element
      - supraneural 9 element
      - mesocoracoid element
      - lateral ethmoid element
      - tectum orbitale
      - second preethmoid element
      - replacement element
      - ceratohyal element
      - hypohyal element
      - ligamentous replacement element
      - ossicle
      - appendicular ossicle
      - axial ossicle
      - sesamoid element
      - rostral ossicle
      - vertebral element
      - vertebra pre-cartilage condensation
      - sacral vertebra pre-cartilage condensation
      - caudal vertebra pre-cartilage condensation
      - cervical vertebra pre-cartilage condensation
      - thoracic vertebra pre-cartilage condensation
      - lumbar vertebra pre-cartilage condensation
      - cervical vertebra endochondral element
      - thoracic vertebra endochondral element
      - lumbar vertebra endochondral element
      - sacral vertebra endochondral element
      - caudal vertebra endochondral element
      - vertebral element 1
      - vertebral element 2
      - vertebral element 3
      - vertebral element 4
      - vertebral element 5
      - vertebral element 6
      - vertebral element 7
      - vertebral element 8
      - vertebral element 9
      - vertebral element 10
      - vertebral element 11
      - vertebral element 12
      - precaudal vertebra endochondral element
      - procoracoid element
      - vertebral centrum element
      - pharyngeal bar
      - pars interarticularis of vertebra
      - zonal element
      - occipito-petrosal
      - fin ray
      - elastoidin fin ray
      - ceratotrichium
      - dorsal fin ceratotrichial spine (elasmobranchs)
      - immune organ
      - lymph node
      - cervical lymph node
      - deep cervical lymph node
      - deep lateral cervical lymph node
      - lateral superior deep cervical lymph node
      - anterior superior deep cervical lymph node
      - lateral inferior deep cervical lymph node
      - anterior inferior deep cervical lymph node
      - superior deep lateral cervical lymph node
      - inferior deep lateral cervical lymph node
      - jugulodigastric lymph node
      - deep anterior cervical lymph node
      - retropharyngeal lymph node
      - right retropharyngeal lymph node
      - left retropharyngeal lymph node
      - paratracheal lymph node
      - infrahyoid lymph node
      - prelaryngeal lymph node
      - thyroid lymph node
      - pretracheal lymph node
      - superficial cervical lymph node
      - superficial lateral cervical lymph node
      - superficial anterior cervical lymph node
      - lateral cervical lymph node
      - anterior cervical lymph node
      - prescapular lymph node
      - supraclavicular lymph node
      - left supraclavicular lymph node
      - Virchow's lymph node
      - right supraclavicular lymph node
      - jugular lymph node
      - external jugular lymph node
      - subclavian lymph node
      - accessory cervical lymph node
      - abdominal lymph node
      - lumbar lymph node
      - left parietal lumbar lymph node
      - parietal pre-aortic lymph node
      - retro-aortic lymph node
      - pancreatic lymph node
      - inferior pancreatic lymph node
      - visceral abdominal lymph node
      - celiac lymph node
      - hepatic lymph node
      - common hepatic lymph node
      - hepatoportal lymph node
      - lymph node along bile duct
      - gastric lymph node
      - paracardial gastric lymph node
      - left gastric lymph node
      - superior left gastric lymph node
      - inferior left gastric lymph node
      - gastro-epiploic lymph node
      - pancreaticosplenic lymph node
      - proximal superior pancreatic lymph node
      - distal superior pancreatic lymph node
      - pyloric lymph node
      - suprapyloric lymph node
      - subpyloric lymph node
      - retropyloric lymph node
      - cystic lymph node
      - lymph node of epiploic foramen
      - pancreaticoduodenal lymph node
      - superior pancreaticoduodenal lymph node
      - anterior superior pancreaticoduodenal lymph node
      - posterior superior pancreaticoduodenal lymph node
      - inferior pancreaticoduodenal lymph node
      - anterior inferior pancreaticoduodenal lymph node
      - posterior inferior pancreaticoduodenal lymph node
      - anterior pancreaticoduodenal lymph node
      - posterior ancreaticoduodenal lymph node
      - intestinal lymph node
      - appendicular lymph node
      - pararectal lymph node
      - pararectal lymph node of pelvis
      - visceral pre-aortic lymph node
      - colic lymph node
      - mesocolic lymph node
      - epicolic lymph node
      - preterminal colic lymph node
      - anorectal lymph node
      - cardiophrenic angle lymph node
      - retrocrural lymph node
      - inferior rectal lymph node
      - visceral lymph node of abdomen
      - perigastric lymph node
      - brachial lymph node
      - renal lymph node
      - peripheral lymph node
      - axillary lymph node
      - superficial axillary lymph node
      - subscapular axillary lymph node
      - right subscapular axillary lymph node
      - left subscapular axillary lymph node
      - pectoral axillary lymph node
      - right pectoral axillary lymph node
      - left pectoral axillary lymph node
      - central axillary lymph node
      - right central axillary lymph node
      - left central axillary lymph node
      - apical axillary lymph node
      - right apical axillary lymph node
      - left apical axillary lymph node
      - lateral axillary lymph node
      - inguinal lymph node
      - deep inguinal lymph node
      - proximal deep inguinal lymph node
      - intermediate deep inguinal lymph node
      - distal deep inguinal lymph node
      - superficial inguinal lymph node
      - superior medial inguinal lymph node
      - superior lateral inguinal lymph node
      - inferior inguinal lymph node
      - popliteal lymph node
      - superficial popliteal lymph node
      - deep popliteal lymph node
      - submandibular lymph node
      - thoracic lymph node
      - mediastinal lymph node
      - node of ligamentum arteriosum
      - anterior mediastinal lymph node
      - diaphragmatic lymph node
      - medial diaphragmatic lymph node
      - paracardiac lymph node
      - lateral diaphragmatic lymph node
      - anterior diaphragmatic lymph node
      - posterior diaphragmatic lymph node
      - superior diaphragmatic lymph node
      - pericardial lymph node
      - aortopulmonary lymph node
      - para-aortic thoracic lymph node
      - lymph node of inferior pulmonary ligament
      - superior mediastinal lymph node
      - subcarinal lymph node
      - posterior mediastinal lymph node
      - intercostal lymph node
      - upper intercostal lymph node
      - lower intercostal lymph node
      - parasternal lymph node
      - supramammary lymph node
      - sternal lymph node
      - paramammary lymph node
      - brachiocephalic lymph node
      - bronchopulmonary lymph node
      - splenic lymph node
      - lymph node of head
      - parotid lymph node
      - superficial parotid lymph node
      - deep parotid lymph node
      - anterior auricular lymph node
      - infra-auricular lymph node
      - intraglandular lymph node
      - facial lymph node
      - mandibular lymph node
      - accessory mandibular lymph node
      - buccinator lymph node
      - nasolabial lymph node
      - malar lymph node
      - cranial deep lymph node
      - mastoid lymph node
      - submental lymph node
      - intraparotid lymph node
      - superficial intraparotid lymph node
      - deep intraparotid lymph node
      - occipital lymph node
      - right occipital lymph node
      - left occipital lymph node
      - supramandibular lymph node
      - lingual lymph node
      - pelvic lymph node
      - parietal pelvic lymph node
      - common iliac lymph node
      - medial common iliac lymph node
      - intermediate common iliac lymph node
      - lateral common iliac lymph node
      - subaortic common iliac lymph node
      - promontory lymph node
      - external iliac lymph node
      - obturator lymph node
      - medial external iliac lymph node
      - intermediate external iliac lymph node
      - lateral external iliac lymph node
      - interiliac lymph node
      - internal iliac lymph node
      - gluteal lymph node
      - superior gluteal lymph node
      - inferior gluteal lymph node
      - presymphysial lymph node
      - subiliac lymph node
      - superficial lymph node
      - infraclavicular lymph node
      - deep lymph node
      - ileocolic lymph node
      - superior ileocolic lymph node
      - inferior ileocolic lymph node
      - paraaortic lymph node
      - auricular lymph node
      - thymic lymph node
      - lymph node of lower limb
      - sciatic lymph node
      - tibial lymph node
      - fibular lymph node
      - lymph node of upper limb
      - antebrachial lymph node
      - interpectoral lymph node
      - cubital lymph node
      - supratrochlear lymph node
      - retroperitoneal lymph node
      - pulmonary lymph node
      - subsegmental lymph node
      - interlobar lymph node
      - lobar lymph node
      - segmental lymph node
      - craniocervical lymph node
      - sublumbar lymph node
      - sacral lymph node
      - lateral sacral lymph node
      - medial sacral lymph node
      - lymphocyte domain
      - B cell domain
      - lymph node B cell domain
      - T cell domain
      - Peyer's patch T cell area
      - lymph node T cell domain
      - Oka organ
      - dorsal region element
      - trunk region element
      - viscus
      - pancreas
      - thoracic cavity element
      - esophagus
      - heart plus pericardium
      - abdominal viscera
      - peritoneal sac
      - abdominal segment element
      - abdomen element
      - pelvic region element
      - thoracic segment organ
      - pericardial sac
      - chest organ
      - peptonephridium
      - crop
      - serous sac
      - vestibular organ
      - electric organ
      - tail electric organ
      - head electric organ
      - tube foot ampulla
      - spermaceti organ
      - Hatschek's nephridium
      - cell cluster organ
      - mycetome
      - echolocation organ
      - melon organ
      - oral cirrus
      - plume
      - trophosome
      - opisthosome
      - tubeworm tube
      - junk chamber
      - ring of oral cilia
      - lophophore
      - toxactinium
      - digestive system element
      - large intestine
      - vermiform appendix
      - small intestine
      - food storage organ
      - stomach
      - gizzard
      - ruminant stomach
      - equine glandular stomach
      - sublingua
      - baleen plate
      - nematode pharynx
      - compound cell cluster organ
      - scolex
      - vocal organ
      - velum feeding organ
      - accessory nasal sac
      - photophore
      - organ part
      - anatomical wall
      - gut wall
      - wall of esophagus
      - wall of stomach
      - wall of intestine
      - wall of small intestine
      - wall of large intestine
      - wall of appendix
      - posterior wall of laryngopharynx
      - uterine wall
      - abdominal wall
      - thoracic wall
      - chest wall
      - wall of pharyngotympanic tube
      - pelvic wall
      - lateral wall of nasal cavity
      - organ subunit
      - duct
      - digestive system duct
      - duct of salivary gland
      - sublingual duct
      - major sublingual duct
      - minor sublingual duct
      - submandibular duct
      - intercalated duct of salivary gland
      - parotid gland intercalated duct
      - striated duct of salivary gland
      - parotid gland striated duct
      - anterior lingual gland duct
      - parotid gland intralobular duct
      - excretory duct of salivary gland
      - parotid gland excretory duct
      - parotid main excretory duct
      - parotid gland interlobular duct
      - interlobular duct of salivary gland
      - pneumatic duct
      - duct of male reproductive system
      - ejaculatory duct
      - vas deferens
      - efferent duct
      - vasa efferentia
      - male genital duct
      - renal duct
      - nephric duct
      - distal late tubule
      - neurohypophyseal duct
      - paraurethral duct
      - duct of vestibular gland
      - venom gland duct
      - intralobular duct
      - intercalated duct
      - intercalated duct of pancreas
      - excretory duct
      - interlobular duct
      - interlobar duct
      - ductus communicans
      - transverse canal
      - submucosal gland collecting duct
      - submucosal gland ciliated duct
      - renal corpuscle
      - lesser sac
      - vertebra lamina
      - segmental subdivision of nervous system
      - kidney calyx
      - major calyx
      - minor calyx
      - lobule
      - renal lobule
      - anatomical lobe
      - renal lobe
      - lobe of lacrimal gland
      - orbital lobe of lacrimal gland
      - palpebral lobe of lacrimal gland
      - cloacal bursa
      - pilosebaceous unit
      - vibrissa unit
      - lunge feeding vibrissa
      - crus of diaphragm
      - right crus of diaphragm
      - left crus of diaphragm
      - costal diaphragm
      - parenchyma
      - parenchyma of parathyroid gland
      - parenchyma of pancreas
      - pancreas body parenchyma
      - renal parenchyma
      - lymph node paracortical cord
      - trabecula
      - trabecula of lymph node
      - endocervix
      - body of pancreas
      - renal pelvis
      - renal papilla
      - glomerular capsule
      - renal column
      - nephron
      - long nephron
      - short nephron
      - outer medulla of kidney
      - inner medulla of kidney
      - papilla of tongue
      - filiform papilla
      - horny papilla of tongue
      - mechanical papilla of tongue
      - gustatory papilla of tongue
      - vallate papilla
      - fungiform papilla
      - foliate papilla
      - conical papilla
      - cortex
      - cortex of kidney
      - outer cortex of kidney
      - cortex of lymph node
      - ovarian cortex
      - uterine horn
      - left uterine horn
      - right uterine horn
      - alveolus
      - stroma
      - endometrial stroma
      - interstitial tissue
      - Leydig cell region of testis
      - kidney interstitium
      - renal medulla interstitium
      - outer renal medulla interstitium
      - inner renal medulla interstitium
      - left renal medulla interstitium
      - right renal medulla interstitium
      - renal cortex interstitium
      - left renal cortex interstitium
      - right renal cortex interstitium
      - perihilar interstitium
      - left kidney interstitium
      - right kidney interstitium
      - ovary stroma
      - stroma of pancreas
      - valve
      - madreporite
      - spiral valve of intestine
      - rectal valve
      - lymphatic valve
      - afferent lymphatic vessel valve
      - efferent lymphatic vessel valve
      - kidney pyramid
      - organ component layer
      - submucosa
      - respiratory system submucosa
      - submucosa of pharynx
      - submucosa of laryngopharynx
      - submucosa of digestive tract
      - submucosa of stomach
      - submucosa of fundus of stomach
      - submucosa of body of stomach
      - submucosa of cardia of stomach
      - submucosa of pylorus
      - submucosa of pyloric antrum
      - submucosa of esophagus
      - lower esophagus submucosa
      - intestinal submucosa
      - submucosa of small intestine
      - submucosa of duodenum
      - submucosa of jejunum
      - submucosa of ileum
      - submucosa of large intestine
      - submucosa of rectum
      - submucosa of colon
      - submucosa of cecum
      - submucosa of ascending colon
      - submucosa of transverse colon
      - submucosa of descending colon
      - submucosa of sigmoid colon
      - submucosa of appendix
      - submucosa of cloaca
      - esophagogastric junction submucosa
      - lamina propria
      - lamina propria of esophagus
      - respiratory system lamina propria
      - lamina propria of trachea
      - gastrointestinal system lamina propria
      - lamina propria of small intestine
      - duodenum lamina propria
      - jejunum lamina propria
      - ileum lamina propria
      - lamina propria of large intestine
      - lamina propria of mucosa of colon
      - lamina propria of fundus of stomach
      - oral lamina propria
      - membranous layer
      - inner cambium layer of periosteum
      - periosteum
      - pericranium
      - periosteum of long bone
      - periosteum of epiphysis
      - capsule
      - capsule of ovary
      - capsule of parathyroid gland
      - capsule of lymph node
      - tonsil capsule
      - capsule of pancreas
      - Reichert's membrane
      - extraembryonic membrane
      - allantois
      - fetal membrane
      - cloacal membrane
      - tunica albuginea
      - tunica albuginea of testis
      - tunica albuginea of ovary
      - aponeurosis
      - epicranial aponeurosis
      - pharyngobasilar fascia
      - aponeurosis palmaris
      - outer fibrous layer of periosteum
      - endosteum
      - omphalopleure
      - bilaminar omphalopleure
      - trilaminar omphalopleure
      - tendon sheath
      - mucosa
      - esophagus mucosa
      - lower esophagus mucosa
      - mouth mucosa
      - gingiva
      - gingiva of upper jaw
      - gingiva of lower jaw
      - mucosa of oral region
      - mucosa of tongue
      - frenulum of tongue
      - mucosa of dorsum of tongue
      - buccal mucosa
      - alveolar mucosa
      - oral frenulum
      - frenulum of lip
      - frenulum of upper lip
      - frenulum of lower lip
      - mucosa of lip
      - mucosa of upper lip
      - mucosa of lower lip
      - respiratory system mucosa
      - pharyngeal mucosa
      - mucosa of laryngopharynx
      - mucosa of epiglottis
      - tracheal mucosa
      - gastrointestinal system mucosa
      - mucosa of stomach
      - mucosa of fundus of stomach
      - mucosa of body of stomach
      - mucosa of cardia of stomach
      - mucosa of pylorus
      - mucosa of pyloric antrum
      - stomach glandular region mucosa
      - inner lining mucosa of the abomasum
      - mucosa of gastroduodenal junction
      - mucosa of rumen
      - intestinal mucosa
      - mucosa of small intestine
      - duodenal mucosa
      - ileal mucosa
      - jejunal mucosa
      - mucosa of large intestine
      - colonic mucosa
      - cecum mucosa
      - mucosa of ascending colon
      - mucosa of transverse colon
      - mucosa of descending colon
      - mucosa of sigmoid colon
      - mucosa of rectum
      - mucosa of appendix
      - colorectal mucosa
      - mucosa of renal pelvis
      - mucosa of major calyx
      - mucosa of minor calyx
      - mucosa of sphenoidal sinus
      - mucosa of middle ear
      - mucosa of pharyngotympanic tube
      - mucosa of frontal sinus
      - mucosa of maxillary sinus
      - mucosa of paranasal sinus
      - mucosa of infraorbital sinus
      - mucosa of ethmoidal sinus
      - cloacal mucosa
      - reproductive system mucosa
      - endometrium
      - cervical mucosa
      - mucosa of ejaculatory duct
      - mucosa of deferent duct
      - mucosa of infundibulum of uterine tube
      - oviduct mucosal fold
      - viscerocranial mucosa
      - esophagogastric junction mucosa
      - intestinal villus
      - intestinal villus of duodenum
      - intestinal villus of jejunum
      - intestinal villus of ileum
      - tunica intima
      - tela choroidea
      - ventricle of nervous system
      - photoreceptor array
      - adventitia
      - swim bladder tunica externa
      - swim bladder tunica interna
      - adventitia of ductus deferens
      - adventitia of esophagus
      - fibrous membrane of synovial tendon sheath
      - subserosa
      - dermal layer of tongue
      - integumentary system layer
      - lamina of omasum
      - layer of muscle tissue
      - muscular coat
      - muscular coat of vas deferens
      - muscular coat of digestive tract
      - muscle layer of esophagus
      - lower esophagus muscularis layer
      - muscle layer of intestine
      - muscle layer of large intestine
      - muscle layer of colon
      - muscle layer of sigmoid colon
      - muscle layer of rectum
      - muscle layer of small intestine
      - muscle layer of jejunum
      - muscle layer of duodenum
      - muscle layer of ileum
      - muscle layer of cloaca
      - esophagogastric junction muscularis propria
      - layer of smooth muscle tissue
      - myometrium
      - circular muscle layer of muscular coat
      - appendix smooth muscle circular layer
      - longitudinal muscle layer of muscular coat
      - appendix smooth muscle longitudinal layer
      - taenia coli
      - testicular sheath
      - descending thin limb
      - juxtamedullary cortex
      - greater sac
      - insect labrum
      - integumentary adnexa
      - integumentary projection
      - cutaneous appendage
      - comb and wattle
      - comb
      - skin bony tubercle
      - villosities
      - flexor tubercle of ungual
      - conchal part of pinna
      - pectineal ligament
      - tongue intermolar eminence
      - inguinal ring
      - superficial inguinal ring
      - deep inguinal ring
      - female superficial inguinal ring
      - female deep inguinal ring
      - female inguinal ring
      - male inguinal ring
      - sublingual caruncle
      - body of sternum
      - anal part of perineum
      - dome of diaphragm
      - left dome of diaphragm
      - right dome of diaphragm
      - rugal fold
      - rugal fold of stomach
      - involucrum
      - sequestrum
      - cetacean involucrum
      - left colon
      - right colon
      - tip of renal papilla
      - dorsum of tongue
      - lymph node medullary cord
      - ascidian cerebral ganglion
      - ascidian ciliated funnel
      - ascidian neural gland
      - medullary ray
      - anterior part of tongue
      - posterior part of tongue
      - layer of tympanic membrane
      - tympanic membrane epithelium
      - intermediate layer of tympanic membrane
      - torus pylorus
      - muscle belly
      - occipitalis
      - frontalis muscle belly
      - pterygopharyngeal part of superior pharyngeal constrictor
      - carina of sternum
      - body of tongue
      - muscle head
      - long head of biceps brachii
      - short head of biceps brachii
      - gastrocnemius medialis
      - gastrocnemius lateralis
      - ectocervix
      - coprodeum
      - urodeum
      - proctodeum portion of cloaca
      - bulb of vestibule
      - lobe of tail
      - epiglottic vallecula
      - genital papilla of vulva
      - subdivision of tube
      - cloaca
      - embryonic cloaca
      - epiglottis
      - stomodeum
      - hypopharynx
      - cortical collecting duct
      - subdivision of digestive tract
      - intestine
      - mouth
      - proximal-distal subdivision of colon
      - ascending colon
      - transverse colon
      - descending colon
      - sigmoid colon
      - spiral colon
      - foregut
      - midgut
      - hindgut
      - rectum
      - colon
      - duodenum
      - jejunum
      - ileum
      - foregut region of duodenum
      - midgut region of duodenum
      - tailgut
      - lower digestive tract
      - upper digestive tract
      - pharynx
      - chordate pharynx
      - insect pharynx
      - terminal part of digestive tract
      - reticulorumen
      - pyloric stomach
      - echinoderm pyloric cecum
      - cardiac stomach
      - zone of stomach
      - fundus of stomach
      - body of stomach
      - cardia of stomach
      - lesser curvature of stomach
      - greater curvature of stomach
      - pyloric antrum
      - pylorus
      - pyloric canal
      - stomach glandular region
      - proventriculus
      - abomasum
      - stomach non-glandular region
      - ruminant forestomach
      - ruminant reticulum
      - omasum
      - rumen
      - murine forestomach
      - midgut loop
      - periampullary region of duodenum
      - colorectum
      - upper esophagus
      - lower esophagus
      - middle part of esophagus
      - duodenal ampulla
      - anorectum
      - renal medulla collecting duct
      - uterus or analog
      - subdivision of oviduct
      - uterus
      - duplex uterus
      - bipartite uterus
      - bicornuate uterus
      - simplex uterus
      - gravid uterus
      - uterine tube infundibulum
      - uterine tube magnum
      - avian uterine tube isthmus
      - abdominal part of esophagus
      - thoracic part of esophagus
      - cervical part of esophagus
      - future mouth
      - osteon
      - cymba conchae of pinna
      - transverse folds of rectum
      - pars flaccida of tympanic membrane
      - pars tensa of tympanic membrane
      - extramural oviduct
      - pars canalicularis of petrosal
      - crus of penis or clitoris
      - colic flexure
      - splenic flexure of colon
      - hepatic flexure of colon
      - blood sinus of vibrissa
      - zone of organ
      - neck of organ
      - uterine cervix
      - neck of bone element
      - neck of rib
      - neck of scapula
      - auricular cartilage
      - duodenal papilla
      - major duodenal papilla
      - minor duodenal papilla
      - zone of bone organ
      - petrous part of temporal bone
      - head of rib
      - ventral head of rib
      - dorsal head of rib
      - body of rib
      - clivus of occipital bone
      - scapula spine
      - zone of long bone
      - epiphysis
      - distal epiphysis
      - proximal epiphysis
      - epiphysis of phalanx of pes
      - metaphysis
      - distal metaphysis
      - proximal metaphysis
      - long bone epiphyseal ossification zone
      - diaphysis
      - sternal end of clavicle
      - diaphysis proper
      - subchondral region of epiphysis
      - clavicle blade
      - coracoid process of scapula
      - annular epiphysis
      - occipital condyle
      - tegmen tympani
      - squamous part of occipital bone
      - angle of scapula
      - inferior angle of scapula
      - superior angle of scapula
      - lateral angle of scapula
      - uncinate process of ribs
      - epicondyle
      - condyle
      - hyomandibular condyle for the opercle
      - tympanic plate
      - zone of hyoid bone
      - hyoid bone greater horn
      - hyoid bone body
      - ossification center
      - alisphenoid ossification center
      - orbitosphenoid ossification center
      - primary ossification center
      - secondary ossification center
      - proximal segment of rib
      - distal segment of rib
      - postorbital bar
      - antler pedicle
      - anterior part of tympanic bone
      - otic notch
      - occipital bun
      - sagittal crest of skull
      - sagittal keel
      - external occipital protuberance
      - vertebral endplate
      - central part of body of bony vertebral centrum
      - bony part of vertebral arch
      - bony part of cervical vertebral arch
      - bony part of vertebral arch of first sacral vertebra
      - glabella region of bone
      - internal surface of cranial base
      - caniniform region
      - interpterygoid region
      - jugal bar
      - parietal notch
      - pars endotympanica
      - infraorbital bridge
      - orbital pillar
      - promontory of tympanic cavity
      - scapular blade
      - glenoid head of coracoid
      - sternal head of coracoid
      - occipital arch
      - occipital segment
      - coracoid plate
      - sternal keel
      - clavicular facet
      - supraglenoid region
      - glenoid region
      - body of uterus
      - protuberance
      - pharyngeal arch
      - pharyngeal arch 2
      - pharyngeal arch 3
      - pharyngeal arch 4
      - pharyngeal arch 5
      - pharyngeal arch 6
      - pharyngeal arch 1
      - post-hyoid pharyngeal arch
      - pharyngeal arch 7
      - pharyngeal arch 8
      - primitive knot
      - lingual swellings
      - copula linguae
      - hypopharyngeal eminence
      - forehead protuberance
      - epigastrium
      - transverse fold of rectum
      - costodiaphragmatic recess
      - supravaginal part of cervix
      - adnexa of uterus
      - median symphysis
      - pterygoquadrate
      - symphysis maxillaris
      - tympanosquamosal
      - hyoid plate
      - pars reuniens
      - manubrium of hyale
      - processus confluens
      - pedicel
      - atlantal cotyle
      - pleurapophysis
      - mid-dorsal keel
      - sacral condyle
      - urostyle cotyle
      - webbing of bone in vertebral column
      - urostyle ridge
      - epicoracoid bridge
      - epicoracoid horn
      - presacral shield
      - cartilago paraglenoidalis
      - caput glenoidale
      - fossa glenoidalis
      - sulcus articularis lateralis
      - sulcus articularis medialis
      - carina proximalis
      - carina medialis
      - carina distalis
      - fissura sagittalis
      - glenoid end of clavicle
      - margo fenestralis
      - margo posterior
      - margo anterior of scapula
      - margo clavicularis
      - margo posterior of scapula
      - margo suprascapularis
      - pars suprascapularis
      - tenuitas cristaeformis
      - inscriptional rib
      - otic and occipital
      - quadrato-orbital commissure
      - trabecular horn
      - odontoids
      - lateral appendix
      - lateral line nucleus
      - pars recta
      - pars convoluta of oviduct
      - spicule
      - hemipenal sheath
      - infraglenoid buttress
      - spinous region of dorsal fin
      - lingual region
      - labial region
      - posterolingual region
      - mesial region
      - midshaft
      - subcapsular sinus ceiling
      - subcapsular sinus floor
      - medullary region of kidney
      - egg follicle
      - egg chamber
      - neck of pancreas
      - thoracolumbar junction
      - kidney loop of Henle long descending thin limb outer medulla
      - kidney loop of Henle long descending thin limb inner medulla
      - meniscus
      - multicellular organism
      - embryo
      - morula
      - blastula
      - late embryo
      - neurula embryo
      - gastrula
      - cleaving embryo
      - early embryo
      - 2-cell stage embryo
      - 4-8 cell stage embryo
      - 8-cell stage embryo
      - 4-cell stage embryo
      - larva
      - tadpole
      - echinopluteus larva
      - ammocoete
      - nematode larva
      - metacestode
      - second instar larva
      - metacercaria
      - cercaria
      - leptocephalous larva
      - female organism
      - male organism
      - prepupa
      - pupa
      - sexually immature organism
      - adult organism
      - gravid organism
      - hermaphroditic organism
      - sequential hermaphroditic organism
      - protandrous hermaphroditic organism
      - protogynous hermaphroditic organism
      - synchronous hermaphroditic organism
      - carcass
      - post-embryonic organism
      - body of tubeworm
      - insect pharate adult
      - organism subdivision
      - appendage
      - wing
      - forelimb wing
      - imaginal disc-derived wing
      - antenna
      - haltere
      - paired limb/fin
      - limb
      - forelimb
      - right forelimb
      - left forelimb
      - hindlimb
      - hind flipper
      - right hindlimb
      - left hindlimb
      - paired fin
      - pectoral fin
      - archipterygial fin
      - pelvic fin
      - pelvic sucking disc
      - suprabranchial fin
      - pelvic appendage
      - pectoral appendage
      - insect leg
      - tube foot
      - spine appendage
      - spine appendage of head
      - cephalic spine
      - pedicellaria
      - fin
      - median fin
      - dorsal fin
      - posterior dorsal fin
      - anterior dorsal fin
      - sucking disc
      - adipose fin
      - anal fin
      - caudal fin
      - diphycercal tail
      - heterocercal tail
      - homocercal tail
      - hypocercal tail
      - epicercal tail
      - triphycercal tail
      - parapodium
      - ascidian ampulla
      - ampullar siphon
      - tunicate siphon
      - oral siphon
      - atrial siphon
      - elephant trunk
      - clavus
      - anterior region of body
      - posterior region of body
      - paraspinal region
      - lateral lumbar region of abdomen
      - body wall
      - ventral body wall
      - dorsal body wall
      - organismal segment
      - prostomium
      - annelid pygidium
      - annelid peristomium
      - insect head segment
      - procephalic segment
      - insect ocular segment
      - insect larval ocular segment
      - labral segment
      - insect larval labral segment
      - insect adult labral segment
      - antennal segment
      - insect embryonic antennal segment
      - insect larval antennal segment
      - insect adult antennal segment
      - insect embryonic procephalic segment
      - insect larval procephalic segment
      - insect adult procephalic segment
      - insect gnathal segment
      - insect labial segment
      - insect embryonic labial segment
      - insect larval labial segment
      - insect embryonic gnathal segment
      - insect larval gnathal segment
      - insect embryonic head segment
      - insect larval head segment
      - insect adult head segment
      - insect thoracic segment
      - insect prothoracic segment
      - insect embryonic prothoracic segment
      - insect larval prothoracic segment
      - insect adult prothoracic segment
      - insect mesothoracic segment
      - insect embryonic mesothoracic segment
      - insect larval mesothoracic segment
      - insect adult mesothoracic segment
      - insect metathoracic segment
      - insect embryonic metathoracic segment
      - insect larval metathoracic segment
      - insect embryonic thoracic segment
      - insect larval thoracic segment
      - insect adult thoracic segment
      - insect abdominal segment
      - insect abdominal segment 8
      - insect embryonic abdominal segment 8
      - insect larval abdominal segment 8
      - insect abdominal segment 9
      - insect embryonic abdominal segment 9
      - insect larval abdominal segment 9
      - insect embryonic abdominal segment
      - insect larval abdominal segment
      - insect adult abdominal segment
      - insect embryonic segment
      - insect larval segment
      - insect adult segment
      - neck
      - dorsum
      - left side of back
      - right side of back
      - anal region
      - subdivision of head
      - face
      - external ear
      - right external ear
      - left external ear
      - pinna
      - helix of outer ear
      - temporal part of head
      - mouth floor
      - orbital region
      - midface
      - chin
      - forehead
      - tragus
      - glabella region
      - chin ventral margin
      - cranial midline area
      - left part of face
      - midline crest
      - right part of face
      - top of head
      - temporofacial region
      - hip
      - shoulder
      - upper jaw region
      - upper jaw symphyseal region
      - lower jaw region
      - pelvic region of trunk
      - arthropod tibia
      - autopodial extension
      - digit
      - pedal digit
      - webbed pedal digit
      - pedal digit 6
      - pedal digit 7
      - pedal digit 8
      - pedal digit 1 or 5
      - pedal digit 1
      - pedal digit 5
      - pedal digit 2, 3 or 4
      - pedal digit 2
      - pedal digit 3
      - pedal digit 4
      - manual digit
      - webbed manual digit
      - manual digit 6
      - manual digit 7
      - manual digit 8
      - alular digit
      - manual major digit (Aves)
      - manual minor digit (Aves)
      - manual digit 1 or 5
      - manual digit 1
      - manual digit 5
      - manual digit 2, 3 or 4
      - manual digit 2
      - manual digit 3
      - manual digit 4
      - webbed digit
      - digit 6
      - digit 7
      - digit 8
      - digit 1 or 5
      - digit 1
      - digit 5
      - digit 2, 3 or 4
      - digit 2
      - digit 3
      - digit 4
      - prepollex
      - prehallux
      - snout
      - monotreme bill
      - mantle
      - anterior abdominal wall
      - craniocervical region
      - appendage girdle region
      - pelvic girdle region
      - right pelvic girdle region
      - left pelvic girdle region
      - pectoral girdle region
      - dorsal thoracic segment of trunk
      - oral subdivision of organism
      - aboral subdivision of organism
      - ambulacral area
      - inter-ambulacral area
      - columnella
      - inguinal part of abdomen
      - left inguinal part of abdomen
      - right inguinal part of abdomen
      - visceral hump
      - headfoot
      - subdivision of trunk
      - thoracic segment of trunk
      - abdomen
      - chest
      - perineum
      - abdominal segment of trunk
      - lower back
      - dorsal trunk
      - hypogastrium
      - ventral trunk
      - precordial region
      - waist
      - pericardial region
      - appendage girdle complex
      - pectoral complex
      - pelvic complex
      - subdivision of organism along appendicular axis
      - multi-limb segment region
      - leg
      - arm
      - paired limb/fin segment
      - limb segment
      - autopod region
      - pes
      - webbed pes
      - manus
      - webbed manus
      - webbed autopod
      - zeugopod
      - forelimb zeugopod
      - hindlimb zeugopod
      - stylopod
      - hindlimb stylopod
      - forelimb stylopod
      - mesopodium region
      - carpal region
      - tarsal region
      - lower limb segment
      - metatarsus region
      - knee
      - segment of pes
      - plantar part of pes
      - distal segment of pedal digit
      - pedal digitopodium region
      - pedal acropodium region
      - heel
      - inner digits of foot
      - outer digits of pes
      - platypus calcaneus spur
      - upper limb segment
      - elbow
      - segment of manus
      - metacarpus region
      - palmar part of manus
      - distal segment of manual digit
      - manual digitopodium region
      - manual acropodium region
      - inner digits of hand
      - outer digit of hand
      - palmar/plantar part of autopod
      - distal segment of digit
      - pastern region of limb
      - metapodium region
      - segment of autopod
      - digitopodium region
      - acropodium region
      - post-axial region of pectoral appendage
      - pre-axial region
      - pectoral fin base
      - segment of antenna
      - insect segment of leg
      - insect tarsal segment
      - insect metatarsus
      - lamprey sucker
      - tunicate postabdomen
      - jaw region
      - subdivision of organism along main body axis
      - head
      - embryonic head
      - panarthropod head
      - insect adult head
      - insect larval head
      - trunk
      - tail
      - post-anal tail
      - cervical region
      - dorsal part of neck
      - sacral region
      - caudal region
      - post-anal tail tip
      - synarcual region
      - arthropod tagma
      - insect thorax
      - insect embryonic thorax
      - insect larval thorax
      - insect adult thorax
      - insect abdomen
      - insect embryonic abdomen
      - insect larval abdomen
      - insect adult abdomen
      - embryonic tagma
      - insect larval tagma
      - insect adult tagma
      - ventrum
      - main body axis
      - body proper
      - anterior chest
      - lateral side of chest
      - infraclavicular region
      - mons pubis
      - axillary tail of breast
      - enteropneust proboscis
      - enteropneust collar
      - enteropneust trunk
      - quadrant of breast
      - upper quadrant of breast
      - upper outer quadrant of breast
      - upper inner quadrant of breast
      - lower quadrant of breast
      - lower outer quadrant of breast
      - lower inner quadrant of breast
      - inner quadrant of breast
      - outer quadrant of breast
      - submandibular region
      - ball
      - extension
      - ocular side
      - blind side
      - antimere
      - digit plus metapodial segment
      - digit 6 plus metapodial segment
      - manual digit 6 plus metapodial segment
      - digit 7 plus metapodial segment
      - manual digit 7 plus metapodial segment
      - digit 8 plus metapodial segment
      - manual digit 8 plus metapodial segment
      - pedal digit plus metapodial segment
      - pedal digit 1 plus metapodial segment
      - pedal digit 2 plus metapodial segment
      - pedal digit 3 plus metapodial segment
      - pedal digit 4 plus metapodial segment
      - pedal digit 5 plus metapodial segment
      - pedal digit 6 plus metapodial segment
      - pedal digit 7 plus metapodial segment
      - pedal digit 8 plus metapodial segment
      - manual digit plus metapodial segment
      - manual digit 1 plus metapodial segment
      - manual digit 2 plus metapodial segment
      - manual digit 3 plus metapodial segment
      - manual digit 4 plus metapodial segment
      - manual digit 5 plus metapodial segment
      - alular digit plus metapodial segment
      - manual major digit (Aves) plus metapodial segment
      - manual minor digit (Aves) plus metapodial segment
      - digit 1 plus metapodial segment
      - digit 2 plus metapodial segment
      - digit 3 plus metapodial segment
      - digit 4 plus metapodial segment
      - digit 5 plus metapodial segment
      - rostrum
      - interscapular region
      - tissue
      - epithelium
      - multilaminar epithelium
      - dermomyotome
      - epithelial cord
      - prostate epithelial cord
      - stratified squamous epithelium
      - gingival epithelium
      - parakeratinized epithelium of gingiva
      - non-keratinized stratified squamous epithelium
      - non-keratinized epithelium of tongue
      - cervix squamous epithelium
      - keratinized stratified squamous epithelium
      - tongue keratinized epithelium
      - hemipenis keratinized epithelium
      - stratified columnar epithelium
      - ciliated stratified columnar epithelium
      - stratified cuboidal epithelium
      - mixed stratified cuboidal and columnar epithelium
      - atypical epithelium
      - myoepithelium
      - parotid gland myoepithelium
      - sensory epithelium
      - gustatory epithelium
      - gustatory epithelium of tongue
      - gustatory epithelium of palate
      - statoacoustic epithelium
      - parakeratinized epithelium
      - parakeratinized epithelium of tongue
      - orthokeratinized epithelium
      - unilaminar epithelium
      - external ectoderm
      - simple cuboidal epithelium
      - germinal epithelium of ovary
      - glandular cuboidal epithelium
      - kidney collecting duct epithelium
      - simple columnar epithelium
      - epithelium of stomach
      - stomach fundus epithelium
      - pyloric region epithelium
      - stomach squamous epithelium
      - stomach glandular epithelium
      - stomach non-glandular epithelium
      - rumen epithelium
      - intestinal epithelium
      - epithelium of large intestine
      - colonic epithelium
      - caecum epithelium
      - epithelium of rectum
      - epithelium of appendix
      - base of crypt of Lieberkuhn of large intestine
      - wall of crypt of Lieberkuhn of large intestine
      - epithelium of crypt of Lieberkuhn of large intestine
      - epithelium of small intestine
      - epithelium of intestinal villus
      - jejunal epithelium
      - ileal epithelium
      - duodenal epithelium
      - foregut duodenum epithelium
      - midgut duodenum epithelium
      - base of crypt of Lieberkuhn of small intestine
      - wall of crypt of Lieberkuhn of small intestine
      - epithelium of crypt of Lieberkuhn of small intestine
      - Peyer's patch epithelium
      - epithelium of crypt of Lieberkuhn
      - base of crypt of Lieberkuhn
      - wall of crypt of Lieberkuhn
      - intestinal bulb epithelium
      - primitive streak
      - glandular columnar epithelium
      - endometrium glandular epithelium
      - ciliated columnar epithelium
      - ciliated columnar oviduct epithelium
      - pseudostratified ciliated columnar epithelium
      - pseudostratified columnar epithelium
      - pseudostratified smooth columnar epithelium
      - simple squamous epithelium
      - pronephric glomerular capsule epithelium
      - trophectoderm
      - extraembryonic endoderm
      - lateral lingual swelling epithelium
      - future upper lip
      - future lower lip
      - maxillary process ectoderm
      - epithelium of mucosa
      - epithelium of esophagus
      - esophagus squamous epithelium
      - oral epithelium
      - tongue squamous epithelium
      - buccal epithelium
      - tongue papilla epithelium
      - endometrium epithelium
      - basal layer of endometrium
      - outer layer of endometrium
      - epithelial tube
      - pleuroperitoneal canal
      - epithelial tube open at both ends
      - epithelial plexus
      - capillary bed
      - perineural vascular plexus
      - uriniferous tubule
      - renal tubule
      - Malpighian tubule
      - nephron tubule
      - region of nephron tubule
      - loop of Henle
      - renal medulla loop of Henle
      - inner renal medulla loop of Henle
      - outer renal medulla loop of Henle
      - outer medulla inner stripe loop of Henle
      - outer medulla outer stripe loop of Henle
      - descending limb of loop of Henle
      - distal tubule
      - ascending limb of loop of Henle
      - intermediate tubule
      - loop of Henle ascending limb thin segment
      - distal early tubule
      - premacula segment of distal straight tubule
      - renal convoluted tubule
      - renal cortex tubule
      - proximal straight tubule
      - proximal tubule
      - distal straight tubule postmacula segment
      - renal straight tubule
      - thick ascending limb of loop of Henle
      - primitive nephron
      - capillary loop nephron
      - maturing nephron
      - epithelial layer of duct
      - vas deferens epithelium
      - efferent duct epithelium
      - ejaculatory duct epithelium
      - digestive tract epithelium
      - epithelium of midgut
      - epithelium of hindgut
      - epithelium of tongue
      - salivary gland epithelium
      - epithelium of submandibular gland
      - epithelium of parotid gland
      - epithelium of sublingual gland
      - lip epithelium
      - foregut epithelium
      - epithelium of terminal part of digestive tract
      - jaw epithelium
      - epithelium of upper jaw
      - epithelium of lower jaw
      - submandibular gland primordium epithelium
      - oviduct epithelium
      - uterine epithelium
      - epithelium of uterine horn
      - cervix epithelium
      - cervix glandular epithelium
      - endocervical epithelium
      - ectocervical epithelium
      - cervical squamo-columnar junction
      - cervical transformation zone epithelium
      - cuboidal oviduct epithelium
      - respiratory system epithelium
      - gastrointestinal system epithelium
      - kidney epithelium
      - nephron epithelium
      - macula densa
      - distal straight tubule macula densa
      - nephron tubule epithelium
      - proximal tubular epithelium
      - distal tubular epithelium
      - short descending thin limb
      - long descending thin limb
      - dental lamina
      - epithelium of gonad
      - epithelium of male gonad
      - epithelium of female gonad
      - gonad germinal epithelium
      - epithelial fold
      - epithelial bud
      - coelomic epithelium
      - glandular epithelium
      - squamous epithelium
      - Sertoli cell barrier
      - epithelial vesicle
      - somite
      - head somite
      - trunk somite
      - tail somite
      - somite 1
      - somite 5
      - somite 26
      - somite 20
      - somite 30
      - somite 11
      - somite 14
      - somite 17
      - somite 2
      - somite 23
      - somite 27
      - somite 3
      - somite 7
      - somite 12
      - somite 15
      - somite 18
      - somite 21
      - somite 24
      - somite 28
      - somite 4
      - somite 8
      - somite 10
      - somite 13
      - somite 16
      - somite 19
      - somite 22
      - somite 25
      - somite 29
      - somite 6
      - somite 9
      - renal vesicle
      - migrating epithelium
      - ciliated epithelium
      - breast epithelium
      - cuboidal epithelium
      - epithelial sheet
      - polarized epithelium
      - epithelial scleral papilla layer
      - extraembryonic epithelium
      - amnioserosa
      - non-glandular epithelium
      - columnar epithelium
      - stomodeal ectoderm
      - somite boundary epithelium
      - sensory organ epithelium
      - pigment epithelium of eye
      - ear epithelium
      - middle ear epithelium
      - outer ear epithelium
      - pinna surface epithelium
      - developing neuroepithelium
      - proliferating neuroepithelium
      - differentiating neuroepithelium
      - epithelium of biliary system
      - naris epithelium
      - regeneration epithelium of fin/limb
      - insect epithelial furrow
      - insect ventral furrow
      - insect cephalic furrow
      - lamina
      - cell layer
      - blood brain barrier
      - endothelial blood brain barrier
      - glial blood brain barrier
      - sheath of Schwann
      - blood nerve barrier
      - egg cylinder
      - haemolymphatic fluid-testis barrier
      - tapetum
      - periodontium
      - connective tissue
      - perichondrium
      - elastic tissue
      - respiratory system elastic tissue
      - cardiovascular system elastic tissue
      - dense regular elastic tissue
      - fibroelastic connective tissue
      - head connective tissue
      - orbital fat pad
      - bony part of pharyngotympanic tube
      - buccal fat pad
      - dorsal bursa
      - anterior dorsal bursa
      - posterior dorsal bursa
      - temporalis fascia
      - neck connective tissue
      - cervical fascia
      - deep cervical fascia
      - prevertebral cervical fascia
      - respiratory system connective tissue
      - central tendon of diaphragm
      - pharyngeal raphe
      - hip connective tissue
      - shoulder connective tissue
      - infraspinatus tendon
      - interscapular fat pad
      - trunk connective tissue
      - thoracic segment connective tissue
      - cartilage tissue of sternum
      - chest connective tissue
      - xiphoid process bone
      - abdominal segment connective tissue
      - abdomen connective tissue
      - kidney capsule
      - adipose tissue of abdominal region
      - abdominal fat pad
      - fascia of Scarpa
      - renal fat pad
      - visceral abdominal adipose tissue
      - abdominal fascia
      - renal fascia
      - pelvis connective tissue
      - perineal body
      - inguinal fat pad
      - pancreatic fat pad
      - limb connective tissue
      - forelimb connective tissue
      - arm connective tissue
      - elbow connective tissue
      - lower arm connective tissue
      - upper arm connective tissue
      - vinculum tendon of wing
      - hindlimb connective tissue
      - leg connective tissue
      - knee connective tissue
      - infrapatellar fat pad
      - upper leg connective tissue
      - fascia lata
      - femoral fat pad
      - lower leg connective tissue
      - tendon of quadriceps femoris
      - digit connective tissue
      - thoracic cavity connective tissue
      - mediastinal fat pad
      - tail connective tissue
      - tail fat pad
      - fascia of tail
      - back connective tissue
      - skeletal tissue
      - cartilage tissue
      - hyaline cartilage tissue
      - epiphyseal plate
      - articular cartilage of joint
      - non-mineralized hyaline cartilage tissue
      - mineralized hyaline cartilage tissue
      - fibrocartilage
      - annulus fibrosus
      - annulus fibrosus disci intervertebralis
      - white fibrocartilage
      - yellow fibrocartilage
      - growth plate cartilage
      - cellular cartilage
      - zone of epiphyseal plate
      - long bone epiphyseal plate proliferative zone
      - long bone epiphyseal plate hypertrophic zone
      - long bone epiphyseal plate ossification zone
      - paired limb/fin cartilage
      - hypertrophic cartilage zone
      - non-mineralized cartilage tissue
      - elastic cartilage tissue
      - prismatic cartilage
      - mucocartilage tissue
      - secondary cartilage tissue
      - mineralized cartilage tissue
      - bone tissue
      - compact bone tissue
      - compact bone of long bone
      - compact bone of diaphysis
      - lamellar bone
      - trabecular bone tissue
      - endochondral bone tissue
      - intramembranous bone tissue
      - bone tissue of long bone
      - bone tissue of epiphysis
      - bone tissue of distal epiphysis
      - bone tissue of proximal epiphysis
      - osteoid
      - mineralized bone tissue
      - cellular bone tissue
      - acellular bone tissue
      - nacre
      - mineralized skeletal tissue
      - non-mineralized chondroid tissue
      - chondroid tissue
      - skeletal muscle connective tissue
      - regular connective tissue
      - dense regular connective tissue
      - tendon
      - future central tendon
      - tendon of biceps brachii
      - tendon of triceps brachii
      - vinculum of tendon
      - tendon of obturator internus
      - tendon of semitendinosus
      - fascia
      - deep fascia
      - visceral fascia
      - dartos muscle
      - spermatic fascia
      - external spermatic fascia
      - inner chondrogenic layer of perichondrium
      - outer fibrous layer of perichondrium
      - granulation tissue
      - pterygomandibular raphe
      - mylohyoid raphe
      - irregular connective tissue
      - dense irregular connective tissue
      - perineurium
      - epineurium
      - adipose tissue
      - white adipose tissue
      - brown adipose tissue
      - fat pad
      - gonadal fat pad
      - periovarian fat pad
      - uterine fat pad
      - axillary fat pad
      - pararenal fat
      - perirenal fat
      - intramuscular adipose tissue
      - visceral fat
      - pericardial fat
      - paracardial fat
      - fibrous connective tissue
      - fibrocollagenous connective tissue
      - loose connective tissue
      - reticular tissue
      - endoneurium
      - areolar connective tissue
      - mucoid tissue
      - dense connective tissue
      - enthesis
      - fibrous enthesis
      - fibrocartilage enthesis
      - specialized connective tissue
      - ovisac
      - Sharpey's fiber
      - hypochord
      - mesenchyme
      - mesenchyme of hip
      - mesenchyme of shoulder
      - shoulder joint primordium
      - mesenchyme of tongue
      - mesenchyme of sublingual gland
      - gonad mesenchyme
      - mesenchyme of testis
      - mesenchyme of ovary
      - kidney mesenchyme
      - mesenchyme pectoral fin
      - mesenchyme pelvic fin
      - proepicardium
      - septum transversum
      - nephrogenic mesenchyme
      - head mesenchyme
      - mesenchyme of pinna
      - mandibular process mesenchyme
      - pharyngeal arch mesenchymal region
      - 2nd arch mesenchyme
      - 3rd arch mesenchyme
      - 4th arch mesenchyme
      - 6th arch mesenchyme
      - 1st arch mesenchyme
      - 1st arch mandibular mesenchyme
      - 1st arch maxillary mesenchyme
      - 5th arch mesenchyme
      - mesenchyme of middle ear
      - stapedius pre-muscle condensation
      - tensor tympani pre-muscle condensation
      - head paraxial mesoderm
      - facial mesenchyme
      - mesenchyme of upper jaw
      - mesenchyme of parotid
      - branchial mesenchyme
      - trunk mesenchyme
      - sternebral bone pre-cartilage condensation
      - lateral mesenchyme derived from mesoderm
      - trunk paraxial mesoderm
      - manubrium sternum pre-cartilage condensation
      - optic eminence mesenchyme
      - body-wall mesenchyme
      - dense mesenchyme tissue
      - paraxial mesoderm
      - developing mesenchymal condensation
      - sclerotome
      - sclerotome somite 11
      - sclerotome somite 14
      - sclerotome somite 17
      - sclerotome somite 2
      - sclerotome somite 22
      - sclerotome somite 25
      - sclerotome somite 28
      - sclerotome somite 30
      - sclerotome somite 6
      - sclerotome somite 9
      - sclerotome somite 1
      - sclerotome somite 12
      - sclerotome somite 15
      - sclerotome somite 18
      - sclerotome somite 20
      - sclerotome somite 23
      - sclerotome somite 26
      - sclerotome somite 29
      - sclerotome somite 4
      - sclerotome somite 7
      - sclerotome somite 10
      - sclerotome somite 13
      - sclerotome somite 16
      - sclerotome somite 19
      - sclerotome somite 21
      - sclerotome somite 24
      - sclerotome somite 27
      - sclerotome somite 3
      - sclerotome somite 5
      - sclerotome somite 8
      - cartilaginous condensation
      - clavicle cartilage element
      - pre-muscle condensation
      - erector spinae pre-muscle mass
      - extensor pre-muscle mass
      - intercostal pre-muscle mass
      - external intercostal pre-muscle mass
      - internal intercostal pre-muscle mass
      - external oblique pre-muscle mass
      - flexor pre-muscle mass
      - serratus ventralis pre-muscle mass
      - transverospinalis pre-muscle mass
      - subscapularis pre-muscle mass
      - extrinsic tongue pre-muscle mass
      - pre-cartilage condensation
      - clavicle pre-cartilage condensation
      - bone condensation
      - tail bud paraxial mesoderm
      - entire pharyngeal arch associated mesenchyme
      - future falx cerebri
      - loose mesenchyme tissue
      - migrating mesenchyme population
      - associated mesenchyme of foregut-midgut junction
      - mesenchyme of hindgut
      - maxillary process mesenchyme
      - mesenchyme of sublingual gland primordium
      - limb mesenchyme
      - forelimb mesenchyme
      - mesenchyme of elbow
      - mesenchyme of carpal region
      - mesenchyme of forearm
      - upper arm mesenchyme
      - mesenchyme of interdigital region of manus
      - mesenchyme of interdigital region between manual digits 1 and 2
      - mesenchyme of interdigital region between manual digits 2 and 3
      - mesenchyme of interdigital region between manual digits 3 and 4
      - mesenchyme of interdigital region between manual digits 4 and 5
      - hindlimb mesenchyme
      - mesenchyme of knee
      - upper leg mesenchyme
      - lower leg mesenchyme
      - mesenchyme of interdigital region of pes
      - mesenchyme of interdigital region between pedal digits 1 and 2
      - mesenchyme of interdigital region between pedal digits 2 and 3
      - mesenchyme of interdigital region between pedal digits 3 and 4
      - mesenchyme of interdigital region between pedal digits 4 and 5
      - mesenchyme of tarsal region
      - interdigital region mesenchyme
      - mesenchyme of interdigital region between digits 1 and 2
      - mesenchyme of interdigital region between digits 2 and 3
      - mesenchyme of interdigital region between digits 3 and 4
      - mesenchyme of interdigital region between digits 4 and 5
      - digit mesenchyme
      - pancreas mesenchyme
      - urogenital sinus mesenchyme
      - future dermis
      - scleral mesenchyme
      - carapacial ridge mesenchyme
      - jaw mesenchyme
      - mesenchyme of lower jaw
      - mesenchyme of submandibular gland
      - mesenchyme of submandibular gland primordium
      - ventral mesenchyme
      - mesenchyme dorsal fin
      - mesenchyme median fin fold
      - neural tissue
      - embryonic tissue
      - chordo neural hinge
      - kidney field
      - pleuroperitoneal membrane
      - head fold of embryonic disc
      - tail fold of embryonic disc
      - germ layer / neural crest
      - germ layer
      - ectoderm
      - ectoderm of footplate
      - optic eminence ectoderm
      - 2nd arch ectoderm
      - 3rd arch ectoderm
      - 4th arch ectoderm
      - ectoderm of buccopharyngeal membrane
      - endoderm
      - 2nd arch endoderm
      - 3rd arch endoderm
      - 4th arch endoderm
      - endoderm of buccopharyngeal membrane
      - endoderm of foregut-midgut junction
      - mesoderm
      - ventral mesoderm
      - ventral lateral mesoderm
      - pharyngeal mesoderm
      - insect trunk mesoderm
      - mesectoderm
      - anterior axial hypoblast
      - external yolk syncytial layer
      - internal yolk syncytial layer
      - organizer inducing center
      - noninvoluting endocytic marginal cell cluster
      - axial hypoblast
      - dorsal axial hypoblast
      - insect mesoderm anlage
      - extraembryonic tissue
      - umbilicus
      - matrix-based tissue
      - anlage
      - insect proneural cluster
      - insect ectoderm anlage
      - erectile tissue
      - corpus cavernosum
      - spongiose tissue of corpus cavernosum maxillaris
      - trabecular network of bone
      - periurethral tissue
      - gill filament
      - nephron progenitor
      - superficial fascia
      - retromolar triangle
      - core of melon organ
      - heterogeneous tissue
      - lymphomyeloid tissue
      - lymphoid tissue
      - lymphoid follicle
      - secondary nodular lymphoid tissue
      - lymph node secondary follicle
      - Peyer's patch follicle
      - primary nodular lymphoid tissue
      - lymph node primary follicle
      - primary lymphoid nodule of tonsil
      - lymph node follicle
      - germinal center
      - Peyer's patch germinal center
      - lymph node germinal center
      - tonsil germinal center
      - secondary follicle corona
      - lymph node germinal center mantle zone
      - epithelium-associated lymphoid tissue
      - mucosa-associated lymphoid tissue
      - gut-associated lymphoid tissue
      - Peyer's patch
      - large intestine Peyer's patch
      - small intestine Peyer's patch
      - tonsillar ring
      - tonsil
      - tubal tonsil
      - lingual tonsil
      - cecal tonsil
      - appendix lymphoid tissue
      - lymph node germinal center light zone
      - lymph node germinal center dark zone
      - lymph node follicle marginal zone
      - lymph node paracortex
      - lymph node interfollicular cortex
      - lymphoid nodule
      - meningeal myeloid tissue
      - lateral line primordium
      - anterior lateral line primordium
      - middle lateral line primordium
      - lower oral valve
      - upper oral valve
      - anterior swim bladder bud
      - intervillus pockets
      - pars acromialis
      - pars glenoidalis of scapula
      - equatorial belt
      - inner fin tissue
      - outer fin tissue
      - cloacal papilla
      - ramule palatonasalis
      - mineralized extracellular matrix
      - mineralized avascular GAG-rich matrix
      - avascular GAG-rich matrix
      - non-mineralized avascular GAG-rich matrix
      - tooth root apical papilla
      - multi-tissue structure
      - regional part of nervous system
      - ganglion part of peripheral nervous system
      - compound organ component
      - medulla of organ
      - renal medulla
      - medulla of lymph node
      - ovarian medulla
      - imaginal disc
      - pericardium
      - roof of mouth
      - primitive palate
      - fluid-based anatomical entity
      - Aristotle's lantern
      - pair of dorsal aortae
      - stomochord
      - mesorchium
      - coelom
      - embryonic cloacal fold
      - anal fold
      - internal anal region
      - external anal region
      - phonic lip
      - monkey lips dorsal bursa complex
      - udder
      - dulla
      - hump
      - allantois of embryonic urinary system
      - common tendinous ring
      - antihelix
      - antitragus
      - entire extraembryonic component
      - dorsal fin fold
      - ventral fin fold
      - intestinal bulb
      - anterior chamber swim bladder
      - posterior chamber swim bladder
      - sensory canal
      - trunk sensory canal
      - post-otic sensory canal
      - otic sensory canal
      - supratemporal sensory canal
      - supraorbital sensory canal
      - infraorbital sensory canal
      - preoperculo-mandibular sensory canal
      - preopercular sensory canal
      - mandibular sensory canal
      - sensory canal tubule
      - parietal branch of the supraorbital canal
      - ethmoid commissure
      - odontode
      - type 2 odontode
      - pseudotympanum
      - maxillary canal
      - prootic bulla
      - cotylephore
      - caudal rod
      - caudal appendage
      - immature gonad
      - Bidder's organ
      - rostral tubule
      - arthropod sternum
      - somatic motor system
      - anatomical conduit
      - tube
      - oviduct
      - digestive tract
      - excretory tube
      - collecting duct of renal tubule
      - outer medullary collecting duct
      - inner medullary collecting duct
      - papillary duct
      - long descending thin limb bend
      - prebend segment of loop of Henle
      - nephridium
      - protonephridium
      - metanephridium
      - vitelline duct
      - hypophyseal tube
      - endostylar duct
      - vessel
      - lymphatic vessel
      - facial lymphatic vessel
      - pectoral lymphatic vessel
      - jugular lymphatic vessel
      - respiratory system lymphatic vessel
      - lymphatic capillary
      - lacteal
      - lymphatic capillary of appendix
      - lymphatic capillary of colon
      - lymphatic capillary of anorectum
      - appendage lymph vessel
      - pectoral appendage lymph vessel
      - pelvic appendage lymph vessel
      - caudal fin lymph vessel
      - afferent lymphatic vessel
      - efferent lymphatic vessel
      - lymph sac of lymph heart
      - subcutaneous lymph sac
      - intrapleuroperitoneal lymph sac
      - superficial lymphatic vessel
      - deep lymphatic vessel
      - small intestine lymphatic vessel
      - lymphatic vessel of appendix
      - lymphatic vessel of colon
      - right lymphatic duct
      - endometrial lymphatic vessel
      - microcirculatory vessel
      - orifice
      - naris
      - internal naris
      - posterior nasal aperture
      - oral opening
      - buccal funnel
      - gastropod genital pore
      - urethral opening
      - femoral pore
      - cloacal vent
      - cervical os
      - internal cervical os
      - external cervical os
      - esophageal hiatus
      - umbilical ring
      - orifice of skull
      - oval window
      - round window of inner ear
      - vertebral foramen
      - vertebral foramen of atlas
      - cervical vertebral foramen
      - lumbar vertebral foramen
      - sacral foramen
      - thoracic vertebral foramen
      - inguinal canal
      - female inguinal canal
      - male inguinal canal
      - bone foramen
      - transverse foramen
      - transverse foramen of atlas
      - transverse foramen of axis
      - alveolar canal
      - nutrient foramen conduit
      - foramen of skull
      - foramen ovale of skull
      - foramen magnum
      - carotid canal
      - hypoglossal canal
      - incisive foramen
      - foramen for glossopharyngeal nerve
      - jugular foramen
      - facial nerve canal
      - petrosal foramen
      - foramen lacerum
      - anterior ethmoidal foramen
      - posterior ethmoidal foramen
      - tympanic canal
      - vestibular canal
      - lateral occipital foramen
      - haversian canal
      - atlantal spinal nerve foramen
      - suborbital foramen
      - suprameatal foramen
      - scapular foramen
      - coracoid foramen
      - internal rim of coracoid foramen
      - external rim of the coracoid foramen
      - trigeminofacial foramen
      - auditory foramen
      - superficial ophthalmic nerve foramen
      - ceratohyal foramen
      - olfactory nerve foramen
      - facial foramen
      - trigeminal foramen
      - aortic canal
      - occipital artery foramen
      - spiracular canal
      - orbital foramen
      - auditory fenestra
      - metapterygoid-quadrate fenestra
      - hypophyseal fenestra
      - hyomandibular foramen
      - supraglenoid foramen
      - suprascapula foramen
      - foramen C
      - vertebral canal
      - lymph node medullary sinus
      - anterior intestinal portal
      - ruminant esophageal groove
      - nasal air sac
      - femoral canal
      - carpal tunnel
      - Alcock's canal
      - intracranial diverticulum of swimbladder
      - nerve foramen
      - lymph node paracortical sinus
      - kidney outer medulla inner stripe
      - kidney outer medulla outer stripe
      - reproductive structure
      - spermatic cord
      - air sac
      - anterior air sac
      - interclavicular air sac
      - cervical air sac
      - anterior thoracic air sac
      - posterior air sac
      - posterior thoracic air sac
      - abdominal air sac
      - clavicular air sac
      - organ system subdivision
      - peripheral nervous system
      - parasympathetic nervous system
      - somatic nervous system
      - sympathetic nervous system
      - subdivision of skeletal system
      - vertebral column
      - bony pelvis
      - basicranium
      - cranium
      - skull
      - cartilaginous neurocranium
      - subdivision of vertebral column
      - cervical region of vertebral column
      - thoracic region of vertebral column
      - lumbar region of vertebral column
      - sacral region of vertebral column
      - caudal region of vertebral column
      - trunk region of vertebral column
      - caudal-sacral region of vertebral column
      - synarcual region of vertebral column
      - turtle shell
      - carapace
      - plastron
      - hyoid apparatus
      - hyoid apparatus opening
      - sinus nervi hypoglossi
      - foramen nervi hypoglossi
      - cranial skeletal system
      - larval chondrocranium
      - axial skeletal system
      - postcranial axial skeletal system
      - primary subdivision of skull
      - neurocranium
      - primary subdivision of cranial skeletal system
      - chondrocranium
      - dermatocranium
      - fronto-ethmoidal shield
      - postrostral bone
      - median postrostral bone
      - splanchnocranium
      - mastoid process of temporal bone
      - appendicular skeletal system
      - plastron-carapace bridge
      - anterior plastron-carapace bridge
      - posterior plastron-carapace bridge
      - palatal part of dermatocranium
      - rib skeletal system
      - longitudinal arch of pes
      - lagenar capsule
      - lateral commissure
      - musculature of body
      - somatic musculature
      - enteric musculature
      - insect adult muscle system
      - musculature
      - musculature of body wall
      - musculature of neck
      - m. intertransversarius capitus superior
      - m. intertransversarius capitis inferior
      - musculature of pharynx
      - set of muscles of vertebral column
      - musculature of back
      - dorsal fin musculature
      - musculature of hip
      - musculature of shoulder
      - musculature of trunk
      - abdomen musculature
      - musculature of thorax
      - musculature of pelvic girdle
      - musculature of perineum
      - appendage musculature
      - musculature of limb
      - musculature of upper limb
      - musculature of arm
      - musculature of forelimb zeugopod
      - musculature of forelimb stylopod
      - musculature of manus
      - musculature of lower limb
      - musculature of leg
      - musculature of hindlimb stylopod
      - musculature of hindlimb zeugopod
      - musculature of pes
      - pectoral appendage musculature
      - pelvic appendage musculature
      - caudal fin musculature
      - anal fin musculature
      - craniocervical region musculature
      - skeletal musculature of head
      - musculature of face
      - venom gland musculature
      - axial musculature
      - musculature of pelvic complex
      - musculature of pectoral complex
      - musculature of pectoral girdle
      - skeletal system
      - lower urinary tract
      - integument
      - biliary system
      - autonomic nervous system
      - hepatobiliary system
      - lymphatic part of lymphoid system
      - non-lymphatic part of lymphoid system
      - visual processing part of nervous system
      - aortic system
      - subdivision of skeleton
      - postcranial axial skeleton
      - appendicular skeleton
      - suspensorium
      - thoracic rib cage
      - vault of skull
      - hyoid arch skeleton
      - post-hyoid pharyngeal arch skeleton
      - axial skeleton plus cranial skeleton
      - endoskeleton
      - dermal skeleton
      - limb skeleton subdivision
      - girdle skeleton
      - pectoral girdle skeleton
      - arciferal girdle
      - firmisternal girdle
      - pseudofirmisternal girdle
      - pseudoarciferal girdle
      - dorsal hyoid arch skeleton
      - ventral hyoid arch skeleton
      - fin skeleton
      - median fin skeleton
      - anal fin skeleton
      - caudal fin skeleton
      - dorsal fin skeleton
      - adipose fin skeleton
      - skeleton of pectoral complex
      - skeleton of pelvic complex
      - velar skeleton
      - thoracic skeleton
      - stem of Y-shaped fibrocartilage skeleton of ventral pouch
      - branch of Y-shaped fibrocartilage skeleton of ventral pouch
      - pharyngeal arch 3 skeleton
      - pharyngeal arch 7 skeleton
      - pharyngeal arch 6 skeleton
      - pharyngeal arch 4 skeleton
      - pharyngeal arch 5 skeleton
      - bony shelf above orbit
      - bony plate series
      - braincase and auditory apparatus
      - braincase and otic capsule skeleton
      - integumentary skeleton
      - scapular complex
      - mesomere (fin)
      - mesomere 5
      - mesomere 4
      - proximal mesomere
      - postparietal shield
      - fin radial skeleton
      - anal fin radial skeleton
      - upper urinary tract
      - baleen feeding system
      - renin-angiotensin system
      - neural system
      - motor system
      - proprioceptive system
      - sensorimotor system
      - special sense organ system
      - accessory optic system
      - sallet sensory system
      - insect region of integument
      - insect head capsule
      - insect sclerite
      - insect tergite
      - insect sternite
      - insect tergum
      - insect wing margin
      - insect segmental subdivision of integument
      - insect adult external mesothorax
      - insect integumentary specialisation
      - insect spiracle
      - insect tagmatic subdivision of integument
      - insect adult external head
      - insect adult external thorax
      - insect adult external abdomen
      - insect segmental subdivision of organ system
      - air capillary of parabronchus
      - angle of oral opening
      - multi organ part structure
      - scalp
      - middle ear
      - otic region
      - sphenoid region
      - olfactory region
      - periorbital region
      - articulation
      - skeletal joint
      - joint of rib
      - sternocostal joint
      - interchondral joint
      - costovertebral joint
      - costotransverse joint
      - costochondral joint
      - synovial joint
      - atlanto-occipital joint
      - vertebral arch joint
      - cervical vertebral arch joint
      - synovial joint of pelvic girdle
      - sacro-iliac joint
      - hip joint
      - synovial joint of pectoral girdle
      - sternoclavicular joint
      - glenohumeral joint
      - acromioclavicular joint
      - laryngeal joint
      - cricothyroid joint
      - cricoarytenoid joint
      - synovial limb joint
      - knee joint
      - stifle joint
      - pes joint
      - metatarsophalangeal joint
      - metatarsophalangeal joint of pedal digit 1
      - metatarsophalangeal joint of pedal digit 2
      - metatarsophalangeal joint of pedal digit 3
      - metatarsophalangeal joint of pedal digit 4
      - metatarsophalangeal joint of pedal digit 5
      - interphalangeal joint of pes
      - interphalangeal joint of pedal digit 1
      - interphalangeal joint of pedal digit 2
      - distal interphalangeal joint of pedal digit 2
      - interphalangeal joint of pedal digit 3
      - distal interphalangeal joint of pedal digit 3
      - interphalangeal joint of pedal digit 4
      - distal interphalangeal joint of pedal digit 4
      - interphalangeal joint of pedal digit 5
      - distal interphalangeal joint of pedal digit 5
      - intertarsal joint
      - subtalar joint
      - talocalcaneonavicular joint
      - tarsometatarsal joint
      - intermetatarsal joint
      - transverse tarsal joint
      - mesotarsal joint
      - calcaneocuboid joint
      - ankle joint
      - crurotarsal joint
      - tibiotalar joint
      - intertarsal-type crurotarsal joint
      - manus joint
      - wrist joint
      - radio-carpal joint
      - metacarpophalangeal joint
      - metacarpophalangeal joint of manual digit 1
      - metacarpophalangeal joint of manual digit 2
      - metacarpophalangeal joint of manual digit 3
      - metacarpophalangeal joint of manual digit 4
      - metacarpophalangeal joint of manual digit 5
      - interphalangeal joint of manus
      - interphalangeal joint of manual digit 1
      - interphalangeal joint of manual digit 2
      - distal interphalangeal joint of manual digit 2
      - interphalangeal joint of manual digit 3
      - distal interphalangeal joint of manual digit 3
      - interphalangeal joint of manual digit 4
      - distal interphalangeal joint of manual digit 4
      - interphalangeal joint of manual digit 5
      - distal interphalangeal joint of manural digit 5
      - proximal interphalangeal joint of little finger
      - carpometacarpal joint
      - carpometacarpal joint of digit 1
      - intermetacarpal joint
      - intercarpal joint
      - midcarpal joint
      - pisiform joint
      - pisotriquetral joint
      - elbow joint
      - radio-ulnar joint
      - distal radio-ulnar joint
      - proximal radio-ulnar joint
      - interphalangeal joint
      - proximal interphalangeal joint
      - distal interphalangeal joint
      - distal interphalangeal joint of digit 3
      - distal interphalangeal joint of digit 2
      - distal interphalangeal joint of digit 4
      - distal interphalangeal joint of digit 5
      - femorotibial joint
      - metacarpal/tarsal-phalangeal joint
      - humeroulnar joint
      - patellofemoral joint
      - joint connecting upper and lower jaws
      - temporomandibular joint
      - quadrate-articular joint
      - condylar joint
      - exoccipital-atlas joint
      - joint of auditory ossicle
      - incudostapedial joint
      - incudomallear joint
      - limb joint
      - forelimb joint
      - humeroradial joint
      - hindlimb joint
      - tibiofibular joint
      - inferior tibiofibular joint
      - superior tibiofibular joint
      - autopod joint
      - atlanto-axial joint
      - joint of girdle
      - inter-coracoid joint
      - inter-clavicle joint
      - nonsynovial joint
      - fibrous joint
      - syndesmosis
      - synchondrosis
      - cranial synchondrosis
      - spheno-occipital synchondrosis
      - symphysis
      - intervertebral joint
      - sacrococcygeal symphysis
      - xenarthrale
      - mandibular symphysis
      - xiphisternal joint
      - manubriosternal joint
      - craniofacial suture
      - cranial suture
      - fontanelle
      - anterior fontanel
      - posterior fontanelle
      - sphenoidal fontanelle
      - anterior cranial fontanel
      - posterior cranial fontanel
      - lateral fontanel of frontal
      - coronal suture
      - frontal suture
      - lambdoid suture
      - sagittal suture
      - squamoparietal suture
      - cartilaginous joint suture
      - parietomastoid suture
      - sphenofrontal suture
      - sphenoparietal suture
      - sphenozygomatic suture
      - occipitomastoid suture
      - nasomaxillary suture
      - actinopterygian frontal-parietal joint
      - intermaxillary suture
      - frontomaxillary suture
      - zygomaticomaxillary suture
      - ethmoidomaxillary suture
      - sphenomaxillary suture
      - lacrimomaxillary suture
      - maxillary-premaxillary suture
      - frontonasal suture
      - facial suture
      - nasal suture
      - internasal suture
      - sphenovomerine suture
      - intersphenoid suture
      - inter-parietal joint
      - suture
      - palatoethmoidal suture
      - cartilaginous joint
      - synostosis
      - epiphyseal line
      - hinge joint
      - synarthrosis
      - amphiarthrosis
      - saddle joint
      - intercuneiform joint
      - lateral-intermediate intercuneiform joint
      - medial-intermediate intercuneiform joint
      - shoulder joint
      - autopalatine-lateral ethmoid joint
      - mesethmoid-nasal joint
      - mesethmoid-frontal joint
      - mesethmoid-lateral ethmoid joint
      - mesethmoid-vomer joint
      - opercle-interopercle joint
      - frontal-pterotic joint
      - dentary-anguloarticular joint
      - autopalatine-vomer joint
      - orbitosphenoid-prootic joint
      - quadrate-hyomandibula joint
      - quadrate-metapterygoid joint
      - pterosphenoid-orbitosphenoid joint
      - parasphenoid-basioccipital joint
      - interhyal-epihyal joint
      - epihyal-ceratohyal joint
      - ceratohyal-dorsal hypohyal joint
      - ceratohyal-ventral hypohyal joint
      - dorsal hypohyal-ventral hypohyal joint
      - inter-ventral hypohyal joint
      - dorsal hypohyal-urohyal joint
      - ventral hypohyal-urohyal joint
      - epihyal-branchiostegal ray joint
      - ceratohyal-branchiostegal ray joint
      - epibranchial 4-upper pharyngeal toothplate joint
      - epibranchial 3-pharyngobranchial 3 joint
      - epibranchial 3-pharyngobranchial 4 joint
      - inter-hypobranchial 3 joint
      - inter-frontal joint
      - inter-basipterygium joint
      - vertebra 4-vertebra 5 joint
      - orbitosphenoid-lateral ethmoid joint
      - autopalatine-maxillary joint
      - hyomandibular-otic region joint
      - inter-premaxillary joint
      - mesethmoid-premaxillary joint
      - premaxillary-maxillary joint
      - hyomandibula-metapterygoid joint
      - lateral ethmoid-frontal joint
      - prootic-pterosphenoid joint
      - prootic-exoccipital joint
      - basioccipital-exoccipital joint
      - vertebra 5-vertebra 6 joint
      - vertebra 6 - vertebra 7 joint
      - posttemporal-parietal joint
      - parasphenoid-pterosphenoid joint
      - preopercle-opercle joint
      - supraoccipital-parietal joint
      - hyomandibula-opercle joint
      - preopercle horizontal limb-symplectic joint
      - preopercle vertical limb-hyomandibula joint
      - dermal intracranial joint
      - dermal neck joint
      - endoskeletal cranial joint
      - accessory articulation
      - occipital region
      - pharyngeal arch system
      - ethmoid region
      - palatoglossal arch
      - epicranium
      - neurovascular bundle
      - ocular adnexa
      - cell cluster
      - glandular acinus
      - acinus of exocrine gland
      - acinus of salivary gland
      - acinus of parotid gland
      - serous acinus
      - mucous acinus
      - submucosal gland acinus
      - external soft tissue zone
      - breast
      - male breast
      - throat
      - cheek
      - lobule of pinna
      - marsupium
      - axilla
      - inter limb-segment region
      - interdigital region
      - interdigital region between manual digits
      - interdigital region between manual digits 1 and 2
      - interdigital region between manual digits 2 and 3
      - interdigital region between manual digits 3 and 4
      - interdigital region between manual digits 4 and 5
      - webbed interdigital region between manual digits
      - interdigital region between pedal digits
      - interdigital region between pedal digits 1 and 2
      - interdigital region between pedal digits 2 and 3
      - interdigital region between pedal digits 3 and 4
      - interdigital region between pedal digits 4 and 5
      - webbed interdigital region between pedal digits
      - webbed interdigital region
      - interdigital region between digits 1 and 2
      - interdigital region between digits 2 and 3
      - interdigital region between digits 3 and 4
      - interdigital region between digits 4 and 5
      - dactylopatagium
      - dactylopatagium brevis
      - dactylopatagium minus
      - dactylopatagium medius
      - dactylopatagium major
      - plagiopatagium
      - propatagium
      - uropropatagium
      - prepatagium
      - buttock
      - thenar eminence
      - hypothenar eminence
      - withers
      - ventral side of post-anal tail
      - dorsal side of post-anal tail
      - labial commissure
      - tip of snout
      - tip of external ear
      - isthmus
      - external ear margin
      - insect dorsal ectoderm
      - insect anterior ectoderm
      - insect mouthpart
      - insect basiproboscis
      - glomus coccygeum
      - structure with developmental contribution from neural crest
      - vomerine dentition
      - incisor region of dentition
      - cell condensation
      - baleen plate bristle
      - wheel papilla
      - sex-specific anatomical structure
      - hermaphrodite anatomical structure
      - male anatomical structure
      - female anatomical structure
      - cell group
      - lateral structure
      - zygapophysis
      - prezygapophysis
      - prezygapophysis of lumbar vertebra
      - prezygapophysis of sacral vertebra
      - prezygapophysis of cervical vertebra
      - prezygapophysis of thoracic vertebra
      - postzygapophysis
      - postzygapophysis of lumbar vertebra
      - postzygapophysis of cervical vertebra
      - postzygapophysis of thoracic vertebra
      - transverse process of atlas
      - parapophysis 1
      - skeletal musculature
      - morphological feature
      - anatomical projection
      - tubercle
      - tubercle of rib
      - cervical vertebra 1 anterior tubercle
      - anterior tubercle of transverse process of cervical vertebra
      - posterior tubercle of transverse process of cervical vertebra
      - pharyngeal tubercle
      - lateral tubercle of talus
      - supraglenoid tubercle
      - pectoral flipper tubercle
      - ischial tuberosity
      - subarticular tubercles
      - supernumerary tubercles
      - inner metatarsal tubercle
      - outer metatarsal tubercle
      - inner metacarpal tubercle
      - outer metacarpal tubercle
      - cranial appendage
      - horn
      - antler
      - ossicone
      - rumen papilla
      - cartilaginous projection
      - rattle
      - zygomatic process of maxilla
      - horn of hemipenis
      - pseudoclasper
      - keel
      - suborbital shelf
      - anterior dentation of dorsal fin spine 2
      - hyale
      - posterolateral process
      - posteromedial process
      - triangular process
      - ramus posterior profundus of V3
      - ramus hyomandibularis
      - ramus recurrens
      - skeletal element projection
      - xiphoid process
      - bony projection
      - acromion
      - cervical vertebra 1 arcus anterior
      - odontoid process of cervical vertebra 2
      - apophysis
      - pharyngeal apophysis
      - bony core of horn
      - auditory bulla
      - basihyal lingual process
      - sigmoid process of tympanic bone
      - serrated projection of ctenactinium
      - bone spine
      - metacromion
      - spina externa
      - processus ventralis of thoracic vertebra
      - processus ventrolateralis of thoracic vertebra
      - lateral ethmoid palatine process
      - ascending limb of ceratobranchial 5 bone
      - anterior limb of ceratobranchial 5 bone
      - anterior limb of parapophysis 4
      - basitrabecular process
      - anterior process of the palatoquadrate
      - post-glenoid process
      - supraglenoid buttress
      - ascending process of clavicle
      - zygosphene
      - nuchal crest
      - process of vertebra
      - neural spine
      - epural
      - epural 2
      - epural 3
      - epural 1
      - neural spine 4
      - neural spine 1
      - neural spine 2
      - neural spine 3
      - X bone
      - Y bone
      - neural spine 5
      - neural spine 6
      - neural spine 7
      - transverse process of vertebra
      - parapophysis
      - parapophysis 2
      - parapophysis 4
      - parapophysis 6
      - parapophysis 5
      - parapophysis 3
      - transverse process of cervical vertebra
      - transverse process of lumbar vertebra
      - transverse process of caudal vertebra
      - pedicle of vertebra
      - diapophysis of neural arch
      - supratemporal process
      - transverse process of neural arch 3
      - hypurapophysis
      - epibranchial bone uncinate process
      - epibranchial 2 bone uncinate process
      - epibranchial 1 bone uncinate process
      - epibranchial 3 bone uncinate process
      - epibranchial 4 bone uncinate process
      - intercalarium ascending process
      - pharyngobranchial 2 bone uncinate process
      - sphenotic spine
      - lateral ethmoid wing
      - mesethmoid cornu
      - cornu mesial process
      - mesethmoid ventral diverging lamella
      - lateral mesethmoid wing
      - supraoccipital crest
      - pharyngobranchial 3 bone uncinate process
      - pharyngobranchial 4 bone uncinate process
      - neural lamina
      - ascending limb of ceratobranchial 5 cartilage
      - anterior limb of ceratobranchial 5 cartilage
      - ventral keel of coracoid
      - posterior limb of parapophysis 4
      - spina occipitalis
      - pseudourostyle
      - anterior process of hyoid apparatus
      - anterolateral process of hyoid plate
      - haemal arch lamina
      - nucal keel
      - parasagittal processes
      - crista longitudinalis scapula
      - retroarticular process of the palatoquadrate
      - acrocoracoid process
      - infraspinous process
      - scapular process
      - sternal trabecula
      - dorsal clavicular process
      - anterodorsal crest
      - paroccipital process
      - cranial temporal crest
      - intermediate spine
      - prepectoral spine
      - prepelvic fin spine
      - crest
      - sagittal crest
      - thagomizer
      - material entity in digestive tract
      - anatomical border
      - border of scapula
      - lateral border of scapula
      - medial border of scapula
      - attachment site
      - nuchal line attachment site
      - highest nuchal line attachment site
      - superior nuchal line attachment site
      - median nuchal line attachment site
      - inferior nuchal line attachment site
      - muscle scar
      - temple
      - retroauricular region
      - calf
      - front hindlimb zeugopod
      - trophoblast island
      - organism substance
      - follicular fluid
      - amniotic fluid
      - excreta
      - urine
      - feces
      - meconium
      - excreted gas
      - gas excreted from digestive tract
      - oronasal secretion
      - pus
      - secretion of exocrine gland
      - pancreatic juice
      - mucus
      - cervical mucus
      - skin mucus
      - mucus body coating
      - phlegm
      - respiratory system mucus
      - nasal mucus
      - mucus cocoon
      - sweat
      - cerumen
      - scrotal sweat
      - sweat of palm
      - sweat of axilla
      - secretion of lacrimal gland
      - saliva
      - sebum
      - meibum
      - bile
      - gastric juice
      - intestine secretion
      - smegma
      - esophagus secretion
      - pancreas secretion
      - secretion of endocrine pancreas
      - secretion of exocrine pancreas
      - seminal fluid
      - bulbourethral gland secretion
      - prostate gland secretion
      - seminal vesicle fluid
      - ampullary gland secretion
      - mammary gland fluid/secretion
      - milk
      - colostrum
      - vernix caseosa
      - venom
      - mollusc venom
      - cnidarian venom
      - snake venom
      - elapid venom
      - hydrophid venom
      - viper venom
      - secretion of serous gland
      - synovial fluid
      - peritoneal fluid
      - ascitic fluid
      - pericardial fluid
      - endoneurial fluid
      - preen oil
      - anal sac gland secretion
      - secretion of Harderian gland
      - secretion of nictitans gland
      - tear film
      - castoreum
      - chyle
      - interstitial fluid
      - hemolymph
      - semen
      - seminal clot
      - mating plug
      - ocular refractive media
      - aqueous humor of eyeball
      - vitreous humor
      - bodily fluid
      - haemolymphatic fluid
      - blood
      - arterial blood
      - umbilical cord blood
      - venous blood
      - capillary blood
      - placental blood
      - blood plasma
      - blood serum
      - lymph
      - chyme
      - transudate
      - cerebrospinal fluid
      - otolymph
      - perilymph
      - endolymph
      - secretion of serous membrane
      - pleural fluid
      - pleural effusion
      - notochordal fluid
      - epithelial lining fluid
      - coelomic fluid
      - vaginal fluid
      - menstrual fluid
      - skin secretion
      - respiratory system fluid/secretion
      - sputum
      - pulmonary surfactant
      - digestive system secreted substance
      - exudate
      - albumen
      - spermaceti
      - ambergris
      - blood clot
      - ruminal fluid
      - ingested food
      - bolus of food
      - silk
      - mesangial matrix
      - colloid of thyroid follicle
      - secretion of crop
      - dental plaque
      - subgingival dental plaque
      - supragingival dental plaque
      - reproductive gland secretion
      - male reproductive gland secretion
      - female reproductive gland secretion
      - ovarian fluid
      - bodily gas
      - gas in respiratory system
      - air in respiratory system
      - carbon dioxide in respiratory system
      - regurgitated substance
      - vomit
      - cud
      - honey
      - regurgitated pellet
      - developing anatomical structure
      - extraembryonic structure
      - decidua basalis
      - umbilical cord
      - decidua
      - chorion syncytiotrophoblast
      - chorionic ectoderm
      - extraembryonic ectoderm
      - decidua capsularis
      - amniotic fold
      - mural trophectoderm
      - polar trophectoderm
      - decidua parietalis
      - chorionic villus
      - primary chorionic villus
      - secondary chorionic villus
      - tertiary chorionic villus
      - chorionic mesenchymal villus
      - chorionic stem villus
      - chorionic anchoring villus
      - chorionic immature intermediate villus
      - chorionic floating villus
      - chorionic terminal villus
      - chorionic mature intermediate villus
      - connecting stalk
      - parietal endoderm
      - chorion frondosum
      - placental cotyledon
      - yolk sac blood island
      - placental caruncle
      - fasciculated network of fibrils
      - primordium
      - heart primordium
      - pancreas primordium
      - ectodermal placode
      - cranial placode
      - lens placode
      - adenohypophyseal placode
      - neurogenic placode
      - olfactory placode
      - dorsolateral placode
      - otic placode
      - trigeminal placode complex
      - lateral line placode
      - posterior lateral line placode
      - anterior lateral line placode
      - middle lateral line placode
      - epibranchial placode
      - geniculate placode
      - petrosal placode
      - nodosal placode
      - vagal placode 1
      - vagal placode 2
      - vagal placode 3
      - vagal placode 4
      - profundal placode
      - maxillomandibular placode
      - non-neurogenic ectodermal placode
      - tooth placode
      - sebaceous gland placode
      - sweat gland placode
      - mammary placode
      - skin appendage placode
      - hair follicle placode
      - feather follicle placode
      - gonad primordium
      - lung primordium
      - rhombic lip
      - elbow joint primordium
      - ethmoid bone primordium
      - tetrapod frontal bone primordium
      - gallbladder primordium
      - hip joint primordium
      - interparietal bone primordium
      - knee joint primordium
      - tetrapod parietal bone primordium
      - interrenal primordium
      - thyroid diverticulum
      - parotid gland primordium
      - pharyngeal gill precursor
      - respiratory primordium
      - Hatschek's diverticulum
      - Hatschek's left diverticulum
      - Hatschek's right diverticulum
      - pancreas dorsal primordium
      - pancreas ventral primordium
      - squamous part of temporal bone primordium
      - clavicle bone primordium
      - temporomandibular joint primordium
      - stomach primordium
      - primordial vasculature
      - salivary gland primordium
      - sublingual gland primordium
      - submandibular gland primordium
      - angioblastic cord
      - anterior crista primordium
      - insect embryonic optic lobe primordium
      - insect imaginal disc primordium
      - insect labial disc primordium
      - insect eye-antennal disc primordium
      - insect dorsal thoracic disc primordium
      - insect dorsal mesothoracic disc primordium
      - insect dorsal metathoracic disc primordium
      - insect ventral thoracic disc primordium
      - insect ventral prothoracic disc primordium
      - insect genital disc primordium
      - insect male genital disc primordium
      - insect female genital disc primordium
      - insect circulatory system primordium
      - insect lymph gland primordium
      - insect adult clypeo-labral primordium
      - insect abdominal histoblast primordium
      - embryonic structure
      - inner cell mass
      - trophoblast
      - hypoblast (generic)
      - anterior definitive endoderm
      - inner cell mass derived hypoblast
      - bilaminar disc
      - blastopore
      - primitive urogenital sinus
      - cytotrophoblast
      - blastocyst
      - syncytiotrophoblast
      - extravillous trophoblast
      - atrioventricular canal
      - left atrioventricular canal
      - right atrioventricular canal
      - epiblast (generic)
      - inner cell mass derived epiblast
      - blastodisc derived epiblast
      - post-anal tail bud
      - germ ring
      - chordal neural plate
      - prechordal plate
      - intermediate mesoderm
      - axial mesoderm
      - posterior neural tube
      - anterior neural tube
      - intraembryonic coelom
      - ganglionic eminence
      - medial ganglionic eminence
      - lateral ganglionic eminence
      - caudal ganglionic eminence
      - primitive groove
      - cardiogenic plate
      - apical ectodermal ridge
      - pectoral appendage apical ectodermal ridge
      - pelvic appendage apical ectodermal ridge
      - footplate apical ectodermal ridge
      - handplate apical ectodermal ridge
      - apical ectodermal ridge dorsal fin
      - apical ectodermal ridge median fin fold
      - apical ectodermal ridge pelvic fin
      - ectoplacental cone
      - bulbus cordis
      - archenteron
      - blastodisc
      - blastoderm
      - somatic layer of lateral plate mesoderm
      - splanchnic layer of lateral plate mesoderm
      - splanchnopleure
      - somatopleure
      - nephrogenic cord
      - marginal zone of embryo
      - dorsal marginal zone
      - dorso-lateral marginal zone
      - involuting marginal zone
      - non-involuting marginal zone
      - ventral marginal zone
      - ventro-lateral marginal zone
      - chordamesoderm
      - mediastinum testis
      - neural groove
      - neural fold hinge point
      - left horn of sinus venosus
      - right horn of sinus venosus
      - kidney rudiment
      - metanephric cap
      - gonadal ridge
      - definitive endoderm
      - caudal part of nephrogenic cord
      - rostral part of nephrogenic cord
      - nephric ridge
      - maxillary prominence
      - undifferentiated genital tubercle
      - neural tube alar plate
      - spinal cord alar plate
      - conotruncus
      - bulbo-ventricular groove
      - common atrial chamber
      - dorsal meso-oesophagus
      - facio-acoustic VII-VIII preganglion complex
      - glossopharyngeal IX preganglion
      - intersubcardinal venous anastomosis
      - pericardio-peritoneal canal
      - perioptic mesenchyme
      - pleuropericardial canals
      - pleuropericardial folds
      - tracheal diverticulum
      - tunica vasculosa lentis
      - urogenital membrane
      - venous vitelline plexus
      - vasa hyaloidea propria
      - presumptive structure
      - dorsal mesentery
      - midgut dorsal mesentery
      - caecum dorsal mesentery
      - presomitic mesoderm
      - blood island
      - presumptive ganglion
      - future trigeminal ganglion
      - optic eminence
      - urogenital fold
      - presumptive retinal pigmented epithelium
      - presumptive neural retina
      - embryonic uterus
      - future diencephalon
      - endolymphatic appendage
      - future brain
      - future forebrain
      - future spinal cord
      - future cardiac ventricle
      - presumptive endoderm
      - presumptive blood
      - presumptive hypochord
      - presumptive enteric nervous system
      - presumptive ectoderm
      - presumptive mesoderm
      - presumptive ventral mesoderm
      - swim bladder bud
      - presumptive gut
      - presumptive hindbrain
      - presumptive sinus venosus
      - presumptive atrioventricular canal
      - presumptive endocardium
      - presumptive midbrain hindbrain boundary
      - presumptive segmental plate
      - presumptive shield
      - presumptive paraxial mesoderm
      - presumptive floor plate
      - presumptive bulbus arteriosus
      - presumptive forebrain midbrain boundary
      - presumptive rhombomere 1
      - presumptive rhombomere 3
      - presumptive rhombomere 4
      - presumptive rhombomere 5
      - presumptive rhombomere 6
      - presumptive rhombomere 7
      - presumptive rhombomere 8
      - presumptive rhombomere 2
      - presumptive pronephric mesoderm
      - future meninx
      - endomeninx
      - ectomeninx
      - mammary ridge
      - midbrain hindbrain boundary neural plate
      - presumptive midbrain
      - future diaphragm
      - future metencephalon
      - future myelencephalon
      - future dorsal motor nucleus of vagus
      - embryonic autopod plate
      - embryonic footplate
      - embryonic handplate
      - future cardiac atrium
      - future telencephalon
      - carapace primordium
      - future central nervous system
      - neural rod
      - neural keel
      - presumptive neural plate
      - future nervous system
      - future pituitary gland
      - future neurohypophysis
      - presumptive median fin fold
      - presumptive ventral fin fold
      - presumptive dorsal fin fold
      - median lingual swelling
      - lateral lingual swelling
      - tectal plate
      - glomeral mesenchyme
      - embryonic post-anal tail
      - 1st arch mandibular component
      - 1st arch maxillary component
      - egg yolk
      - shelled egg
      - dorsal meso-duodenum
      - anal membrane
      - pharyngeal membrane
      - pharyngeal membrane of 1st arch
      - pharyngeal membrane of 2nd arch
      - pharyngeal membrane of 3rd arch
      - pharyngeal membrane of 4th arch
      - ventral midline
      - ventral mesentery
      - Koller's sickle
      - mesocardium
      - dorsal mesocardium
      - trunk and cervical myotome group
      - hemisphere of embryo
      - animal hemisphere
      - vegetal hemisphere
      - embryonic facial prominence
      - mandibular prominence
      - embryonic nasal process
      - frontonasal prominence
      - lateral nasal prominence
      - medial nasal prominence
      - intermaxillary process
      - embryonic frontal process
      - embryonic urethral groove
      - vaginal plate
      - sinovaginal bulb
      - glossopharyngeal-vagus IX-X preganglion complex
      - embryoid body
      - carapacial ridge
      - ventral ectodermal ridge
      - Mullerian tubercle
      - sinus of von Szily
      - dorsal lateral ganglionic eminence
      - prechordal mesoderm
      - preputial swelling
      - preputial swelling of male
      - preputial swelling of female
      - tracheoesophageal fold
      - Brachet's cleft
      - Kupffer's vesicle
      - polster
      - neural plate proneural cluster
      - yolk
      - yolk syncytial layer
      - presumptive cephalic mesoderm
      - deep cell layer (gastrulation)
      - presumptive neuron neural tube
      - immature macula
      - immature anterior macula
      - immature posterior macula
      - presumptive intervening zone
      - archenteron floor
      - archenteron roof
      - blastocoel roof
      - blastopore lip
      - lower blastopore lip
      - upper blastopore lip
      - animal cap
      - animal cap inner layer
      - animal cap outer layer
      - first pancreatic bud
      - early proximal tubule
      - insect visceral mesoderm
      - insect neurogenic region
      - insect embryonic imaginal precursor
      - insect ventral ectoderm
      - insect trunk ectoderm
      - insect presumptive embryonic/larval system
      - insect presumptive embryonic/larval nervous system
      - insect presumptive embryonic/larval central nervous system
      - insect presumptive embryonic/larval tracheal system
      - comma-shaped body
      - metanephric comma-shaped body
      - mesonephric comma-shaped body
      - S-shaped body
      - metanephric S-shaped body
      - mesonephric S-shaped body
      - notochordal process
      - vascular cord
      - tooth bud
      - typhlosole
      - nephric fold
      - pharyngeal region of foregut
      - nephrogenic zone
      - siphon primordium
      - atrial siphon primordia
      - oral siphon primordia
      - immature eye
      - brain marginal zone
      - metanephros induced blastemal cells
      - differentiated genital tubercle
      - female genital tubercle
      - male genital tubercle
      - feather bud
      - limb paddle
      - future glans
      - future glans penis
      - future glans clitoris
      - layer of developing cerebral cortex
      - cortical subplate
      - cortical intermediate zone
      - hindbrain cortical intermediate zone
      - cortical plate
      - cerebral cortex marginal layer
      - cerebral cortex ventricular layer
      - cerebral cortex subventricular zone
      - cortical preplate
      - transitional anatomical structure
      - developing mesenchymal structure
      - myotome
      - myotome somite 14
      - myotome somite 11
      - myotome somite 15
      - myotome somite 18
      - myotome somite 20
      - myotome somite 23
      - myotome somite 26
      - myotome somite 29
      - myotome somite 4
      - myotome somite 7
      - myotome somite 1
      - myotome somite 12
      - myotome somite 16
      - myotome somite 19
      - myotome somite 21
      - myotome somite 24
      - myotome somite 27
      - myotome somite 3
      - myotome somite 5
      - myotome somite 8
      - myotome somite 10
      - myotome somite 13
      - myotome somite 17
      - myotome somite 2
      - myotome somite 22
      - myotome somite 25
      - myotome somite 28
      - myotome somite 30
      - myotome somite 6
      - myotome somite 9
      - dermatome
      - hair peg
      - insect imaginal precursor
      - insect embryonic/larval imaginal precursor
      - insect histoblast nest
      - insect dorsal imaginal precursor
      - insect non-connected developing system
      - disconnected anatomical group
      - anatomical cluster
      - mushroom body
      - vasculature
      - vasculature of head
      - vasculature of eye
      - optic choroid
      - vasculature of iris
      - vasculature of retina
      - pecten oculi
      - optic choroid vascular plexus
      - conjunctival vasculature
      - choroidal gland
      - inner optic circle
      - stria vascularis vasculature
      - cranial blood vasculature
      - pterygoid plexus
      - cranial lymph vasculature
      - vasculature of trunk
      - lung vasculature
      - lobar bronchus vasculature
      - vascular element of left lung
      - vascular element of right lung
      - kidney vasculature
      - renal glomerulus vasculature
      - metanephric glomerulus vasculature
      - mesonephric glomerulus vasculature
      - straight venules of kidney
      - capillary network of kidney
      - peritubular capillary plexus of kidney
      - vasculature of liver
      - capillary network of liver
      - vesical venous plexus
      - pudendal venous plexus
      - urinary bladder vasculature
      - heart vasculature
      - vasculature of spleen
      - vitelline vasculature
      - vasculature of musculoskeletal system
      - lymph vasculature
      - longitudinal lateral lymphatic vessel
      - intersegmental lymph vessel
      - dorsal longitudinal lymphatic vessel
      - blood vasculature
      - venous plexus
      - pampiniform plexus
      - vaginal venous plexus
      - rectal venous plexus
      - uterine venous plexus
      - prostatic venous plexus
      - vertebral venous plexus
      - external vertebral venous plexus
      - anterior external vertebral venous plexus
      - posterior external vertebral venous plexus
      - glandular venous plexus
      - suboccipital venous plexus
      - anterior internal vertebral venous plexus
      - capillary plexus
      - pulmonary capillary plexus
      - systemic capillary plexus
      - embryonic capillary plexus
      - cardinal system
      - systemic venous system
      - vascular plexus
      - hyaloid vascular plexus
      - portal system
      - hypothalamo-hypophyseal system
      - hepatic portal system
      - renal portal system
      - vasculature of organ
      - placental labyrinth vasculature
      - vasculature of muscle organ
      - cerebellum vasculature
      - pharyngeal vasculature
      - vasculature of brain
      - choroid plexus vascular circuit
      - brachiocephalic vasculature
      - appendage vasculature
      - pectoral appendage vasculature
      - caudal fin vasculature
      - central ray artery
      - ray vein
      - intervessel commissure
      - interray vessel
      - connecting stalk vasculature
      - tail vasculature
      - caudal vein plexus
      - pulmonary venous system
      - rete mirabile
      - vasculature of integument
      - deep vasculature
      - vasculature of central nervous system plus retina
      - vasculature of central nervous system
      - axial vasculature
      - axial blood vessel
      - ventricular zone
      - rotator cuff
      - subungual region
      - auditory hillocks
      - exoskeleton
      - shell
      - mollusc shell
      - entire embryonic mesenchyme
      - region of neural crest
      - pineal complex
      - auditory hillocks, pharyngeal arch 1 derived
      - auditory hillocks, pharyngeal arch 2 derived
      - renal pelvis/ureter
      - proliferative region
      - midline column
      - medial column
      - visceromotor column
      - Weberian apparatus
      - dorsal scute series
      - abdominal scute series
      - intervening zone
      - neural complex of Weberian apparatus
      - dorsal fin pterygiophore
      - dorsal fin pterygiophore 1
      - dorsal fin pterygiophore 2
      - dorsal fin pterygiophore 3
      - dorsal fin pterygiophore 4
      - dorsal fin pterygiophore 5
      - dorsal fin pterygiophore 6
      - dorsal fin pterygiophore 7
      - dorsal fin pterygiophore 8
      - anal fin pterygiophore
      - anal fin pterygiophore 1
      - sublingual dorsal and ventral separate
      - caudal scute series
      - infraorbital series
      - Weberian ossicle set
      - opercular series
      - interorbital septum
      - epibranchial arborescent organ
      - gill raker row
      - nuchal plate series
      - upper hypural set
      - lower hypural set
      - sensory canal pore series
      - hemal spine series
      - lateral line scale series
      - branchiostegal ray series
      - epibranchial series
      - ceratobranchial series
      - ceratobranchials II--IV
      - caudal-fin ray pump
      - caudal principal ray set
      - caudal procurrent ray set
      - protoneuromast
      - pars superior ear
      - pars inferior ear
      - hyolaryngeal complex
      - zonal area
      - prezonal element
      - postzonal element
      - ventricular musculature
      - hypophysial region
      - scale row
      - cheek scale row
      - epipleural series
      - submandibular series
      - scale sheath
      - hypobranchial series
      - pharyngobranchial series
      - basibranchial series
      - insect ring gland
      - aggregate regional part of brain
      - ventral medial complex of thalamus
      - collection of basal ganglia
      - basal ganglia of rodent
      - extrastriate cortex
      - non-connected functional system
      - sensory system
      - visual system
      - vestibulo-auditory system
      - lateral line system
      - anterior lateral line system
      - posterior lateral line system
      - trunk sensory canal system
      - head sensory canal system
      - middle lateral line system
      - somatosensory system
      - vestibular system
      - chemosensory system
      - olfactory system
      - mechanosensory system
      - auditory system
      - vomeronasal system
      - interoceptive system
      - perilymphatic system
      - immune system
      - glandular system
      - endocrine system
      - aligned anatomical group
      - insect synaptic neuropil block
      - insect adult central complex
      - anatomical collection
      - pair of lungs
      - pair of nares
      - dentition
      - primary dentition
      - secondary dentition
      - mixed dentition
      - tooth row
      - set of lower jaw teeth
      - parasymphisial tooth whorl
      - Helicoprion tooth whorl
      - set of upper jaw teeth
      - dental comb
      - tooth whorl
      - ventral tooth row
      - mediodorsal tooth row
      - dorsal tooth row
      - premaxillary tooth row
      - inner tooth row of premaxilla
      - outer tooth row of premaxilla
      - dentary tooth row
      - inner tooth row of dentary
      - outer tooth row of dentary
      - maxillary tooth row
      - shagreen tooth field
      - replacement tooth row
      - cheek tooth row
      - skeleton
      - articular system
      - collection of hairs
      - coat of hair
      - whorl of hair
      - collection of hairs on head or neck
      - collection of hair on face
      - eyebrow
      - beard
      - collection of eyelashes
      - moustache
      - collection of hair on forehead
      - collection of hair on snout
      - collection of hairs on vertex
      - collection of hair on external ear
      - cluster of hairs
      - meningeal cluster
      - collection of feathers
      - row of feathers
      - anal pterya
      - breast feather tract
      - feather covering of ventral part of tail
      - feathered facial disc
      - feathered ear tuft
      - composite part spanning multiple base regional parts of brain
      - tegmentum
      - anatomical row
      - row of scales
      - gastropege
      - insect sensilla row
      - insect sex comb
      - anatomical surface region
      - fossa ovalis of heart
      - posterior surface of head
      - arthropod occiput
      - surface of occiput
      - surface of epithelium
      - surface of tongue
      - superior surface of tongue
      - inferior surface of tongue
      - surface of cartilage
      - joint articular surface
      - surface of mandible
      - medial surface of mandible
      - lateral surface of mandible
      - pit
      - proctodeum
      - future foramen cecum
      - primitive pit
      - hilum
      - hilum of spleen
      - lung hilus
      - left lung hilus
      - right lung hilus
      - hilum of kidney
      - hilum of lymph node
      - olfactory pit
      - cervical sinus of His
      - lens pit
      - otic pit
      - ventral surface of penis
      - bicipital surface
      - surface of eyeball
      - dorsal surface of penis
      - inferolateral surface of prostate
      - anterior surface of kidney
      - posterior surface of kidney
      - surface of prostate
      - posterior surface of prostate
      - anterior surface of prostate
      - insect synaptic neuropil
      - immaterial anatomical entity
      - non-material anatomical boundary
      - tooth apex
      - apex of paracone
      - embryonic-extraembryonic boundary
      - iridocorneal angle
      - anatomical line
      - costal arch
      - hairline
      - sulcus ampullaris
      - anatomical line between pupils
      - anatomical line between outer ears
      - margin of tongue
      - line of Schwalbe
      - metapterygial axis
      - epithelial-mesenchymal boundary
      - epithelial mesenchymal boundary of regenerating fin/limb
      - pterygomaxillary fissure
      - spheno-petrosal fissure
      - intertrochanteric crest
      - intertrochanteric line
      - midline of corpus cavernosum maxillaris
      - anatomical line between inner canthi
      - inframammary fold
      - intermammary cleft
      - line connecting laterally paired nipples
      - anatomical line along groove
      - anatomical line between outer canthi
      - interpedicular line
      - intergluteal cleft
      - scale circulus
      - growth line
      - cranial temporal line
      - anatomical space
      - follicular antrum
      - sulcus
      - spiral sulcus
      - inner spiral sulcus
      - outer spiral sulcus
      - gingival groove
      - sulcus of brain
      - superior frontal sulcus
      - superior precentral sulcus
      - anterior calcarine sulcus
      - calcarine sulcus
      - paracentral sulcus
      - superior rostral sulcus
      - rhinal sulcus
      - inferior frontal sulcus
      - inferior rostral sulcus
      - olfactory sulcus
      - lateral occipital sulcus
      - superior postcentral sulcus
      - subparietal sulcus
      - posterior subcentral sulcus
      - central sulcus
      - medulla oblongata anterior median fissure
      - subarachnoid sulcus
      - transverse temporal sulcus
      - orbital sulcus
      - transverse orbital sulcus
      - anterior horizontal limb of lateral sulcus
      - anterior ascending limb of lateral sulcus
      - anterior subcentral sulcus
      - diagonal sulcus
      - occipitotemporal sulcus
      - parieto-occipital sulcus
      - cingulate sulcus
      - collateral sulcus
      - lateral sulcus
      - lateral inferior limiting sulcus
      - fronto-orbital sulcus
      - hippocampal sulcus
      - lunate sulcus
      - intralingual sulcus
      - anterior occipital sulcus
      - posterior ascending limb of lateral sulcus
      - marginal sulcus
      - circular sulcus of insula
      - inferior postcentral sulcus
      - anterior parolfactory sulcus
      - callosal sulcus
      - posterior parolfactory sulcus
      - ventrolateral sulcus of medulla oblongata
      - postsylvian sulcus
      - presylvian sulcus
      - suprasylvian sulcus
      - ectosylvian sulcus
      - postlateral sulcus
      - brain coronal sulcus
      - precentral sulcus
      - central sulcus of insula
      - cruciate sulcus
      - frontomarginal sulcus
      - frontal sulcus
      - inferior precentral sulcus
      - middle frontal sulcus
      - temporal sulcus
      - superior temporal sulcus
      - inferior temporal sulcus
      - middle temporal sulcus
      - posterior middle temporal sulcus
      - angular sulcus
      - anterior middle temporal sulcus
      - occipital sulcus
      - transverse occipital sulcus
      - posterior calcarine sulcus
      - superior calcarine sulcus
      - inferior occipital sulcus
      - inferior calcarine sulcus
      - ectocalcarine sulcus
      - rostral sulcus
      - spur of arcuate sulcus
      - anterior parieto-occipital sulcus
      - superior ramus of arcuate sulcus
      - principal sulcus
      - inferior ramus of arcuate sulcus
      - lateral orbital sulcus
      - medial orbital sulcus
      - intermediate frontal sulcus
      - medial precentral sulcus
      - arcuate sulcus
      - sulcus of limbic lobe
      - sagittal sulcus
      - inferior sagittal sulcus
      - superior sagittal sulcus
      - sulcus of parietal lobe
      - intraparietal sulcus
      - postcentral sulcus of parietal lobe
      - transverse parietal sulcus
      - inferior parietal sulcus
      - superior parietal sulcus
      - paracolic gutter
      - sulcus tali
      - subarachnoid space
      - subarachnoid cistern
      - cistern of lamina terminalis
      - chiasmatic cistern
      - basal cistern
      - pontine cistern
      - cerebellomedullary cistern
      - lateral cerebellomedullary cistern
      - posterior cerebellomedullary cistern
      - quadrigeminal cistern
      - Sylvian cistern
      - subarachnoid space of brain
      - midbrain subarachnoid space
      - diencephalon subarachnoid space
      - hindbrain subarachnoid space
      - subarachnoid space of spinal cord
      - subdural space
      - bile canaliculus
      - Bowman's space
      - cavity of pharynx
      - pupil
      - left pupil
      - right pupil
      - ventricular system choroidal fissure
      - thoracic cavity
      - superior mediastinum
      - inferior mediastinum
      - anterior mediastinum
      - middle mediastinum
      - posterior mediastinum
      - anatomical cavity
      - fornix of vagina
      - posterior fornix of vagina
      - anterior fornix of vagina
      - lateral fornix of vagina
      - blastocele
      - oral cavity
      - nasal vestibule
      - gastric pit
      - superior recess of lesser sac
      - inferior recess of lesser sac
      - externally connecting tube lumen
      - vestibule of vagina
      - vestibule of nasal cavity
      - nasal cavity
      - cavum inferius
      - cavum internasale
      - cavum medius
      - cavum praenasale
      - cavum principale
      - paranasal sinus
      - sphenoidal sinus
      - frontal sinus
      - maxillary sinus
      - ethmoid sinus
      - infraorbital sinus
      - perilymphatic space
      - optic recess of third ventricle
      - coelemic cavity lumen
      - pericardial cavity
      - bone marrow cavity
      - medullary cavity of long bone
      - organ cavity
      - tooth cavity
      - lumen of central nervous system
      - renal sinus
      - pronephric sinus
      - renal sinus of right kidney
      - renal sinus of left kidney
      - mesonephric sinus
      - lumen of pharyngotympanic tube
      - cavity of bone organ
      - pneumatic cavity of bone
      - lumen of vagina
      - uterine lumen
      - tooth socket
      - mediastinum
      - midnasal cavity
      - tympanic cavity
      - bone fossa
      - glenoid fossa
      - cranial fossa
      - anterior cranial fossa
      - middle cranial fossa
      - subarcuate fossa
      - posterior cranial fossa
      - zygomatic fossa
      - entocarotid fossa
      - subepiotic fossa
      - infratemporal fossa
      - spheno-maxillary fossa
      - suprainiac fossa
      - temporal fossa
      - acetabular fossa
      - incisura fossa
      - interpterygoid vacuity
      - posttemporal fossa
      - preepiotic fossa
      - posterior myodome
      - anterior myodome
      - articular fossa of opercle
      - subtemporal fossa
      - dilatator fossa
      - pro-otic fossa
      - pterotic fossa
      - fossa maxillaris
      - fossa cubitalis ventralis
      - foveal depression
      - intertrochanteric fossa
      - suprascapular fossa
      - subscapular fossa
      - brevis fossa
      - intercondylar fossa
      - metacarpal extensor pit
      - entepicondyle fossa
      - distal groove of humerus
      - zygantrum
      - ectepicondylar depression
      - preorbital fossa
      - fenestra
      - temporal fenestra
      - supratemporal fenestra
      - infratemporal fenestra
      - antorbital fenestra
      - maxillary fenestra
      - premaxillary fenestra
      - ventromedial opening of posttemporal fossa
      - braincase and otic capsule opening
      - precerebral fontanelle
      - basicranial fenestra
      - foramen acusticum
      - foramen acusticum anterius
      - foramen acusticum maius
      - foramen acusticum minus
      - foramen acusticum posterius
      - foramen endolymphaticum
      - foramen perilymphaticum
      - foramen perilymphaticum accessorium
      - foramen perilymphaticus inferius
      - frontoparietal fontanelle
      - oculomotor foramen
      - optic fenestra
      - orbitonasal foramen
      - trochlear foramen
      - frontoparietal fenestra
      - suboccular foramen
      - craniopalatine foramen
      - carotid foramen
      - prootic foramen
      - glossopharyngeal nerve foramen
      - internal carotid foramen
      - profundus foramen
      - astragalo-calcaneal canal
      - orbital cavity
      - yolk sac cavity
      - secondary yolk sac cavity
      - primary yolk sac cavity
      - lesser sac cavity
      - hyaloid cavity
      - tubotympanic recess lumen
      - vena cava sinus
      - oronasal cavity
      - subhepatic recess
      - left subhepatic recess
      - right subhepatic recess
      - pituitary fossa
      - synovial cavity of joint
      - synovial cavity of hip joint
      - pelvic cavity
      - sulcus limitans of fourth ventricle
      - proamniotic cavity
      - placenta intervillous maternal lacunae
      - placenta fetal blood space
      - pericardial sinus
      - transverse pericardial sinus
      - oblique pericardial sinus
      - endolymphatic space
      - rectovesical pouch
      - lumen of gastrointestinal system
      - cavity of feather shaft
      - cavity of feather follicle
      - myocoele
      - cornual diverticulum
      - cranial cavity
      - otocyst lumen
      - cervical cavity
      - nasal meatus
      - superior nasal meatus
      - middle nasal meatus
      - inferior nasal meatus
      - common nasal meatus
      - ventral nasal meatus
      - dorsal nasal meatus
      - resorption pit
      - pineal recess of third ventricle
      - endometrial cavity
      - cavity of cardiac chamber
      - cavity of right ventricle
      - cavity of left atrium
      - cavity of left ventricle
      - cavity of right atrium
      - serous cavity
      - peritoneal cavity
      - pleural cavity
      - cementocyte lacuna
      - piriform sinus
      - lumen of pulmonary alveolus
      - preoccipital notch
      - abdominal cavity
      - retroperitoneal space
      - perirenal space
      - anterior pararenal space
      - posterior pararenal space
      - neural tube lumen
      - future coelemic cavity lumen
      - inner ear canal
      - joint space of elbow
      - foramen ovale of heart
      - tube lumen
      - cavity of pericardio-peritoneal canal
      - lumen of Rathke's pouch
      - remnant of lumen of Rathke's pouch
      - mesonephric duct lumen
      - lumen of atrioventricular canal
      - greater sac cavity
      - subcapsular sinus of lymph node
      - lens vesicle cavity
      - tunnel of Corti
      - mantle cavity
      - liver perisinusoidal space
      - lumen of open tracheal system trachea
      - lumen of trachea
      - lumen of digestive tract
      - lumen of midgut
      - lumen of hindgut
      - lumen of anal canal
      - lumen of colon
      - lateral recess of fourth ventricle
      - foramina of scarpa
      - ectoplacental cavity
      - lateral recess of third ventricle
      - pore
      - sensory pore
      - axillary pore
      - lumen of central canal of spinal cord
      - rectal lumen
      - stomodeal lumen
      - urogenital sinus lumen
      - cavum septum pellucidum
      - bladder lumen
      - lumen of oropharynx
      - pharyngeal opening of pharyngotympanic tube
      - lumen of nasopharynx
      - open anatomical space
      - future brain vesicle
      - early prosencephalic vesicle
      - early telencephalic vesicle
      - early mesencephalic vesicle
      - early midbrain vesicle
      - hindbrain vesicle
      - network of trabecular spaces in bone tissue
      - lumen of lymphatic vessel
      - lumen of blood vessel
      - sinusoidal space
      - hepatic sinusoidal space
      - venous sinus cavity
      - space in vertebral column
      - epidural space
      - posterior intervertebral notch
      - intervertebral space
      - anterior intervertebral notch
      - foramen nutritium
      - intercotylar space
      - lumen of laryngopharynx
      - lumen of urethra
      - ampulla caudalis
      - lumen of esophagus
      - lower jaw opening
      - alveolar foramen
      - upper jaw opening
      - tentacular foramen
      - bronchial lumen
      - lumen of primary bronchus
      - lumen of secondary bronchus
      - lumen of tertiary bronchus
      - lumen of parabronchus
      - diastema
      - diastema between incisors
      - diastema between central incisors
      - diastema between upper central incisors
      - diastema between lower central incisors
      - lumen of nutrient foramen
      - intercostal space
      - thyroid follicular lumen
      - urachal lumen
      - epiploic foramen
      - cloacal lumen
      - embryonic cloacal lumen
      - lumen of terminal part of digestive tract
      - extraembryonic cavity
      - amniotic cavity
      - extraembryonic coelomic cavity
      - visceral yolk sac cavity
      - intervillous space
      - enclosed anatomical space
      - embryonic intraretinal space
      - lumen of epithelial sac
      - foramen of Panizza
      - retromolar space
      - space surrounding organism
      - stomach lumen
      - anatomical conduit space
      - valve of foramen ovale
      - incisive duct
      - extraperitoneal space
      - perirectal space
      - perivesical space
      - prevesical space
      - subarachnoid fissure
      - telodiencephalic fissure
      - longitudinal fissure
      - cerebellum fissure
      - posterior superior fissure of cerebellum
      - horizontal fissure of cerebellum
      - prepyramidal fissure of cerebellum
      - secondary fissure of cerebellum
      - posterolateral fissure of cerebellum
      - ansoparamedian fissure of cerebellum
      - primary fissure of cerebellum
      - precentral fissure of cerebellum
      - postcentral fissure of cerebellum
      - intraculminate fissure of cerebellum
      - preculminate fissure of cerebellum
      - anterior median fissure of spinal cord
      - pleuroperitoneal canal lumen
      - perivascular space
      - conjunctival space
      - stomach fundus lumen
      - lumen of duodenum
      - lumen of jejunum
      - ovarian fossa
      - lumen of hemipenial sheath
      - recessus vena jugularis
      - lumen of intestine
      - maxillary recess
      - posterior superior frontal sulcus
      - anterior superior frontal sulcus
      - calcarine sulcus (dorsal)
      - calcarine sulcus (ventral)
      - banks of superior temporal sulcus
      - buccal vestibule
      - gland lumen
      - preputial space
      - preputial space of male
      - preputial space of female
      - tonsillar fossa
      - anal sinus
      - space of Mall
      - peripharyngeal space
      - parapharyngeal space
      - retropharyngeal space
      - abdominopelvic cavity
      - space between upper and lower jaws
      - epididymal lumen
      - interdigital space
      - rima vulvae
      - lateral line canal lumen
      - supratemporal commissure
      - labial cavities
      - pronephric duct opening
      - replacement tooth trench
      - premaxilla replacement tooth trench
      - dentary replacement tooth trench
      - recessus lateralis
      - prootic depression
      - gill opening
      - scale radius
      - cavum sinus imparis
      - opercular cavity
      - pleuroperitoneal cavity
      - posterior recess
      - recessus marsupiatus of premaxilla
      - recessus vaginiformis
      - sulcus dentalis of maxilla
      - sulcus dentalis of premaxilla
      - sulcus for Meckels cartilage
      - hyoglossal sinus
      - pectoral girdle opening
      - glenoid foramen
      - supracoracoid foramen
      - pectoral fenestra
      - trunk armor pectoral fenestra
      - incisura coracoidea
      - sulcus pro cartilagine praecoracoidealis
      - sinus interglenoidalis
      - sinus dorsalis
      - spatium intertarsale
      - lateral recess
      - laryngo-tracheal chamber
      - spiracular notch
      - hindlimb interepipodial space
      - aphakic space
      - trabecular sinus of lymph node
      - rhinal incisure
      - perianal space
      - deep post-anal space
      - intersphincteric space
      - ischiorectal space
      - supra levator space
      - bare area of liver
      - clivus of fovea centralis
      - surface groove
      - philtrum
      - optic fissure
      - interventricular groove
      - anterior interventricular sulcus
      - posterior interventricular sulcus
      - sulcus limitans of neural tube
      - spinal cord sulcus limitans
      - medulla oblongata sulcus limitans
      - metencephalon sulcus limitans
      - myelencephalon sulcus limitans
      - pharyngeal cleft
      - 1st arch pharyngeal cleft
      - 2nd arch pharyngeal cleft
      - 3rd arch pharyngeal cleft
      - 4th arch pharyngeal cleft
      - 1st arch maxillary-mandibular cleft
      - laryngotracheal groove
      - optic pit
      - ciliated pit
      - ventral throat pleat
      - choanal groove
      - metotic fissure
      - intertragic incisure
      - ventral sulcus
      - sulcus ypsiloniformis
      - nuchal groove
      - nasolabial groove
      - sulcus intermedius
      - anatomical point
      - supraauricular point
      - apex of heart
      - nose tip
      - asterion of skull
      - bregma
      - crotaphion
      - jugal point
      - anatomical point connecting sagittal and lambdoidal sutures
      - obelion
      - ophryon
      - porion
      - stephanion
      - sylvian point
      - apex of thoracic spinal cord dorsal horn
      - apex of cervical spinal cord dorsal horn
      - apex of lumbar spinal cord dorsal horn
      - nasion
      - apex of prostate
      - tip
      - proximal-most point of head of femur
      - proximal-most point of head of humerus
      - proximal-most point of ventral tubercle of humerus
      - proximal-most point of greater trochanter of femur
      - hormion
      - basion
      - synsphenion
      - prosthion
      - akrokranion
      - opisthocranion
      - opisthion
      - ectorbitale
      - zygion
      - otion
      - euryon
      - supraorbitale
      - entorbitale
      - bona-fide anatomical boundary
      - anatomical surface
      - anatomical plane
      - plane of autotomy
      - fracture plane
      - vertebral fracture plane
      - plane of autotomy bisecting joint
      - plane of autotomy bisecting intervertebral joint
      - entire surface of organism
      - articular surface
      - pectoral articular facet
      - articular surface for the calcaneum on the astragalus
      - articular surface for the astragalus on the calcaneum
      - cotyla
      - medial cotyla
      - fibular facet of the calcaneum
      - fibular facet of the astragalus
      - tibial facet of astragalus
      - articular surface for carpals
      - articular surface for the tibia on the talus
      - trochlea of talus
      - surface of bone
      - groove for sigmoid sinus
      - cuboid facet of calcaneum
      - infra-orbital groove of maxilla
      - radial facet
      - flexor surface
      - ulnar facet of the humerus
      - humeral facet on the ulna
      - humeral facet on radius
      - fibula facet of femur
      - tibial facet of femur
      - unfinished bone surface
      - finished bone surface
      - trochlear ridge of humerus
      - trochlear groove of talus
      - ridge of medial condyle of talus
      - ridge of lateral condyle of talus
      - posterior articular facet for talus of calcaneus
      - middle articular facet for talus of calcaneus
      - anterior articular facet for talus of calcaneus
      - antorbital notch
      - facet
      - epipodial facet
      - dome of urinary bladder
      - morphological boundary
      - integumental surface
      - pulmonary acinus
      - preorbital bone region
      - posterior sector of right lobe of liver
      - anterior sector of right lobe of liver
    models.sample.metadata.Diagnosis:
      type: string
      description: |-
        The diagnosis for a [`Sample`](crate::Sample).

        This value can be any permissible diagnosis in v1.7.2 of the CCDI Submission
        Template. These values are from the value set **diagnosis_classification**
        found in the 'Terms and Value Sets' tab from the [CCDI Submission Template
        v1.7.2].

        To facilitate quick access to these values, we have provided a slimmed down
        spreadsheet containing the valid diagnoses:

        1. Download the spreadsheet linked below titled
        'CCDI_Submission_Template_v1.7.2.diagnosis_values.xlsx'.
        2. The permissible values are found in column A of the 'diagnosis' tab,
        titled **diagnosis_category_term**

        [CCDI Submission Template v1.7.2]: https://github.com/CBIIT/ccdi-model/blob/682a99d93b66540bb880ce5899ba8096968a96cf/metadata-manifest/CCDI_Submission_Template_v1.7.2.xlsx
        [CCDI_Submission_Template_v1.7.2.diagnosis_values.xlsx]: https://cbiit.github.io/ccdi-federation-api/assets/CCDI_Submission_Template_v1.7.2.diagnosis_values.xlsx
    models.subject.Identifier:
      type: object
      description: |-
        An identifier for a [`Subject`](crate::Subject).

        [`Identifiers`](Identifier) serve two main purposes:

        1. They represent the primary identifier for a [`Subject`](crate::Subject).
        2. They extended when referenced as [linked identifiers](linked::Identifier).
      required:
      - namespace
      - name
      properties:
        namespace:
          $ref: '#/components/schemas/models.namespace.Identifier'
        name:
          $ref: '#/components/schemas/cde.v1.subject.Name'
    models.subject.Kind:
      type: string
      description: A kind of [`Subject`](super::Subject).
      enum:
      - Participant
      - Patient Derived Xenograft
      - Cell Line
      - Organoid
    models.subject.Metadata:
      allOf:
      - $ref: '#/components/schemas/models.metadata.common.Metadata'
      - type: object
        required:
        - sex
        - race
        - ethnicity
        - identifiers
        - vital_status
        - age_at_vital_status
        - associated_diagnoses
        properties:
          sex:
            allOf:
            - $ref: '#/components/schemas/field.unowned.subject.Sex'
            nullable: true
          race:
            type: array
            items:
              $ref: '#/components/schemas/field.unowned.subject.Race'
            description: The race(s) of the subject.
            nullable: true
          ethnicity:
            allOf:
            - $ref: '#/components/schemas/field.unowned.subject.Ethnicity'
            nullable: true
          identifiers:
            type: array
            items:
              $ref: '#/components/schemas/field.unowned.subject.Identifier'
            description: |-
              The alternate identifiers for the subject.

              Note that this list of identifiers *must* include the main identifier
              for the [`Subject`].
            nullable: true
          vital_status:
            allOf:
            - $ref: '#/components/schemas/field.unowned.subject.VitalStatus'
            nullable: true
          age_at_vital_status:
            allOf:
            - $ref: '#/components/schemas/field.unowned.subject.AgeAtVitalStatus'
            nullable: true
          associated_diagnoses:
            type: array
            items:
              $ref: '#/components/schemas/field.unowned.subject.AssociatedDiagnoses'
            description: The associated diagnoses for the subject.
            nullable: true
          unharmonized:
            $ref: '#/components/schemas/fields.Unharmonized'
      description: Metadata associated with a subject.
    models.subject.identifier.linked.Identifier:
      allOf:
      - $ref: '#/components/schemas/models.subject.Identifier'
      - type: object
        required:
        - server
        properties:
          server:
            $ref: '#/components/schemas/models.Url'
      description: |-
        A linked identifier for a [`Subject`](crate::Subject).

        Linked identifiers are identifiers that are able to be linked back to servers within
        the federated ecosystem (i.e., the server that owns this identifier within the
        ecosystem is known).
    models.subject.identifier.referenced.Identifier:
      oneOf:
      - allOf:
        - $ref: '#/components/schemas/models.subject.identifier.linked.Identifier'
        - type: object
          required:
          - type
          properties:
            type:
              type: string
              enum:
              - Linked
      - allOf:
        - $ref: '#/components/schemas/models.subject.identifier.unlinked.Identifier'
        - type: object
          required:
          - type
          properties:
            type:
              type: string
              enum:
              - Unlinked
      description: |-
        A referenced identifier for a [`Subject`](crate::Subject).

        A referenced identifier is a reference to either an identifier whose owner is known
        and operates an authoritative federation server containing that identifier (i.e., a
        [linked identifier](linked::Identifier)) _or_ a reference to an identifier that is
        generally known to be associated with the subject but does not have an associated
        server that asserts ownership of the identifier (i.e., an [unlinked
        identifier](unlinked::Identifier)).
      discriminator:
        propertyName: type
    models.subject.identifier.unlinked.Identifier:
      type: object
      description: |-
        An unlinked identifier for a [`Subject`](crate::Subject).

        This represents an arbitrary identitier that cannot be linked to any source server
        in the broader federated ecosystem. There are no restricted values for this
        identifier.
      required:
      - name
      properties:
        name:
          type: string
    models.subject.metadata.AgeAtVitalStatus:
      type: number
      format: float
      description: |-
        The approximate age at vital status in days.

        * When the age at vital status is collected by the source server in days,
        the number of days is reported directly.
        * When the age at vital status is collected by the source server in years,
        the number of years is multiplied by 365.25 to arrive at an approximate
        number of days.
    models.subject.metadata.AssociatedDiagnoses:
      type: string
      description: |-
        The associated_diagnoses for a [`Subject`](crate::Subject).

        This value can be any permissible diagnosis in v1.7.2 of the CCDI Submission
        Template. These values are from the value set **diagnosis_classification**
        found in the 'Terms and Value Sets' tab from the [CCDI Submission Template
        v1.7.2].

        To facilitate quick access to these values, we have provided a slimmed down
        spreadsheet containing the valid diagnoses:

        1. Download the spreadsheet linked below titled
        'CCDI_Submission_Template_v1.7.2.diagnosis_values.xlsx'.
        2. The permissible values are found in column A of the 'diagnosis' tab,
        titled **diagnosis_category_term**

        [CCDI Submission Template v1.7.2]: https://github.com/CBIIT/ccdi-model/blob/682a99d93b66540bb880ce5899ba8096968a96cf/metadata-manifest/CCDI_Submission_Template_v1.7.2.xlsx
        [CCDI_Submission_Template_v1.7.2.diagnosis_values.xlsx]: https://cbiit.github.io/ccdi-federation-api/assets/CCDI_Submission_Template_v1.7.2.diagnosis_values.xlsx
    responses.Errors:
      type: object
      description: A wrapper around one or more [errors](Kind).
      required:
      - errors
      properties:
        source:
          type: string
          description: |-
            A reference to a Federation Node.
        errors:
          type: array
          items:
            $ref: '#/components/schemas/responses.error.Kind'
          description: The errors within this response.
    responses.File:
      allOf:
      - type: object
        properties:
          source:
            type: string
            description: |-
              A reference to a Federation Node.
      - $ref: '#/components/schemas/models.File'
      description: A response representing a single [`File`](models::File).
    responses.Files:
      type: object
      description: |-
        A response representing multiple files known about by the server.

        When no sort order is provided, files **must** be ordered by the primary
        identifier. This means that, when comparing two identifiers:

        1. The namespace organization field should be sorted alphabetically. If all
        values for the namespace organization are equal, continue on to the next
        sorting criteria.
        2. The namespace name field should be sorted alphabetically. If all
        values for the namespace names are equal, continue on to the next
        sorting criteria.
        3. The entity name should be sorted alphabetically.

        Since the `namespace` and `name` identifiers should always uniquely apply to
        a single entity, this should always resolve to an ordering.

        If there is a provided sort order, use that instead.
      required:
      - summary
      - data
      properties:
        source:
          type: string
          description: |-
            A reference to a Federation Node.
        summary:
          $ref: '#/components/schemas/responses.entity.Summary'
        data:
          type: array
          items:
            $ref: '#/components/schemas/responses.File'
          description: The files.
        gateways:
          type: array
          items:
            $ref: '#/components/schemas/models.gateway.Named'
    responses.Information:
      type: object
      description: A response for information regarding the server.
      required:
      - server
      - api
      - data
      properties:
        source:
          type: string
          description: |-
            A reference to a Federation Node.
        server:
          $ref: '#/components/schemas/responses.info.server.Information'
        api:
          $ref: '#/components/schemas/responses.info.api.Information'
        data:
          $ref: '#/components/schemas/responses.info.data.Information'
    responses.Namespace:
      allOf:
      - type: object
        properties:
          source:
            type: string
            description: |-
              A reference to a Federation Node.
      - $ref: '#/components/schemas/models.Namespace'
    responses.Namespaces:
      type: array
      items:
        $ref: '#/components/schemas/models.Namespace'
      description: A response for describing namespaces.
    responses.Organization:
      allOf:
      - type: object
        properties:
          source:
            type: string
            description: |-
              A reference to a Federation Node.
      - $ref: '#/components/schemas/models.Organization'
    responses.Organizations:
      type: array
      items:
        $ref: '#/components/schemas/models.Organization'
      description: A response for describing organizations.
    responses.Sample:
      allOf:
      - type: object
        properties:
          source:
            type: string
            description: |-
              A reference to a Federation Node.
      - $ref: '#/components/schemas/models.Sample'
      description: A response representing a single [`Sample`](models::Sample).
    responses.Samples:
      type: object
      description: |-
        A response representing multiple samples known about by the server.

        When no sort order is provided, samples **must** be ordered by the primary
        identifier. This means that, when comparing two identifiers:

        1. The namespace organization field should be sorted alphabetically. If all
        values for the namespace organization are equal, continue on to the next
        sorting criteria.
        2. The namespace name field should be sorted alphabetically. If all values
        for the namespace names are equal, continue on to the next sorting
        criteria.
        3. The entity name should be sorted alphabetically.

        Since the `namespace` and `name` identifiers should always uniquely apply to
        a single entity, this should always resolve to an ordering.

        If there is a provided sort order, use that instead.
      required:
      - summary
      - data
      properties:
        source:
          type: string
          description: |-
            A reference to a Federation Node.
        summary:
          $ref: '#/components/schemas/responses.entity.Summary'
        data:
          type: array
          items:
            $ref: '#/components/schemas/models.Sample'
          description: The samples.
        gateways:
          type: array
          items:
            $ref: '#/components/schemas/models.gateway.Named'
    responses.Subject:
      allOf:
      - type: object
        properties:
          source:
            type: string
            description: |-
              A reference to a Federation Node.
      - $ref: '#/components/schemas/models.Subject'
      description: A response representing a single [`Subject`](models::Subject).
    responses.Subjects:
      type: object
      description: |-
        A response representing multiple subjects known about by the server.

        When no sort order is provided, subjects **must** be ordered by the primary
        identifier. This means that, when comparing two identifiers:

        1. The namespace organization field should be sorted alphabetically. If all
        values for the namespace organization are equal, continue on to the next
        sorting criteria.
        2. The namespace name field should be sorted alphabetically. If all
        values for the namespace names are equal, continue on to the next
        sorting criteria.
        3. The entity name should be sorted alphabetically.

        Since the `namespace` and `name` identifiers should always uniquely apply to
        a single entity, this should always resolve to an ordering.

        If there is a provided sort order, use that instead.
      required:
      - summary
      - data
      properties:
        source:
          type: string
          description: |-
            A reference to a Federation Node.
        summary:
          $ref: '#/components/schemas/responses.entity.Summary'
        data:
          type: array
          items:
            $ref: '#/components/schemas/models.Subject'
          description: The subjects.
        gateways:
          type: array
          items:
            $ref: '#/components/schemas/models.gateway.Named'
    responses.Summary:
      type: object
      description: A summary response for an entity endpoint.
      required:
      - counts
      properties:
        source:
          type: string
          description: |-
            A reference to a Federation Node.
        counts:
          $ref: '#/components/schemas/responses.summary.Counts'
    responses.by.count.ValueCount:
      type: object
      description: A value along with the number of counted entities for that value.
      required:
      - value
      - count
      properties:
        value:
          description: The value.
        count:
          type: integer
          description: The number of times the value was counted.
          minimum: 0
    responses.by.count.file.Results:
      type: object
      description: |-
        A set of results from grouping [`Files`](ccdi_models::File) by a specified
        metadata field and then summing the counts for each value (along with computing a
        total count).
      required:
      - total
      - missing
      - values
      properties:
        source:
          type: string
          description: |-
            A reference to a Federation Node.
        total:
          type: integer
          description: The total number of counts in this result set.
          minimum: 0
        missing:
          type: integer
          description: |-
            The total number of entries that are missing values. In this context,
            "missing" means either (a) the individual metadata key is missing or (b)
            the entire metadata object is missing.
          minimum: 0
        values:
          type: array
          items:
            $ref: '#/components/schemas/responses.by.count.ValueCount'
          description: The counts per value observed for the result set.
    responses.by.count.sample.Results:
      type: object
      description: |-
        A set of results from grouping [`Samples`](ccdi_models::Sample) by a specified
        metadata field and then summing the counts for each value (along with computing a
        total count).
      required:
      - total
      - missing
      - values
      properties:
        source:
          type: string
          description: |-
            A reference to a Federation Node.
        total:
          type: integer
          description: The total number of counts in this result set.
          minimum: 0
        missing:
          type: integer
          description: |-
            The total number of entries that are missing values. In this context,
            "missing" means either (a) the individual metadata key is missing or (b)
            the entire metadata object is missing.
          minimum: 0
        values:
          type: array
          items:
            $ref: '#/components/schemas/responses.by.count.ValueCount'
          description: The counts per value observed for the result set.
    responses.by.count.subject.Results:
      type: object
      description: |-
        A response for grouping [`Subject`](ccdi_models::Subject)s by a metadata field
        and then summing the counts.
      required:
      - total
      - missing
      - values
      properties:
        source:
          type: string
          description: |-
            A reference to a Federation Node.
        total:
          type: integer
          description: The total number of counts in this result set.
          minimum: 0
        missing:
          type: integer
          description: |-
            The total number of entries that are missing values. In this context,
            "missing" means either (a) the individual metadata key is missing or (b)
            the entire metadata object is missing.
          minimum: 0
        values:
          type: array
          items:
            $ref: '#/components/schemas/responses.by.count.ValueCount'
          description: The counts per value observed for the result set.
    responses.entity.Counts:
      type: object
      description: Counts that summarize the contents of a paged entity response.
      required:
      - current
      - all
      properties:
        current:
          type: integer
          description: The number of entities within the currently selected page in the result set.
          minimum: 0
        all:
          type: integer
          description: The number of entities across all pages in the result set.
          minimum: 0
    responses.entity.Summary:
      type: object
      description: A summary of a paged entity response.
      required:
      - counts
      properties:
        counts:
          $ref: '#/components/schemas/responses.entity.Counts'
    responses.error.Kind:
      allOf:
      - oneOf:
        - type: object
          description: |-
            Attempted to access an invalid route.

            Also includes all routes for which the path exists, but the HTTP method
            is not supported for that path.
          required:
          - method
          - route
          - kind
          properties:
            method:
              type: string
              description: The HTTP method that was used in the request.
            route:
              type: string
              description: The route that was requested.
            kind:
              type: string
              enum:
              - InvalidRoute
          example:
            kind: InvalidRoute
            method: GET
            route: /foobar
        - type: object
          description: One or more invalid query or path parameters were provided.
          required:
          - reason
          - kind
          properties:
            parameters:
              type: array
              items:
                type: string
              description: |-
                If known, the parameters that are invalid. If not known or the list
                of invalid fields is not desirable to share, pass `null` to this
                field for a more general error message.
              nullable: true
            reason:
              type: string
              description: A plain-text reason describing why the parameters are invalid.
            kind:
              type: string
              enum:
              - InvalidParameters
          example:
            kind: InvalidParameters
            parameters:
            - id
            reason: The parameter was a non-integer value.
        - type: object
          description: An entity was not found.
          required:
          - entity
          - kind
          properties:
            entity:
              type: string
              description: The entity (or entities) that are not found.
            kind:
              type: string
              enum:
              - NotFound
          example:
            kind: NotFound
            entity: Samples
        - type: object
          description: Line-level data cannot be shared for the specified entity.
          required:
          - entity
          - reason
          - kind
          properties:
            entity:
              type: string
              description: The entity (or entities) where data cannot be shared.
            reason:
              type: string
              description: The reason that the line-level data cannot be shared.
            kind:
              type: string
              enum:
              - UnshareableData
          example:
            kind: UnshareableData
            entity: Sample
            reason: Our agreement with data providers prohibits us from sharing line-level data.
        - type: object
          description: A field name was not supported for the attempted operation.
          required:
          - field
          - reason
          - kind
          properties:
            field:
              type: string
              description: The field that is not supported.
            reason:
              type: string
              description: The reason that the field is not supported.
            kind:
              type: string
              enum:
              - UnsupportedField
          example:
            kind: UnsupportedField
            field: field
            reason: The field was not found in the metadata object.
        description: An inner type of a [Kind](super::Kind).
        discriminator:
          propertyName: kind
      - type: object
        required:
        - message
        properties:
          message:
            type: string
            description: |-
              A plain-text description of the error.

              This field is intended to be shown within a user interface or similar if
              needed. Please use this field if you intend to pass the error along to a
              user.
      description: A response indicating an error from the API.
    responses.info.api.Information:
      type: object
      description: Information that is specific to the API that the server implements.
      required:
      - api_version
      - documentation_url
      properties:
        api_version:
          type: string
          description: The version of the API that this server supports.
          example: v1.2.0
        documentation_url:
          type: string
          description: |-
            A URL pointing to the latest version of the Swagger documentation.

            Note that, at times, the latest version of the Swagger documentation may
            not be in sync with the version of the API deployed for this server. The
            intention of this field is not to link to a Swagger specification that
            strictly matches this particular server, but rather, to point users to
            where the specification is developed and hosted.
          default: https://cbiit.github.io/ccdi-federation-api/specification.html
    responses.info.data.Information:
      type: object
      description: Information that is specific to the API that the server implements.
      required:
      - version
      - last_updated
      - wiki_url
      properties:
        version:
          $ref: '#/components/schemas/responses.info.data.Version'
        last_updated:
          type: string
          format: date-time
          description: |-
            The ISO 8601 formatted, UTC-based date and time when the data was last
            updated.

            This represents the last _update_ time. In contrast to the
            `data_version` field, this field is updated whenever a data update is
            performed irrespective of whether there were actually changes in the
            data.
        wiki_url:
          type: string
          description: |-
            A URL pointing to the wiki.

            The intention of this field is to make users aware that we maintain a
            federation-wide wiki that describes the data elements in detail.
          default: https://github.com/CBIIT/ccdi-federation-api/wiki
        documentation_url:
          type: string
          description: |-
            If available, a link pointing to where users can learn more about the
            data contained within this particular server.

            This is intended to be a server-specification documentation link, not
            any link that is developed by the federation.
          default: https://docs.example.com
          nullable: true
    responses.info.data.Version:
      allOf:
      - $ref: '#/components/schemas/responses.info.data.version.About'
      - type: object
        required:
        - version
        properties:
          version:
            type: integer
            description: |-
              The value of the version.

              This field represents a free-text field where data is arbitrarily
              versioned by the source server. Any versioning scheme is permissible.
            example: 1
            minimum: 1
      description: The version of data published within this source server.
    responses.info.data.version.About:
      oneOf:
      - type: object
        required:
        - about
        properties:
          about:
            type: string
            description: |-
              A free-text description of the data version included with the response
              from the source server. This field is interpreted as Markdown (as
              defined by the [CommonMark](https://commonmark.org/) specification).
      - type: object
        required:
        - about_url
        properties:
          about_url:
            type: string
            description: |-
              A URL where one can learn more about the data versioning for this source
              server.
      description: A description of how data is versioning within the source server.
    responses.info.server.Information:
      type: object
      description: Information that is specific to the server itself.
      required:
      - owner
      - contact_email
      properties:
        name:
          type: string
          description: |-
            The name of this server (if it has one).

            This is a free-text field describing the name of this server, if it has
            one. The intention is to be able to describe the proper name of the
            application.
          example: Example Server
          nullable: true
        version:
          type: string
          description: |-
            The version of this server (if it has one).

            Though there is explicitly no versioning dictated by the specification,
            we recommend [Semantic Versioning v2.0](https://semver.org/) in the
            absence of better options to align with the scheme used by the API. Note
            that using the same versioning scheme does not mean that the version of
            your server is recommended to be the same version as the API.
          example: v1.22
          nullable: true
        owner:
          type: string
          description: |-
            A free-text string describing the owner of the namespace.

            This field is intended to be the proper name of the organization that
            owns and operates the server. That said, we have intentionally not
            required this restriction, as there may be exceptions to this guideline.
            We recommend that you use an organization name here if you can, but you
            may put whatever value is appropriate to describe the owner of the
            server.

            It is recommended that you use title case for this field, though that is
            not strictly required.
          example: Example Organization
        contact_email:
          type: string
          description: |-
            A support email address for the server.

            This field is required to be a valid email address (both in format and
            in terms of the email address being actively monitored).
          example: support@example.com
        about_url:
          type: string
          description: |-
            If desired, a link to a page intended to be consumed by a web browser
            that describes more about the owner. This can be a link to your
            organization's main web page or a link to a webpage describing the
            project.
          example: https://example.com
          nullable: true
        repository_url:
          type: string
          description: |-
            If your code base is open source and you want to advertise that, a link
            to the repository where the code is stored.
          example: https://github.com/CBIIT/ccdi-federation-api
          nullable: true
        issues_url:
          type: string
          description: If available, a URL where users can report issues.
          example: https://github.com/CBIIT/ccdi-federation-api/issues
          nullable: true
    responses.metadata.FieldDescriptions:
      type: object
      description: A response for describing metadata fields for a subject, sample, or file.
      required:
      - fields
      properties:
        source:
          type: string
          description: |-
            A reference to a Federation Node.
        fields:
          type: array
          items:
            $ref: '#/components/schemas/models.metadata.field.Description'
          description: Field descriptions.
    responses.summary.Counts:
      type: object
      description: Counts included in a summary endpoint.
      required:
      - total
      properties:
        total:
          type: integer
          minimum: 0
    responses.SubjectsArray:
      type: array
      description: |-
        An aggregated response representing multiple subjects.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.Subjects'
          - $ref: '#/components/schemas/responses.Errors'
    responses.SubjectArray:
      type: array
      description: |-
        An aggregated response representing collection of single subjects.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.Subject'
          - $ref: '#/components/schemas/responses.Errors'
    responses.by.count.subject.ResultsArray:
      type: array
      description: |-
        An aggregated response representing multiple groups by counts.
        known by the servers.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.by.count.subject.Results'
          - $ref: '#/components/schemas/responses.Errors'
    responses.SamplesArray:
      type: array
      description: |-
        An aggregated response representing multiple samples.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.Samples'
          - $ref: '#/components/schemas/responses.Errors'
    responses.SampleArray:
      type: array
      description: |-
        An aggregated response representing multiple samples.
      items:
        anyOf:
         - $ref: '#/components/schemas/responses.Sample'
         - $ref: '#/components/schemas/responses.Errors'
    responses.by.count.sample.ResultsArray:
      type: array
      description: |-
        An aggregated response representing multiple multiple groups by counts.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.by.count.sample.Results'
          - $ref: '#/components/schemas/responses.Errors'
    responses.SummaryArray:
      type: array
      description: |-
        An aggregated response representing multiple summaries.
      items:
        $ref: '#/components/schemas/responses.Summary'
    responses.FilesArray:
      type: array
      description: |-
        An aggregated response representing multiple files.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.Files'
          - $ref: '#/components/schemas/responses.Errors'
    responses.FileArray:
      type: array
      description: |-
        An aggregated response representing multiple file.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.File'
          - $ref: '#/components/schemas/responses.Errors'
    responses.by.count.file.ResultsArray:
      type: array
      description: |-
        An aggregated response representing multiple groups by counts.
        known by the servers.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.by.count.file.Results'
          - $ref: '#/components/schemas/responses.Errors'
    responses.metadata.FieldDescriptionsArray:
      type: array
      description: |-
        An aggregated response representing multiple fields.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.metadata.FieldDescriptions'
          - $ref: '#/components/schemas/responses.Errors'
    responses.NamespacesArray:
      type: array
      description: |-
        An aggregated response representing multiple namespaces.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.Namespaces'
          - $ref: '#/components/schemas/responses.Errors'
    responses.NamespaceArray:
      type: array
      description: |-
        An aggregated response representing multiple namespaces.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.Namespace'
          - $ref: '#/components/schemas/responses.Errors'
    responses.OrganizationsArray:
      type: array
      description: |-
        An aggregated response representing multiple namespaces.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.Organizations'
          - $ref: '#/components/schemas/responses.Errors'
    responses.OrganizationArray:
      type: array
      description: |-
        An aggregated response representing multiple namespaces.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.Organization'
          - $ref: '#/components/schemas/responses.Errors'
    responses.InformationArray:
      type: array
      description: |-
        An aggregated response representing multiple information objects.
      items:
        anyOf:
          - $ref: '#/components/schemas/responses.Information'
          - $ref: '#/components/schemas/responses.Errors'
tags:
- name: Subject
  description: Subjects within the CCDI federated ecosystem.
- name: Sample
  description: Samples within the CCDI federated ecosystem.
- name: File
  description: Files within the CCDI federated ecosystem.
- name: Metadata
  description: List and describe provided metadata fields.
- name: Namespace
  description: List and describe namespaces known by this server.
- name: Organization
  description: List and describe organizations known by this server.
- name: Info
  description: Information about the API implementation itself.
- name: Experimental
  description: Endpoints and features in an experimental phase.
externalDocs:
  url: https://www.cancer.gov/research/areas/childhood/childhood-cancer-data-initiative
  description: Learn more about the Childhood Cancer Data Initiative
