Ampersand · Schema

HydratedRevision

HydratedRevision schema from Ampersand API

Developer ToolsIntegrationsPlatformSaaSOAuthData SyncWebhooks

Properties

Name Type Description
id string The revision ID.
specVersion string The spec version string.
createTime string The time the revision was created.
content object
View JSON Schema on GitHub

JSON Schema

ampersand-api-hydrated-revision-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ampersand/refs/heads/main/json-schema/ampersand-api-hydrated-revision-schema.json",
  "title": "HydratedRevision",
  "description": "HydratedRevision schema from Ampersand API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The revision ID.",
      "example": "f0e1d2c3-b4a5-6789-0abc-def123456789"
    },
    "specVersion": {
      "type": "string",
      "description": "The spec version string.",
      "example": "1.0.0"
    },
    "createTime": {
      "type": "string",
      "description": "The time the revision was created.",
      "format": "date-time"
    },
    "content": {
      "$ref": "../manifest/manifest.yaml#/components/schemas/HydratedIntegration"
    }
  },
  "required": [
    "content",
    "createTime",
    "id",
    "specVersion"
  ]
}