Skip to content

Class: FilteredContent

Description: A structure for describing the types of records from each relevant file/endpoint/table not included in the ingest, and the rationale for any filtering rules or exclusion criteria. Only list a file if some but not all records it contains are included in the ingest - to document what subset was excluded, and why.
classDiagram class FilteredContent FilteredContent : file_name FilteredContent : filtered_records FilteredContent : rationale

Slots

Name Cardinality and Range Inheritance Examples
file_name:
The name of the relevant file (or endpoint, or table) form which content was filtered.
1
String
direct
filtered_records:
A description of what types of records were excluded from the ingest, in terms of filtering rules or exclusion criteria.
1
String
direct
rationale:
The rationale for excluding the indicated content (why this subset of records was filtered out).
1
String
direct

Usages

used by used in type used
IngestInformation filtered_content range FilteredContent

LinkML Source

name: FilteredContent
description: A structure for describing the types of records from each relevant file/endpoint/table
  not included in the ingest, and the rationale for any filtering rules or exclusion
  criteria. Only list a file if some but not all records it contains are included
  in the ingest - to document what subset was excluded, and why.
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) form which
      content was filtered.
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - RelevantFiles
    - IncludedContent
    - FilteredContent
    range: string
    required: true
  filtered_records:
    name: filtered_records
    description: A description of what types of records were excluded from the ingest,
      in terms of filtering rules or exclusion criteria.
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - FilteredContent
    range: string
    required: true
  rationale:
    name: rationale
    description: The rationale for excluding the indicated content (why this subset
      of records was filtered out).
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - FilteredContent
    range: string
    required: true