{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://cpobjects.mycpl.net/schema/provider_token.json", "title": "Provider", "description": "Data origin", "type": "object", "properties": { "master_token": { "description": "Unique ID of the provider", "type": "string", "$ref": "./cgc/enums/connector.json" }, "provider_token": { "description": "Unique ID reference an import provider", "type": "string", "minLength": 1 }, "token": { "description": "Unique ID reference a record in the provider", "type": "string", "minLength": 1 } }, "required": [ "master_token", "provider_token", "token" ] }