GitHub · Schema

validation-error-simple

Validation Error Simple

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
message string
documentation_url string
errors array
View JSON Schema on GitHub

JSON Schema

github-organizations-validation-error-simple-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-organizations-validation-error-simple-schema.json",
  "title": "validation-error-simple",
  "description": "Validation Error Simple",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "example": "Example body text"
    },
    "documentation_url": {
      "type": "string",
      "example": "https://api.github.com/repos/octocat/Hello-World"
    },
    "errors": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "message",
    "documentation_url"
  ]
}