Giter Club home page Giter Club logo

Comments (2)

santhosh-tekuri avatar santhosh-tekuri commented on May 15, 2024 1

use allOf instead of oneOf in your schema, then it works.

from jsonschema.

nerdoftech avatar nerdoftech commented on May 15, 2024

I have also tried this:

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "actions": {
      "type":"object",
      "minProperties": 1,
      "patternProperties": {
        ".*":{
          "type":"object",
          "required": ["action"],
          "properties": {
            "action": {
              "type": "string"
            },
            "description": {
              "type": "string"
            }
          },
          "oneOf": [
            {
              "if": {
                "properties": { "action": { "const": "jump" } }
              },
              "then": {
                "properties": {
                  "how_high": { "type":"string"}
                },
                "required": ["how_high"]
              }
            },
            {
              "if": {
                "properties": { "action": { "const": "sit" } }
              },
              "then": {
                "required": ["where"],
                "properties": {
                  "where":{ "type":"string" }
                }
              }
            }
          ]
        }
      }
    }
  }
}

But the error is very similar:

I[#/actions] S[#/properties/actions] validation failed
  I[#/actions/missing_action] S[#/properties/actions/patternProperties/.%2A] validation failed
    I[#/actions/missing_action] S[#/properties/actions/patternProperties/.%2A/oneOf] oneOf failed
      I[#/actions/missing_action] S[#/properties/actions/patternProperties/.%2A/oneOf/0/then] if-then failed
        I[#/actions/missing_action] S[#/properties/actions/patternProperties/.%2A/oneOf/0/then/required] missing properties: "how_high"
      I[#/actions/missing_action] S[#/properties/actions/patternProperties/.%2A/oneOf/1/then] if-then failed
        I[#/actions/missing_action] S[#/properties/actions/patternProperties/.%2A/oneOf/1/then/required] missing properties: "where"
    I[#/actions/missing_action] S[#/properties/actions/patternProperties/.%2A/required] missing properties: "action"
  I[#/actions/sitdown] S[#/properties/actions/patternProperties/.%2A/oneOf] valid against schemas at indexes 0 and 1
  I[#/actions/jump_up1] S[#/properties/actions/patternProperties/.%2A/oneOf] valid against schemas at indexes 0 and 1

from jsonschema.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.