Gist History

Gist History

APIs.ioEngineeringPlatform

Properties

Name Type Description
user object
version string
committed_at string
change_status object
url string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-gist-history-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/gist-history",
  "title": "Gist History",
  "description": "Gist History",
  "type": "object",
  "properties": {
    "user": {
      "$ref": "#/components/schemas/nullable-simple-user"
    },
    "version": {
      "type": "string"
    },
    "committed_at": {
      "type": "string",
      "format": "date-time"
    },
    "change_status": {
      "type": "object",
      "properties": {
        "total": {
          "type": "integer"
        },
        "additions": {
          "type": "integer"
        },
        "deletions": {
          "type": "integer"
        }
      }
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  }
}