1
0
mirror of synced 2026-01-06 06:04:16 -05:00
Files
airbyte/airbyte-integrations/connectors/source-pipedrive/source_pipedrive/schemas/currencies.json

28 lines
501 B
JSON

{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
},
"code": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"symbol": {
"type": ["null", "string"]
},
"decimal_points": {
"type": ["null", "integer"]
},
"active_flag": {
"type": ["null", "boolean"]
},
"is_custom_flag": {
"type": ["null", "boolean"]
}
}
}