{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "description": "Describes the Example API base resource",
  "title": "Example API base resource",
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "type": "object",
      "description": "Describes an UUID id object",
      "title": "UUID ID",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "description": "UUID",
          "type": "string",
          "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
        }
      }
    }
  }
}
