Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
498 views
in Technique[技术] by (71.8m points)

jsonschema - How to set one schema for n-1 elements and another for the nth element

For example, look at the schema:

    "type": "array",
    "items":  {
        "oneOf":[
            {"type": "number"},
            {"type": "string"}
        ]
    }
    
}

The schema would then allow a list of numbers and the last element would be a string. and the string can be optional.

For example:

{ "list_of_items" : [ 3, 4, 5, "hello"] } is allowed.

{ "list_of_items" : [ 3, "hello" , 4, 5 ] } Is not allowed because text is only allowed on the last element.

From reading the documentation. I see how to do a constant amount of numbers and a text element. Or all numbers,

But I don't see how to create n-1 numbers and text for the nth.

It could be that is is not something json-schema can do.

Thanks.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...