-
Notifications
You must be signed in to change notification settings - Fork 30
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
Is this standard still maintained/current? #438
Comments
Thanks for opening the issue and for looking into ASDF. The standard is actively maintained and please let me know if you find any missing links. The I'm curious, for your use does ASDF have some benefits over jsonschema? Please feel free to go into detail and let me know if there's anything I can do to help. |
I'm going to mark this as closed as the title of the issue is addressed. Please feel free to continue to respond to this issue with details or open another issue if there are broken links. |
Hi @braingram, thanks for the swift reply. I have indeed come across #274 earlier, and left my input as well. In short, there's two types of projects I am currently working on, where ASDF sounds much closer to the type of tool I would need:
|
Thanks for the details. ASDF is pretty tied to YAML and jsonschema (draft 4) at the moment. The format relies heavily on YAML tags. If I'm understanding your potential use (which I'm not sure I am) using the ASDF schemas with non-YAML data (like JSON, TOML) would require defining something like tags for those formats. I'm not familiar with VDF, what does it stand for? The tags are used for both mapping schemas to portions of the tree and for providing information about how those portions of the tree should be deserialized by the asdf implementation. I suspect that some formats might be easier to adapt (for JSON reserving |
@acovaci ASDF was developed by astronomers to be an open exchange format for astronomical data, but it is certainly a tool you might find useful for your work. Here's an example of a package that uses ASDF to exchange welding research data https://github.com/BAMWelDX/weldx People have also used the format to store audio files and associated metadata. Much like JSON/JSON Schema and XML/XML Schema, ASDF essentially has 2 parts - (1) a defined file format that is essentially YAML with some data blocks attached, and (2) a schema which describes the specific file layout and validation tools to make sure the data that is read and written complies with schema. And of course there's software for reading and writing the files and doing validation. For standard JSON/YAML types (strings, numbers, etc) there are built in validators in the implemented ASDF schemas are essentially YAML, so architecture and programming language independent, but the reference implementation of |
Hi,
I was looking at a cross-filetype way to define a schema, and I came across this standard, that seems to solve some issues that filetype-specific standards have. And it looks promising.
But looking through the docs, I'm running across a number of missing links/issues.
Most importantly, within the Designing a new tag and schema page for the YAML Schema, The following key-value pair is mandated:
Following the link, there's no document available under that URI.
P.S. Maybe you should switch to https for it too? :)
The text was updated successfully, but these errors were encountered: