Skip to content

Class: RelevantFiles

Description: A structure for describing each source file (or API endpoint, database, or table) that contains content in scope for the ingest. Source files containing which content is not retrieved in this ingest need not be listed or described.
classDiagram class RelevantFiles RelevantFiles : description RelevantFiles : file_name RelevantFiles : location

Slots

Name Cardinality and Range Inheritance Examples
file_name:
The name of the relevant file (or endpoint, or table).
1
String
direct
location:
The URL of a web page or ftp site where the indicated file (or endpoint or table) was accessed.
1
Uriorcurie
direct
description:
An optional brief description of the content and/or utility of the file (or endpoint or table)
0..1
String
direct

Usages

used by used in type used
IngestInformation relevant_files range RelevantFiles

LinkML Source

name: RelevantFiles
description: A structure for describing each source file (or API endpoint, database,
  or table) that contains content in scope for the ingest. Source files containing
  which content is not retrieved  in this ingest need not be listed or described.
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_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - RelevantFiles
    - IncludedContent
    - FilteredContent
    range: string
    required: true
  location:
    name: location
    description: The URL of a web page or ftp site where the indicated file (or endpoint
      or table) was accessed.
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - RelevantFiles
    range: uriorcurie
    required: true
  description:
    name: description
    description: An optional brief description of the content and/or utility of the
      file (or endpoint or table)
    from_schema: https://w3id.org/biolink/resource-ingest-guide-schema
    domain_of:
    - SourceInformation
    - RelevantFiles
    range: string