Salesforce · Schema
CreateorUpdateQuoteRequest
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| pricingPref | string | |
| graph | object |
JSON Schema
{
"type": "object",
"properties": {
"pricingPref": {
"type": "string",
"example": "example_value"
},
"graph": {
"type": "object",
"properties": {
"graphId": {
"type": "string",
"example": "500123"
},
"records": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"referenceId": {
"type": "string",
"example": "500123"
},
"record": {
"type": "object",
"properties": {
"attributes": {
"type": "object",
"properties": {
"type": {
"type": "object"
},
"method": {
"type": "object"
}
},
"required": [
"type",
"method"
]
},
"Name": {
"type": "string",
"example": "Example Title"
},
"Pricebook2Id": {
"type": "string",
"example": "500123"
},
"QuoteId": {
"type": "string",
"example": "500123"
},
"PricebookEntryId": {
"type": "string",
"example": "500123"
},
"Product2Id": {
"type": "string",
"example": "500123"
},
"Quantity": {
"type": "number",
"example": 42.5
},
"UnitPrice": {
"type": "number",
"example": 42.5
},
"PeriodBoundary": {
"type": "string",
"example": "example_value"
},
"BillingFrequency": {
"type": "string",
"example": "example_value"
},
"StartDate": {
"type": "string",
"example": "example_value"
},
"EndDate": {
"type": "string",
"example": "example_value"
},
"PeriodBoundaryDay": {
"type": "integer",
"example": 10
}
},
"required": [
"attributes"
]
}
},
"required": [
"referenceId",
"record"
]
}
}
},
"required": [
"graphId",
"records"
]
}
},
"required": [
"pricingPref",
"graph"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CreateorUpdateQuoteRequest"
}