Meet two JSON Schemas

Meet returns the schema accepted by both inputs.

Use meet when you want the most specific schema that still satisfies both definitions.

Enter two schemas and inspect the single schema returned by the library.

Schema A, Schema B
Meet
Output schema
{ "type": "integer", "minimum": 0, "maximum": 10 }
{ "type": "integer", "minimum": 5, "maximum": 15 }
How it works

Choose how the library should behave when one or both schemas are missing x-concept.

{ "x_not_defined_y_defined": true, "x_defined_y_not_defined": true, "x_not_defined_y_not_defined": true }
What it means

Use an ontology IRI or paste Turtle directly when the schema concepts should be compared semantically.

{"ontology": "https://ci.mines-stetienne.fr/semantic-jsonsubschema/example"}