mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-10 00:34: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
20 lines
656 B
YAML
20 lines
656 B
YAML
name: hdmf-experimental.experimental
|
|
id: hdmf-experimental.experimental
|
|
imports:
|
|
- hdmf-common.table
|
|
- nwb.language
|
|
- hdmf-experimental.experimental.include
|
|
- hdmf-experimental.experimental
|
|
default_prefix: hdmf-experimental.experimental/
|
|
classes:
|
|
EnumData:
|
|
name: EnumData
|
|
description: Data that come from a fixed set of values. A data value of i corresponds
|
|
to the i-th value in the VectorData referenced by the 'elements' attribute.
|
|
is_a: VectorData
|
|
attributes:
|
|
elements:
|
|
name: elements
|
|
description: Reference to the VectorData object that contains the enumerable
|
|
elements
|
|
range: VectorData
|