Alation · Schema

Policy

A data governance policy

Data CatalogData GovernanceData IntelligenceData LineageData QualityBusiness GlossaryMetadata ManagementAI

Properties

Name Type Description
id integer
title string
description string
policy_type string
stewards array
url string
created_at string
View JSON Schema on GitHub

JSON Schema

alation-alation-governance-policy-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-governance-policy-schema.json",
  "title": "Policy",
  "description": "A data governance policy",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "policy_type": {
      "type": "string"
    },
    "stewards": {
      "type": "array",
      "items": {
        "type": "integer"
      }
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}