Created
July 8, 2015 12:28
-
-
Save gin0606/e0ab32fa827a2b2afaa2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"id": "pings", | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/ping" | |
}, | |
"definitions": { | |
"ping": { | |
"id": "ping", | |
"type": "object", | |
"properties": { | |
"result": { | |
"type": "boolean" | |
} | |
}, | |
"required": [ | |
"result" | |
] | |
} | |
} | |
} |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "pings",
"type": "array",
"items": {
"properties": {
"$ref": "#/definitions/ping"
}
},
"definitions": {
"ping": {
"id": "ping",
"type": "object",
"properties": {
"result": {
"type": "boolean"
}
},
"required": [
"result"
]
}
}
}
これでいけた
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
これが
とマッチしないって言われる