1
0
mirror of synced 2025-12-25 02:09:19 -05:00

remove airbytetype (#653)

This commit is contained in:
Jared Rhizor
2020-10-20 11:01:53 -07:00
committed by GitHub
parent 71d660707c
commit 08737335ce
2 changed files with 0 additions and 15 deletions

View File

@@ -42,13 +42,6 @@ class Type(Enum):
CATALOG = 'CATALOG'
class AirbyteType(Enum):
boolean = 'boolean'
number = 'number'
text = 'text'
object = 'object'
class AirbyteRecordMessage(BaseModel):
stream: str = Field(..., description='the name of the stream for this record')
data: Dict[str, Any] = Field(..., description='the record data')

View File

@@ -35,14 +35,6 @@ properties:
description: "schema message: the state. Must be the last message produced. The platform uses this information"
"$ref": "#/definitions/AirbyteStateMessage"
definitions:
AirbyteType:
description: Airbyte supported types
type: string
enum:
- boolean
- number
- text
- object
AirbyteRecordMessage:
type: object
additionalProperties: false