Alation · Schema

Article

A catalog article or wiki page

Data CatalogData GovernanceData IntelligenceData LineageData QualityBusiness GlossaryMetadata ManagementAI

Properties

Name Type Description
id integer
title string
body string
url string
author integer
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

alation-alation-search-article-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-search-article-schema.json",
  "title": "Article",
  "description": "A catalog article or wiki page",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "title": {
      "type": "string"
    },
    "body": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "author": {
      "type": "integer"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}