summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/snippets.json
blob: e37e9704649967f7a937e6d41d0e3ecd70054889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "type": "array",
  "items": {
    "type": "object",
    "properties" : {
      "id": { "type": "integer" },
      "project_id": { "type": ["integer", "null"] },
      "title": { "type": "string" },
      "file_name": { "type": ["string", "null"] },
      "description": { "type": ["string", "null"] },
      "web_url": { "type": "string" },
      "created_at": { "type": "date" },
      "updated_at": { "type": "date" },
      "author": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "username": { "type": "string" },
          "id": { "type": "integer" },
          "state": { "type": "string" },
          "avatar_url": { "type": "uri" },
          "web_url": { "type": "uri" }
        },
        "additionalProperties": false
      }
    },
    "required": [
      "id", "title", "file_name", "description", "web_url",
      "created_at", "updated_at", "author"
    ],
    "additionalProperties": false
  }
}