mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-13 02:04:29 +00:00
sneakers-the-rat
be21325123
- split off generated subclasses into "include" files, not sure if that's good, but in any case we have them separable now. - more work on cleanly un-nesting scalar and 1D-vector data into attributes and lists, respectively - brought the pydantic generator in-repo to do a bunch of overrides
32 lines
947 B
YAML
32 lines
947 B
YAML
name: hdmf-common.base
|
|
id: hdmf-common.base
|
|
imports:
|
|
- nwb.language
|
|
- hdmf-common.base.include
|
|
- hdmf-common.base
|
|
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
|