- From: Benjamin Young <byoung@bigbluehat.com>
- Date: Wed, 8 Jun 2016 19:25:38 +0000
- To: Discussions about Test Development <testdev@lists.spec-ops.io>
- CC: W3C Public Annotation List <public-annotation@w3.org>
- Message-ID: <CY1PR0601MB1643BB9EFBBABE4F5656EE4DB25E0@CY1PR0601MB1643.namprd06.prod.outlook.>
Hey Tim, Sorry for the wait. Shane and I just chatted about this $ref thing and I think we can make it work in WPT. It’s mostly a question of what the relative path expectations of `ajv` tucked inside of WPT might be. It looks like we may also be able to hack around the defaults (if need be) using wptserve’s Pipes system: https://wptserve.readthedocs.io/en/latest/pipes.html What we’re thinking right now is taking the JSON objects you now have in the `definitions` object (which you pasted below) and putting those inside of a `definitions` folder and then working through the relative path details with WPT. Would that serve as a solution for what you’re attempting here? Cheers! Benjamin From: Testdev [mailto:testdev-bounces@lists.spec-ops.io] On Behalf Of Shane McCarron Sent: Wednesday, June 8, 2016 10:46 AM To: Discussions about Test Development <testdev@lists.spec-ops.io> Cc: W3C Public Annotation List <public-annotation@w3.org> Subject: Re: [Testdev] [model-test] referencing external schema Did you get any traction on this Tim? On Thu, Jun 2, 2016 at 10:19 AM, Timothy Cole <t-cole3@illinois.edu<mailto:t-cole3@illinois.edu>> wrote: We are currently developing json schemas to help test for implementations of SpecificResource features of the data model. I've uploaded 4 of the schemas currently being developed to https://github.com/w3c/web-annotation-tests/tree/master/SpecificResource (these are first drafts, not quite ready, still being debugged and refined). All 4 schemas share a definitions section containing 2 sub-schemas (appended below). These are easy to reference internally where needed, but it would be even more convenient to reference them as external schemas. This should be possible using $ref, but I've had difficulties getting this approach to work with my local ajv instance, especially with regard to relative file locations. Is anyone familiar enough with how $ref works within the Web Platform Testing framework's implementation of ajv to advise? Below is the current way the sub-schemas are embedded in each primary schema. Obviously this works, but it means repeating the same sub-schemas in multiple files, which is obviously less efficient than if these sub-schemas could be referenced as individual files. Thanks, Tim Cole { "definitions": { "SpecificResource": { "type": "object", "properties": { "selector": {}, "state": {}, "styleClass": {}, "renderedVia": {}, "scope": {}, "purpose": {} }, "anyOf": [ {"required": ["selector"]}, {"required": ["state"]}, {"required": ["styleClass"]}, {"required": ["renderedVia"]}, {"required": ["scope"]}, { "required": ["purpose"], "not": {"required": ["value"]} } ] }, "SpecificResType" : { "type": "object", "properties": { "type": { "oneOf": [ {"type": "string", "enum": ["SpecificResource"]}, {"type": "array", "items": [{ "type": "string", "enum": ["SpecificResource"] }] } ] } }, "required": ["type"] } } } _______________________________________________ Testdev mailing list Testdev@lists.spec-ops.io<mailto:Testdev@lists.spec-ops.io> http://lists.spec-ops.io/listinfo.cgi/testdev-spec-ops.io -- Shane McCarron Projects Manager, Spec-Ops
Received on Wednesday, 8 June 2016 19:26:10 UTC