Skip to content

Class: TargetInformation

Description: A sturcture for capturing information about the target dataset / knowledge graph output by the ingest, including what types of edges and nodes were produced, modeling rationale, and what modeling changes might be considered in future iterations.
classDiagram class TargetInformation TargetInformation : additional_notes TargetInformation : edge_type_info TargetInformation --|> EdgeType : edge_type_info TargetInformation : future_considerations TargetInformation --|> FutureModelingConsiderations : future_considerations TargetInformation : infores_id TargetInformation : node_type_info TargetInformation --|> NodeType : node_type_info

Slots

Name Cardinality and Range Inheritance Examples
infores_id:
An infores identifier assigned to the target resource that will be created from the ingested content.
0..1
Uriorcurie
direct
edge_type_info:
A description of each type of edge (metaedge) created in the target knowledge graph by this ingest, including what types of edge properties it holds, and a brief explanation of why this modeling pattern was deemed appropriate to represent the source data (to be displayed for end users in a UI system).
1..*
EdgeType
direct
node_type_info:
A description of each type of node created in the target knowledge graph by this ingest, in terms of the high-level Biolink categor(ies) of nodes as assumed or assigned by ingestors. Note however that downstream normalization of node identifiers may result in new/different categories ultimately being assigned in the final graph.
1..*
NodeType
direct
future_considerations:
Notes about mapping/modeling changes to consider in future iterations of this ingest.
*
FutureModelingConsiderations
direct
additional_notes:
Additional notes, considerations or resources relevant to mapping or modeling source data to the target model, that were not otherwise captured in dedicated attributes.
0..1
String
direct

Usages

used by used in type used
ReferenceIngestGuide target_info range TargetInformation

LinkML Source

name: TargetInformation
description: A sturcture for capturing information about the target dataset / knowledge
  graph output by the ingest, including what types of edges and nodes were produced,
  modeling rationale, and what modeling changes might be considered in future iterations.
from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
attributes:
  infores_id:
    name: infores_id
    description: An infores identifier assigned to the target resource that will be
      created from the ingested content.
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - SourceInformation
    - TargetInformation
    range: uriorcurie
  edge_type_info:
    name: edge_type_info
    description: A description of each type of edge (metaedge) created in the target
      knowledge graph by this ingest, including what types of edge properties it holds,
      and a brief explanation of why this modeling pattern was deemed appropriate
      to represent the source data (to be displayed for end users in a UI system).
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - TargetInformation
    range: EdgeType
    required: true
    multivalued: true
  node_type_info:
    name: node_type_info
    description: A description of each type of node created in the target knowledge
      graph by this ingest, in terms of the high-level Biolink categor(ies) of nodes
      as assumed or assigned by ingestors.  Note however that downstream normalization
      of node identifiers may result in new/different categories ultimately being
      assigned in the final graph.
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - TargetInformation
    range: NodeType
    required: true
    multivalued: true
  future_considerations:
    name: future_considerations
    description: Notes about mapping/modeling changes to consider in future iterations
      of this ingest.
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - IngestInformation
    - TargetInformation
    range: FutureModelingConsiderations
    multivalued: true
  additional_notes:
    name: additional_notes
    description: Additional notes, considerations or resources relevant to mapping
      or modeling source data to the target model, that were not otherwise captured
      in dedicated attributes.
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - SourceInformation
    - IngestInformation
    - TargetInformation
    - EdgeType
    - NodeType
    range: string