apiinfo

GetApiInfoResponseInfo Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "stage": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "deployedOn": {
      "type": "string"
    },
    "branch": {
      "type": "string"
    },
    "commitHash": {
      "type": "string"
    },
    "commitedOn": {
      "type": "string"
    },
    "commitMsg": {
      "type": "string"
    },
    "commitAuthor": {
      "type": "string"
    }
  },
  "required": [
    "stage",
    "version",
    "deployedOn",
    "branch",
    "commitHash",
    "commitedOn",
    "commitMsg",
    "commitAuthor"
  ]
}