DocumentationVersion

A snapshot of the documentation of an API.

APIs.ioEngineeringPlatform

Properties

Name Type Description
version object
createdDate object
description object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-documentationversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DocumentationVersion",
  "title": "DocumentationVersion",
  "type": "object",
  "properties": {
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The version identifier of the API documentation snapshot."
        }
      ]
    },
    "createdDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date when the API documentation snapshot is created."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The description of the API documentation snapshot."
        }
      ]
    }
  },
  "description": "A snapshot of the documentation of an API."
}