-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathanatomical_structure_core.yaml
57 lines (52 loc) · 1.42 KB
/
anatomical_structure_core.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
id: https://w3id.org/my-org/anatomical-structure-core-schema
name: anatomical-structure-core-schema
title: Anatomical Structure Core Schema
description: |-
Contains the core types for the Anatomical Structure Schema.
prefixes:
AnS: https://w3id.org/my-org/anatomical-structure-schema/
linkml: https://w3id.org/linkml/
biolink: https://w3id.org/biolink/
schema: http://schema.org/
PATO: http://purl.obolibrary.org/obo/PATO_
default_prefix: AnS
default_range: string
imports:
- linkml:types
classes:
NamedThing:
description: >-
Core base entity for Anatomical Structure schema representing an entity with an identifier
name and description.
abstract: true
slots:
- id
- name
- description
- category
VersionedNamedThing:
is_a: NamedThing
description: >-
Core base entity for Anatomical Structure schema representing an versioned named thing.
abstract: true
slots:
- version
- revision_of
slots:
id:
range: uriorcurie
identifier: true
required: true
name:
required: true
description:
required: true
version:
required: true
revision_of:
range: VersionedNamedThing
category:
range: uriorcurie
designates_type: true
is_class_field: true
multivalued: true