Alation · Schema

CustomFieldValue

A custom field value for a catalog object

Data CatalogData GovernanceData IntelligenceData LineageData QualityBusiness GlossaryMetadata ManagementAI

Properties

Name Type Description
field_id integer
field_name string
object_type string
object_id integer
value object Field value
View JSON Schema on GitHub

JSON Schema

alation-alation-data-catalog-custom-field-value-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alation/refs/heads/main/json-schema/alation-alation-data-catalog-custom-field-value-schema.json",
  "title": "CustomFieldValue",
  "description": "A custom field value for a catalog object",
  "type": "object",
  "properties": {
    "field_id": {
      "type": "integer"
    },
    "field_name": {
      "type": "string"
    },
    "object_type": {
      "type": "string"
    },
    "object_id": {
      "type": "integer"
    },
    "value": {
      "description": "Field value"
    }
  }
}