jpmckinney/pupa-ruby

View on GitHub
schemas/popolo/link.json

Summary

Maintainability
Test Coverage
{
  "$schema": "http://json-schema.org/draft-03/schema#",
  "id": "link.json#",
  "title": "Link",
  "description": "A URL",
  "type": "object",
  "properties": {
    "url": {
      "description": "A URL",
      "type": "string",
      "format": "uri",
      "required": true
    },
    "note": {
      "description": "A note, e.g. 'Wikipedia page'",
      "type": ["string", "null"]
    }
  }
}