-
Notifications
You must be signed in to change notification settings - Fork 56
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
json schema draft 04 support #17
Comments
I do plan to add draft 4 support, and I really would like to say "within a I'll let you know once I get cracking; I'd sure love to have somebody On Fri, Jan 31, 2014 at 4:34 AM, Steffen Jaeckel
|
Have you made any progress on this? Looking at using it as a way to bring draft 4 support to perl. The author of the existing perl module will not be adding draft 4 support. |
Draft 4 support is still in-progress, but usable. There is a lot of overlap with v3, which all works, and several v4-specific features are supported too. Supporting new json-schema hasn't had a lot of priority, but I've put in a few things and taken several patches, which I'm always thrilled to do. ;^) In particular, the hyper-schema and referenced-document stuff in v4 has not yet been touched yet in WJElement, I'd say that's its biggest (but not only) draft-4 blind spot. It would be really fun to see this work its way into Perl. Would you like to tackle any of the remaining v4 implementation? I remain confident I'll get around to doing it myself, but I can't make any timeline promises. I will say this though: we'll be presenting some Netmail projects including WJElement at a conference in about a month, so my motivation to try and sneak in some extra work on it is in a good place right now. :^) I'll try to do a better job of keeping this thread updated as more draft-4 schema features are supported. later, -- Sent from my HP TouchPadOn Jun 22, 2015 3:49 AM, Ben Hutton [email protected] wrote: Have you made any progress on this? Looking at using it as a way to bring draft 4 support to perl. The author of the existing perl module will not be adding draft 4 support. — |
Hey Owen... Slight problem in that I don't know any C. I've had a bit of a chat with a colleague and I think we're most likely going to tackle updating the Perl module to complete draft 3 and then add draft 4 support, as we find time. Myself and a few others have been vocal recently about json-schema and how we can get things going again to push for draft-5. It seems there's some leadership issues, so seeing if we can re-instate some previous devs on the project and get it moving again. Also diving up the work into sections. There may be a final RFC yet! =] |
No problem at all. We'll all keep doing what we can do as we have I confess I have more or less dropped off the scene after initially An RFC would be very exciting, and would of course be great motivation On 6/22/15, Ben Hutton [email protected] wrote:
|
Indeed! |
Darft-04 is fully supported by https://github.com/petehug/wjelement-cpp which is based on WJELEMENT. |
Nice work! I notice your schema stuff is a complete re-implementation rather than a patch we could pull back into WJE. WJElement's draft 4 support has continued to improve, though your implementation is more complete. Having that out there as a reference will be helpful when I do find the time to fill in the cracks of our own schema 4 support. Micah and I are not OO people, but we're glad to see you've opened up WJElement to a world of C++ developers. Again, nice work! |
Thanks. Yes, I decided to totally re-implement Schema-04 support.I wanted bindings between verified elements and the relevant schema element(s). This makes it possible to build form generators. It's been a while since I branched WJElement and I primarily did so because it didn't differentiate between rational and integral numbers. Another area of concern is that the addition of array and object members increases proportionally with the number of elements added. Have improvements been made in these areas over the past 15 months? |
WJElement hasn't changed in the ways you've branched for. We've had some ideas kicking around for optimized array access but nothing's in yet. We haven't looked into rational numbers - if anything it feels like we have too many ways to deal with number data already. :^) I'm curious to know, what is your use case for which WJE's numbers don't cut it? |
IMHO. the fact that WJElement sequentially accesses array and object collections is a real concern. I'm using my library mainly to implement web services and at times, collections can become monstrous. The sequential access to collections makes lookups so expensive I'm considering adding direct access to my WJElement branch. WRT handling integers, consider these JSON examples:
If I parse these using WJElement, the type of each "value" is WJR_TYPE_NUMBER. In JSON Schema Draft 04 (JSD4), this is the correct type for 1, 2 and 3 but not 4. I'm not sure how you implemented JSD4, but I simply let WJElement parse the document before my schema validators spring into action. IOW, my validators only start working if the document is valid JSON (in fact, another small change I made to WJElement in my branch was that any JSON parsing error throws an exception). So if "value" is declared an "integer" in the schema, only sample 4 should validate. Without the addition of WJR_TYPE_INTEGER, the "value" validator would have to swallow samples 2 and 3 and thereby fail the JSD4 specs. The addition of WJR_TYPE_INTEGER ensures that the type of "value" in sample 4 is WJR_TYPE_INTEGER while all others are WJR_TYPE_NUMBER. |
On 10/01/15 13:55, Pete Hug wrote:
There are pointers to elements exposed on the WJElement. On large arrays For example, the normal way to access members of an array (which can be vs using the pointers, which is faster:
Each WJElement has a next, prev, parent and child pointer. You should For an array it would be even faster to include an array of pointers I've added this to my personal todo list (although I wouldn't complain
For backwards compatibility I would probably leave the WJR_TYPE_NUMBER
If you'd like to share that patch I'd love to see it. I've been planning
|
WJE does parse before validating schema, but doesn't do validation on There may yet be bugs in number/integer validation (particularly v4, On 10/1/15, Pete Hug [email protected] wrote:
|
I realise that and incidentally, this is what my WJPP::Node::iterator uses. The iterator is super lightweight and very efficient. But efficient traversal is only one requirement for indexed collection. Equally important is efficient random access and that is where the problem is. I found Troy D. Hanson uthash library. It is a header only C library (macro based). It ships (amongst other things) uthash.h and utarray.h. I've played a little with it and can say Troy has done a fine job: it is blindingly fast. The only thing I didn't like very much was that the hash collection didn't order elements on insert, but it does provide high speed sort ops. I haven't played with utarray.h yet. I'm not a big fan of macros, but I guess if the inevitable code replication only occurs in the WJElement library it wouldn't be a big worry. However, changes to WJElement would be significant. If I find a bit of time I'll give it a shot.
I can understand that sentiment and it probably isn't wrong. There is really a bit of a problem between JSD4 and JSON itself in that the JSON specifications don't mention an integer type but JSD4 does. I don't have an easy answer but doubt the what-the-original-value-was flag will cut the mustard. All my changes are wrapped in compiler directives #ifdef WJE_DISTINGUISH_INTEGER_TYPE so it requires explicit enabling to take effect. I doubt there is anything else that can be done easily to ensure backward compatibility.
The WJElement version I modified (branh wjelement++) was branched a while back, but with the right tools you should have no difficulty seeing what I'd done. |
I will look at the uthash library. You are right that random access is On 10/01/15 23:23, Pete Hug wrote:
|
Note the spec is up to draft-07, with draft-08 on the way. Although there wasn't a draft-05, it goes from draft-04 to draft-06 in the meta-schema numbering. |
looks like wje has some catching up to do. :^) i actually don't
expect the changes would be terribly major, but we haven't internally
been using schema validation enough in our written-in-C services to
have kept up with this.
have we got anybody who's in a tough spot schema-support-wise?
anybody interested in working on patches? i'm happy to do it myself,
i just need the time to do so (it happens, sometimes) and some manner
of motivation (like somebody who really needs it ;^)
…On 5/22/18, Henry Andrews ***@***.***> wrote:
Note the spec is up to draft-07, with draft-08 on the way. Although there
wasn't a draft-05, it goes from draft-04 to draft-06 in the [meta-schema
numbering](http://json-schema.org/specification-links.html).
--
You are receiving this because you were assigned.
Reply to this email directly or view it on GitHub:
#17 (comment)
|
We use wje almost entirely for the schema validation, but I'm not currently
aware of a need to update to the latest draft yet. I'm on vacation now and
will have to look into it when I'm back in the office, to see what the new
draft differences are.
On Tue, May 22, 2018, 5:19 PM Owen Swerkstrom <[email protected]>
wrote:
… looks like wje has some catching up to do. :^) i actually don't
expect the changes would be terribly major, but we haven't internally
been using schema validation enough in our written-in-C services to
have kept up with this.
have we got anybody who's in a tough spot schema-support-wise?
anybody interested in working on patches? i'm happy to do it myself,
i just need the time to do so (it happens, sometimes) and some manner
of motivation (like somebody who really needs it ;^)
On 5/22/18, Henry Andrews ***@***.***> wrote:
> Note the spec is up to draft-07, with draft-08 on the way. Although there
> wasn't a draft-05, it goes from draft-04 to draft-06 in the [meta-schema
> numbering](http://json-schema.org/specification-links.html).
>
> --
> You are receiving this because you were assigned.
> Reply to this email directly or view it on GitHub:
>
#17 (comment)
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#17 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AA7TdMU9JUaIdFG7tzcnR5f0fWOLKlSuks5t1CxrgaJpZM4BeGiF>
.
|
@penduin I totally get not wanting to update unless there's a clear need. For now, I can add you to implementation list as "intending to update", which might get you some attention and volunteers (EDIT: I had originally said I'd add to the old draft-04 list, but if you're open to patches we should make you more visible) For an overview of changes, you can look at our guidelines for migrating from older drafts. Note that it is totally fine to offer core/validation support without hyper-schema support. This is why they are now separate specifications. Hyper-Schema changed dramatically between draft-04 and draft-07 in response to the limited adoption and widespread confusion around draft-04 hyper-schema. I would not recommend implementing Hyper-Schema earlier than draft-07 at this point. In terms of draft-08 things that might affect how you want to move forward, particularly regarding
|
wow, thank you! that is a super-helpful collection of information and
links. when the day comes that i (or anybody else of course!) dig in
and modernize wje's schema support, that message is the clear starting
point. :^)
it's especially good to know that hyper-schema is a separate, optional
thing now. i remember being one of the confused parties early on.
:^)
in any case thank you very much for all this information. i can't say
when, but it will be put to good use.
…On 5/22/18, Henry Andrews ***@***.***> wrote:
@penduin I totally get not wanting to update unless there's a clear need.
For now, I can add you to our draft-04 and older implementation list (which
is a little less prominent than draft-06 and newer- for validation, draft-07
is a minor update) which might attract some attention and people willing to
help.
For an overview of changes, you can look at our guidelines for [migrating
from older
drafts](http://json-schema.org/specification.html#migrating-from-older-drafts).
Note that it is totally fine to offer core/validation support without
hyper-schema support. This is why they are now separate specifications.
Hyper-Schema changed dramatically between draft-04 and draft-07 in response
to the limited adoption and widespread confusion around draft-04
hyper-schema. I would not recommend implementing Hyper-Schema earlier than
draft-07 at this point.
In terms of
[draft-08](https://github.com/json-schema-org/json-schema-spec/milestone/6)
things that might affect how you want to move forward, particularly
regarding `$ref`, the major accepted proposals are as follows. Some of
these are really deep in the guts of how JSON Schema works so if they don't
make sense, you can ask on the [slack
channel](https://join.slack.com/t/json-schema/shared_invite/enQtMjk1NDcyNDI2NTAwLTcyYmYwMjdmMmUxNzZjYzIxNGU2YjdkNzdlOGZiNjIwNDI2M2Y3NmRkYjA4YmMwODMwYjgyOTFlNWZjZjAyNjg),
or just wait for the spec which should be more clear than the GitHub
discussions:
* json-schema-org/json-schema-spec#523 (allowing keywords alongside `$ref`
by changing the conceptual model for `$ref` from "as if it were replaced by
the reference target" to "has identical results as evaluating the reference
target on its own")
* json-schema-org/json-schema-spec#396 recommended result and error formats
* json-schema-org/json-schema-spec#530 ***optional*** formalized annotation
(e.g. `title`, `default`, `examples`) collection process
* json-schema-org/json-schema-spec#556 ***optional**, probably*
(`unevaluatedProperties`, which does what a lot of people _think_ happens
when you combine `additionalProperties` and `*Of` keywords)
* splitting `dependencies` into two keywords for the two separate behaviors
that it currently offers (already committed to master, although we may
further tweak the keyword names before we're done`
--
You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub:
#17 (comment)
|
You're welcome! I'm trying to do more community outreach to get things moving again now that the current spec team has a track record of delivering regular updates towards finalizing the spec. |
a "final" spec will certainly be welcome. putting off schema updates has
only been easier with a moving target, and will only be harder with a
stable one. :^)
later,
-Owen
…On Wed, May 23, 2018, 18:25 Henry Andrews ***@***.***> wrote:
You're welcome! I'm trying to do more community outreach to get things
moving again now that the current spec team has a track record of
delivering regular updates towards finalizing the spec.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#17 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABJq01019BeOAworE7UwYxiHM-5jvOxwks5t1e_QgaJpZM4BeGiF>
.
|
@penduin It probably won't be finalized soon, although I am hoping that draft-08 will be the last really big update that affects things broadly. Part of draft-08 is a formal notion of different vocabularies (which exists informally starting with draft-04 with validation and hyper-schema as separate specifications). That way we can fence off the core and validation parts and get those into the standardization process. draft-06 and -07 are starting to get implemented and used fairly widely, and the list of incompatibilities with draft-04 is quite small. They are a good way to get to a "modern" base without worrying about the more substantial draft-08 changes. Then you can wait until whatever tweaks we get to the draft-08 changes stabilize (I'm sure we'll get some feedback requiring a draft-09). I expect draft-06/-07 to be the new plateau of support for the near term, with a bit more of a gap before folks start adopting draft-08 or later. So I encourage getting at least to draft-06 for now. But unlike what happened after draft-04, we're still actively moving forward, and you can keep an eye on draft-08+ for when the new stuff settles. |
Draft This is a major update which we hope is the stable base for standardization. While the number of outright incompatibilities is fairly small, this draft includes a lot of work to make ambiguous features more clear, improve interoperability, and allow for formal interoperable extensions. Note that the OpenAPI Specification 3.1 is slated to move to this draft, which will unify the two larges branches of JSON Schema work (regular JSON Schema and OAS-variant JSON Schema). I'm encouraging folks to implement |
Very cool! I have had very little time to dig back in and revisit schema
lately (or hack on WJE at all for that matter) but I am interested in
supporting the latest draft, and any other revisions people would find
helpful.
…-Owen
On Oct 24, 2019 13:56, "Henry Andrews" <[email protected]> wrote:
Draft 2019-09 (formerly known as draft-08) has been published
<http://json-schema.org/specification.html>.
This is a major update which we hope is the stable base for
standardization. While the number of outright incompatibilities is fairly
small, this draft includes a lot of work to make ambiguous features more
clear, improve interoperability, and allow for formal interoperable
extensions.
Note that the OpenAPI Specification 3.1 is slated to move to this draft,
which will unify the two larges branches of JSON Schema work (regular JSON
Schema and OAS-variant JSON Schema).
I'm encouraging folks to implement 2019-09. If you also want to implement
draft-06 and draft-07 along the way, that's also great. If you want to
retain the ability to handle draft-04 that's great. But 2019-09 is the
primary focus going forward. We hope that it is refined through feedback,
but not dramatically changed before standardization.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#17?email_source=notifications&email_token=AAJGVUYHYNICHMFUL5O4R5TQQHVUNA5CNFSM4ALYNCC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOECGCIXA#issuecomment-546055260>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJGVU55E3BT3MXZOCBFDOLQQHVUNANCNFSM4ALYNCCQ>
.
|
Ultimately, we worked with OpenAPI to publish our draft 2020-12 in conjunction with their OAS 3.1. With OpenAPI in alignment, 2020-12 is definitely the most important draft now. For an intermediate draft, draft-07 is probably the most popular these days (it is the most broadly supported among implementations that have been updated in the last few years). I wouldn't bother with draft-06 (although it's just a subset of draft-07) or 2019-09 (which had some problems fixed in 2020-12) unless you just want to have them all for some reason. |
Hi
I'd love to use this library and I'm interested if there are concrete plans when draft 04 will be supported.
Otherwise I'll go on based on draft 03
Thanks in advance.
Steffen
The text was updated successfully, but these errors were encountered: