OpenMetadata · Schema

Entityreference

Data CatalogMetadataData GovernanceData LineageData QualityOpen SourceData DiscoveryData Observability

Properties

Name Type Description
id string
type string
name string
fullyQualifiedName string
description string
displayName string
deleted boolean
inherited boolean
href string
View JSON Schema on GitHub

JSON Schema

entityreference.json Raw ↑
{
  "required": [
    "id",
    "type"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "type": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "fullyQualifiedName": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "deleted": {
      "type": "boolean"
    },
    "inherited": {
      "type": "boolean"
    },
    "href": {
      "type": "string",
      "format": "uri"
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/openmetadata/main/json-schema/entityreference.json"
}