mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-15 20:46:58 +00:00

* [WIP] Airlfow integration * [WIP] Airlfow integration * [WIP] airflow integration * [WIP] Airflow * [WIP] Airflow * Fix #608: Ingestion: Airflow integration to ingest metadata about pipelines and tasks * Fix #608: Ingestion: Airflow integration to ingest metadata about pipelines and tasks * Update DashboardServiceResource.java Co-authored-by: Ayush Shah <ayush@getcollate.io>
20 lines
583 B
Python
20 lines
583 B
Python
# generated by datamodel-codegen:
|
|
# filename: schema/api/catalogVersion.json
|
|
# timestamp: 2021-09-28T21:56:25+00:00
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Optional
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from ..type import basic
|
|
|
|
|
|
class CatalogApplicationSoftwareVersion(BaseModel):
|
|
version: Optional[str] = Field(None, description='Software version of the catalog')
|
|
revision: Optional[str] = Field(
|
|
None, description='Software revision of the catalog'
|
|
)
|
|
timestamp: Optional[basic.Timestamp] = Field(None, description='Build timestamp')
|