Source code for gateway.models.dataset

from typing import List, Dict, Any
from pydantic import BaseModel

[docs]class Tag(BaseModel): labelType: str state: str tagFQN: str
[docs]class Column(BaseModel): name: str dataType: str
[docs]class Service(BaseModel): id: str type: str name: str fullyQualifiedName: str deleted: bool href: str
[docs]class Dataset(BaseModel): id: str fullyQualifiedName: str name: str version: float updatedAt: int updatedBy: str href: str service: Service serviceType: str depot: str collection: str dataset: str tags: List[Tag] columns: List[Column]