-
Notifications
You must be signed in to change notification settings - Fork 72
/
semmed-exclude-list-model.yaml
104 lines (85 loc) · 2.51 KB
/
semmed-exclude-list-model.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
---
id: https://w3id.org/biolink/semmed-exclude-list-model.yaml
name: semmed-exclude-list-model
description: Model that represents a semmed exclude list object
license: https://creativecommons.org/publicdomain/zero/1.0/
# Version should be kept in sync with primary Git repository release tag
version: 4.2.5
## ------------
##
## PREFIXES
## ------------
# CURIE namespaces (prefixes/base URI's) mappings of prefixes used in the body of the Biolink Model specification
# are resolved using a specific precedence order, for use in the generation of the Biolink Model context.jsonld
# mappings to namespaces. Any prefixes encountered in the Biolink Model but not resolved by the following
# precedence sources, are anonymously declared by linkml as http://example.org/UNKNOWN/ rooted base URI's
# which should ideally be repaired in one of the precedence lists.
#
# 1. The following 'prefixes:' delimited list has first precedence in resolution.
#
prefixes:
biolink: 'https://w3id.org/biolink/vocab/'
linkml: 'https://w3id.org/linkml/'
infores: 'https://w3id.org/biolink/vocab/'
sel: 'https://w3id.org/biolink/vocab/'
imports:
- linkml:types
default_prefix: sel
default_range: string
default_curi_maps:
- obo_context
- idot_context
- monarch_context
- semweb_context
emit_prefixes:
- rdf
- rdfs
- xsd
- skos
- oboInOwl
classes:
ExcludeListContainer:
tree_root: true
description: >-
A collection of exclusion objects
slots:
- excluded_semmedb_records
ExcludedSemmedbRecord:
slots:
- semmed_subject_code
- semmed_subject_t_code
- semmed_predicate
- semmed_object_code
- semmed_object_t_code
- exclusion_type
slots:
semmed_subject_code:
description: >-
The subject code of the semmeddb record
range: string
semmed_subject_t_code:
description: >-
The subject t code of the semmeddb record
range: string
semmed_predicate:
description: >-
The predicate of the semmeddb record
range: string
semmed_object_code:
description: >-
The object code of the semmeddb record
range: string
semmed_object_t_code:
description: >-
The object t code of the semmeddb record
range: string
exclusion_type:
description: >-
The notes describing the kind of exclusion that generated this record.
range: string
excluded_semmedb_records:
description: >-
The list of semmeddb records that are excluded
multivalued: true
range: ExcludedSemmedbRecord
inlined_as_list: true