summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/branch.json
blob: 02389a1b9792c7fa547f506e19fd5e7086de5c7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "type": "object",
  "required": [
    "name",
    "url"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  },
  "additionalProperties": false
}