Tombstone

Indicates that a previously published ORD resource has been removed

Application DependenciesCloud-NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
ordId string
groupId object
groupTypeId string
removalDate string
description string
View JSON Schema on GitHub

JSON Schema

application-research-tombstone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Tombstone",
  "title": "Tombstone",
  "type": "object",
  "description": "Indicates that a previously published ORD resource has been removed",
  "required": [
    "removalDate"
  ],
  "properties": {
    "ordId": {
      "type": "string",
      "pattern": "^([a-z0-9]+(?:[.][a-z0-9]+)*):(package|consumptionBundle|product|vendor|apiResource|eventResource|capability|entityType|integrationDependency|dataProduct):([a-zA-Z0-9._\\-]+):(v0|v[1-9][0-9]*|)?$",
      "maxLength": 255
    },
    "groupId": {
      "$ref": "#/components/schemas/GroupId"
    },
    "groupTypeId": {
      "type": "string",
      "pattern": "^([a-z0-9-]+(?:[.][a-z0-9-]+)*):([a-zA-Z0-9._\\-\\/]+)$"
    },
    "removalDate": {
      "type": "string",
      "format": "date-time"
    },
    "description": {
      "type": "string",
      "minLength": 1
    }
  }
}