-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IJCK R2C12 #29
Comments
Ref: From Kyle:
|
I actually don't think this is possible, unless the blocks were named differently. That is,
is prohibited AFAIK (or perhaps the keys would be merged, it might depend on the YAML library implementation). However, if we allow any property in the |
See also pr-omethe-us/PyKED#67 |
I think this would work: common-properties:
compositionA: &compA
- ...
compositionB: &compB
- ... since the data points would have composition: *compA ... right? |
But our schema would reject the keys |
hmm... do we look at what's in |
I actually don't know... I know that we have a |
OK, so I did a quick test of this. We do check the specific keys that are allowed in the That said, I'm not sure if I like the idea of allowing multiple specifications of the same property in the So my suggestion is that we enforce a cap on the number of allowed data points (and disallow using multiple specifications of a property in Thoughts? |
We definitely want to encourage people using a single file for a single series, so having multiple common If we only allow a single version of a field to be declared in |
Ok so you're saying not to allow multiple values for a property in With the current implementation, there's no need to cap the number of times a property is specified because it has to have the name we define, and multiple definitions will either merge, overwrite each other, or raise an error (I'm not sure which). However, the current implementation is not easy to extend with new properties since each one has to be specified in the common-properties section individually. So we need a new way to do the common-properties 😁 |
So are you saying remove the limitation of what can be stored in Also, I don't see the benefit of restricting the number of data points per file—practically this will be limited, so why bother making an artificial upper limit? |
|
Basically say "Not right now, stay tuned"
I think our response here is good enough. |
The text was updated successfully, but these errors were encountered: