mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-15 12:37:18 +00:00
20 lines
583 B
Python
20 lines
583 B
Python
# generated by datamodel-codegen:
|
|
# filename: schema/api/catalogVersion.json
|
|
# timestamp: 2021-11-16T07:44:38+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')
|