Salesforce · Schema
SobjectsContact
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| description | string | |
| get | object | |
| post | object |
JSON Schema
{
"type": "object",
"properties": {
"description": {
"type": "string",
"example": "A sample description."
},
"get": {
"type": "object",
"properties": {
"responses": {
"type": "object",
"example": "example_value"
}
},
"required": [
"responses"
]
},
"post": {
"type": "object",
"properties": {
"parameters": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"example": "Example Title"
},
"in": {
"type": "string",
"example": "example_value"
},
"description": {
"type": "string",
"example": "A sample description."
},
"required": {
"type": "boolean",
"example": true
},
"schema": {
"type": "object",
"properties": {
"type": {
"type": "string",
"example": "example_value"
}
},
"required": [
"type"
]
}
},
"required": [
"name",
"in",
"description",
"required",
"schema"
]
}
},
"requestBody": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"application/json": {
"type": "object",
"properties": {
"schema": {
"type": "object",
"properties": {
"$ref": {
"type": "object"
}
},
"required": [
"$ref"
]
}
},
"required": [
"schema"
]
}
},
"required": [
"application/json"
]
}
},
"required": [
"content"
]
},
"responses": {
"type": "object",
"example": "example_value"
}
},
"required": [
"parameters",
"requestBody",
"responses"
]
}
},
"required": [
"description",
"get",
"post"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SobjectsContact"
}