我的定義如下。它根本不驗證my_field_type_1
。可能是什麼原因?我正在使用jsonschema的python模塊。爲什麼jsonschema沒有從模式定義下面的定義?
definitions:
TestRouteSchema1:
required:
- my_field
properties:
my_field:
type: object
my_field_type_1:
$ref: "#/definitions/MyFieldType1"
my_field_type_2:
$ref: "#/definitions/MyFieldType2"
該架構絕對不對,但我不知道你在做什麼。你可以發表你想要驗證的數據的幾個例子嗎?至少有一個應該驗證,另一個不應該驗證。 – Jason