summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/project/export_status.json
blob: d24a6f93f4bb6a95d4158ae3458b2ac3b7f91252 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "type": "object",
  "allOf": [
    { "$ref": "identity.json" },
    {
      "required": [
        "export_status"
      ],
      "properties": {
        "export_status": {
          "type": "string",
          "enum": ["none", "started", "finished"]
        }
      }
    }
  ]
}