summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/snippets.json
blob: 652999011282329ea08229c2bd21e841f6b6d867 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
  "type": "array",
  "items": {
    "type": "object",
    "properties" : {
      "id": { "type": "integer" },
      "project_id": { "type": ["integer", "null"] },
      "title": { "type": "string" },
      "file_name": { "type": ["string", "null"] },
      "files" : {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "path": { "type": "string" },
            "raw_url": { "type": "string" }
          }
        }
      },
      "description": { "type": ["string", "null"] },
      "visibility": { "type": "string" },
      "web_url": { "type": "string" },
      "raw_url": { "type": "string" },
      "created_at": { "type": "string", "format": "date-time" },
      "updated_at": { "type": "string", "format": "date-time" },
      "author": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "username": { "type": "string" },
          "id": { "type": "integer" },
          "state": { "type": "string" },
          "avatar_url": { "type": "uri" },
          "web_url": { "type": "uri" }
        },
        "required" : [
          "id", "name", "username", "state", "avatar_url", "web_url"
        ]
      }
    },
    "required": [
      "id", "title", "file_name", "description", "web_url",
      "created_at", "updated_at", "author", "raw_url"
    ],
    "additionalProperties": false
  }
}