Ampersand · JSON Structure

Ampersand Api Revision Structure

Revision schema from Ampersand API

Type: object Properties: 4 Required: 4
Developer ToolsIntegrationsPlatformSaaSOAuthData SyncWebhooks

Revision is a JSON Structure definition published by Ampersand, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id specVersion createTime content

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ampersand/refs/heads/main/json-structure/ampersand-api-revision-structure.json",
  "name": "Revision",
  "description": "Revision schema from Ampersand API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The revision ID.",
      "example": "revision-id-1"
    },
    "specVersion": {
      "type": "string",
      "description": "The spec version string.",
      "example": "1.0.0"
    },
    "createTime": {
      "type": "datetime",
      "description": "The time the revision was created."
    },
    "content": {
      "$ref": "../manifest/manifest.yaml#/components/schemas/Integration"
    }
  },
  "required": [
    "content",
    "createTime",
    "id",
    "specVersion"
  ]
}