Skip to content

Instantly share code, notes, and snippets.

@gin0606
Created July 8, 2015 12:28
Show Gist options
  • Save gin0606/e0ab32fa827a2b2afaa2 to your computer and use it in GitHub Desktop.
Save gin0606/e0ab32fa827a2b2afaa2 to your computer and use it in GitHub Desktop.
{
"$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"
]
}
}
}
@gin0606
Copy link
Author

gin0606 commented Jul 8, 2015

これが

[
  {"result": true}
]

とマッチしないって言われる

@gin0606
Copy link
Author

gin0606 commented Jul 8, 2015

{
  "$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