{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-appflow/refs/heads/main/json-schema/appflow-describe-connector-entity-request-schema.json", "title": "DescribeConnectorEntityRequest", "description": "DescribeConnectorEntityRequest schema from Amazon AppFlow API", "type": "object", "properties": { "connectorEntityName": { "type": "string", "maxLength": 1024, "example": "Account", "description": "The entity name for that connector." }, "connectorType": { "type": "string", "example": "Salesforce", "description": "The type of connector application, such as Salesforce, Marketo, and so on." }, "connectorProfileName": { "type": "string", "example": "my-salesforce-profile", "description": "The name of the connector profile. The name is unique for each ConnectorProfile in the AWS account." }, "apiVersion": { "type": "string", "example": "v55.0", "description": "The version of the API that's used by the connector." } }, "required": [ "connectorEntityName" ] }