{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "UserDemographic", "description": "UserDemographic schema from Docupilot accounts API", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "product_referral_source": { "type": "string", "nullable": true, "maxLength": 52 }, "role": { "type": "string", "maxLength": 52 } }, "required": [ "id", "role" ] }