-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For structured data add ability to skip schemas matching criterion.
Slightly different than filtering for unstructured that (which is done during transformation). It's only possible to filter out whole schema family, but not part of the family. That's because we can't have 'holes' in schema family when building typed entities. Otherwise we may end up with invalid and incompatible merged schema model.
- Loading branch information
Showing
4 changed files
with
448 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...common/src/test/resources/iglu-client-embedded/schemas/myvendor/myschema/jsonschema/9-0-0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", | ||
"self": { | ||
"vendor": "myvendor", | ||
"name": "myschema", | ||
"format": "jsonschema", | ||
"version": "9-0-0" | ||
}, | ||
"type": "object", | ||
"properties": { | ||
"col_z": {"type": "string"} | ||
}, | ||
"required": ["col_z"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.