airbyte-custom-connector/source-crypto-market-extractor/source_crypto_market_extractor/schemas/coin_price.json

25 lines
336 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"type": [
"null",
"string"
]
},
"date": {
"type": [
"null",
"string"
]
},
"price": {
"type": [
"null",
"number"
]
}
}
}