-
Notifications
You must be signed in to change notification settings - Fork 233
Open
Description
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"items": {
"anyOf": [
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"id": {
"type": "integer"
}
},
"required": [
"name",
"id"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"key": {
"type": "integer"
},
"age": {
"type": "integer"
}
},
"required": [
"key",
"age"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"card": {
"type": "string"
}
},
"required": [
"card"
],
"additionalProperties": false
}
],
"type": "string"
}
}
这样的好像没法可视化
Metadata
Metadata
Assignees
Labels
No labels