mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-13 02:04:29 +00:00
31 lines
901 B
YAML
31 lines
901 B
YAML
|
name: hdmf-common.base
|
||
|
id: hdmf-common.base
|
||
|
imports:
|
||
|
- nwb.language
|
||
|
default_prefix: hdmf-common.base/
|
||
|
classes:
|
||
|
Data:
|
||
|
name: Data
|
||
|
description: An abstract data type for a dataset.
|
||
|
Container:
|
||
|
name: Container
|
||
|
description: An abstract data type for a group storing collections of data and
|
||
|
metadata. Base type for all data and metadata containers.
|
||
|
SimpleMultiContainer:
|
||
|
name: SimpleMultiContainer
|
||
|
description: A simple Container for holding onto multiple containers.
|
||
|
is_a: Container
|
||
|
attributes:
|
||
|
Data:
|
||
|
name: Data
|
||
|
description: Data objects held within this SimpleMultiContainer.
|
||
|
multivalued: true
|
||
|
range: Data
|
||
|
required: false
|
||
|
Container:
|
||
|
name: Container
|
||
|
description: Container objects held within this SimpleMultiContainer.
|
||
|
multivalued: true
|
||
|
range: Container
|
||
|
required: false
|