Skip to content

Commit

Permalink
Add com.snowplowanalytics.iglu/client_error/jsonschema/1-0-0 (close #927
Browse files Browse the repository at this point in the history
)
  • Loading branch information
chuwy committed Apr 10, 2019
1 parent 1fee658 commit cdd9ce1
Showing 1 changed file with 101 additions and 0 deletions.
101 changes: 101 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,101 @@
{
"$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",
"required": ["error"],
"anyOf": [
{
"description": "Problem during schema resolution, missing schema or internal error",
"properties": {
"error": {
"enum": ["ResolutionError"]
},
"lookupHistory": {
"description": "Set of all traversed repositories with their failures",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"repository": {
"description": "Repository name from resolver config",
"type": "string"
},
"errors": {
"type": "array",
"items": {
"properties": {
"error": {
"enum": ["ClientFailure", "RepoFailure", "NotFound"]
},
"message": {
"type": "string"
}
},
"required": ["error"]
}
},
"attempts": {
"description": "Number of attempts this repository has been queried",
"type": "integer",
"minimum": 0
},
"fatal": {
"type": "boolean"
}
},
"required": ["repository", "errors", "attempts"],
"additionalProperties": false
}
}
},
"required": ["error", "lookupHistory"],
"additionalProperties": false
},
{
"description": "Data is invalid against its schema",
"properties": {
"error": {
"enum": ["ValidationError"]
},
"dataReports": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"description": "List of reports",
"properties": {
"message": {
"description": "Human-readable error message",
"type": "string"
},
"path": {
"description": "JSON Path to problematic property in instance",
"type": ["string", "null"]
},
"keyword": {
"description": "JSON Schema keyword caused this report",
"type": ["string", "null"]
},
"targets": {
"description": "List of properties affected in instance",
"type": "array",
"items": [
"type": "string"
]
}
},
"required": ["message", "path", "keyword", "targets"],
"additionalProperties": false
}
}
}
}
]
}

0 comments on commit cdd9ce1

Please sign in to comment.