Skip to content

Commit

Permalink
Add com.snowplowanalytics.iglu/client_error/jsonschema/1-0-0 (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
chuwy committed Apr 9, 2019
1 parent 1fee658 commit cddfe79
Showing 1 changed file with 86 additions and 0 deletions.
86 changes: 86 additions & 0 deletions schemas/com.snowplowanalytics.iglu/client_error/jsonschema/1-0-0
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"description": "Possible unsuccessful result produced by Iglu Client",
"self": {
"vendor": "com.snowplowanalytics.iglu",
"name": "client_error",
"format": "jsonschema",
"version": "1-0-0"
},
"type": "object",
"anyOf": [
{
"properties": {
"error": {
"enum": ["ResolutionError"]
},
"lookupHistory": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"repository": {
"type": "string"
},
"errors": {
"type": "array",
"items": {
"properties": {
"error": {
"enum": ["ClientFailure", "RepoFailure", "NotFound"]
},
"message": {
"type": "string"
}
},
"required": ["error"]
}
},
"attempts": {
"type": "integer",
"minimum": 0
},
"fatal": {
"type": "boolean"
}
},
"required": ["repository", "errors", "attempts", "fatal"],
"additionalProperties": false
}
}
},
"required": ["error", "lookupHistory"],
"additionalProperties": false
},
{
"properties": {
"error": {
"enum": ["ValidationError"]
},
"dataReports": {
"type": "array",
"minLength": 1,
"items": {
"properties": {
"message": {
"type": "string"
},
"path": {
"type": ["string", "null"]
},
"keyword": {
"type": ["string", "null"]
},
"target": {
"type": "array"
}
},
"required": ["message", "path", "keyword", "target"],
"additionalProperties": false
}
}
}
}
]
}

0 comments on commit cddfe79

Please sign in to comment.