summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/project/export_status.json
blob: 81c8815caf6f10d7b27ac2829e2b67f5196edb9b (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
{
  "type": "object",
  "allOf": [
    {
      "$ref": "identity.json"
    },
    {
      "required": [
        "export_status"
      ],
      "properties": {
        "export_status": {
          "type": "string",
          "enum": [
            "none",
            "started",
            "finished",
            "after_export_action"
          ]
        }
      }
    }
  ]
}