{ "documentationUrl": "https://docsurl.com", "connectionSpecification": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Timely Integration Spec", "type": "object", "required": ["account_id", "start_date", "bearer_token"], "additionalProperties": false, "properties": { "account_id": { "title": "account_id", "type": "string", "description": "Timely account id" }, "start_date": { "title": "startDate", "type": "string", "description": "start date", "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$", "example": "2022-05-06" }, "bearer_token": { "title": "Bearer token", "type": "string", "description": "Timely bearer token" } } } }