Apideck · Schema

UnifiedId

A object containing a unique identifier for the resource that was created, updated, or deleted.

IntegrationUnified-API

Properties

Name Type Description
id string The unique identifier of the resource
View JSON Schema on GitHub

JSON Schema

apideck-unifiedid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UnifiedId",
  "title": "UnifiedId",
  "type": "object",
  "x-apideck-schema-id": "Id",
  "description": "A object containing a unique identifier for the resource that was created, updated, or deleted.",
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "title": "Id",
      "description": "The unique identifier of the resource",
      "type": "string",
      "readOnly": true,
      "example": "12345"
    }
  }
}