Welcome to mirror list, hosted at ThFree Co, Russian Federation.

import_failure_external_identifiers.json « json_schemas « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19d4e51ad219e5b75b0c77c3774e5258c5215b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "Import failure external identifiers",
  "type": "object",
  "maxProperties": 4,
  "patternProperties": {
    ".*": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        }
      ]
    }
  }
}