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

31 lines
573 B
JSON

{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
},
"parent_role_id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
"active_flag": {
"type": ["null", "boolean"]
},
"assignment_count": {
"type": ["null", "string"]
},
"sub_role_count": {
"type": ["null", "string"]
},
"level": {
"type": ["null", "integer"]
},
"description": {
"type": ["null", "string"]
}
}
}