mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-13 02:04:29 +00:00
sneakers-the-rat
4faaa8efe8
or at least all the semantics are present. it's not pretty by any stretch of the imagination
30 lines
901 B
YAML
30 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
|