summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/error_tracking/project.json
blob: f6d611133c7f57c246e75fb4b148c7b3091d6fe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "type": "object",
  "required" : [
    "id",
    "slug",
    "organization_slug",
    "name"
  ],
  "properties" : {
    "id": { "type": "string"},
    "name": { "type": "string" },
    "slug": { "type": "string" },
    "status": { "type": "string" },
    "organization_name": { "type": "string" },
    "organization_slug": { "type": "string" },
    "organization_id": { "type": "string" }
  },
  "additionalProperties": false
}