Skip to content

Class: IncludedContent

Description: A structure for describing the types of records from relevant files/endpoints/tables are included in this ingest, and optionally a list of fields from these records that are part of the ingest or used to inform it.
classDiagram class IncludedContent IncludedContent : fields_used IncludedContent : file_name IncludedContent : included_records

Slots

Name Cardinality and Range Inheritance Examples
file_name:
The name of the relevant file (or endpoint, or table) from which content is included.
1
String
direct
included_records:
A description of the types of records that are included in the ingest.
1
String
direct
fields_used:
Optional list of the specific source fields that are part of or inform the ingest.
0..1
String
direct

Usages

used by used in type used
IngestInformation included_content range IncludedContent

LinkML Source

name: IncludedContent
description: A structure for describing the types of records from relevant files/endpoints/tables
  are included in this ingest, and optionally a list of fields from these records
  that are part of the ingest or used to inform it.
from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
attributes:
  file_name:
    name: file_name
    description: The name of the relevant file (or endpoint, or table) from which
      content is included.
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - RelevantFiles
    - IncludedContent
    - FilteredContent
    range: string
    required: true
  included_records:
    name: included_records
    description: A description of the types of records that are included in the ingest.
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - IncludedContent
    range: string
    required: true
  fields_used:
    name: fields_used
    description: Optional list of the specific source fields that are part of or inform
      the ingest.
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - IncludedContent
    range: string