mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-16 21:17:03 +00:00
20 lines
583 B
Python
20 lines
583 B
Python
![]() |
# generated by datamodel-codegen:
|
||
|
# filename: schema/api/catalogVersion.json
|
||
|
# timestamp: 2021-07-31T17:12:10+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')
|