Salesforce · JSON Structure

Salesforce Sobjects Contact Structure

Type: object Properties: 3 Required: 3
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

SobjectsContact is a JSON Structure definition published by Salesforce, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

description get post

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "SobjectsContact",
  "properties": {
    "description": {
      "type": "string"
    },
    "get": {
      "type": "object",
      "properties": {
        "responses": {
          "type": "object"
        }
      },
      "required": [
        "responses"
      ]
    },
    "post": {
      "type": "object",
      "properties": {
        "parameters": {
          "type": "array",
          "description": "",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "in": {
                "type": "string"
              },
              "description": {
                "type": "string"
              },
              "required": {
                "type": "boolean"
              },
              "schema": {
                "type": "object",
                "properties": {
                  "type": {
                    "type": "string"
                  }
                },
                "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"
        }
      },
      "required": [
        "parameters",
        "requestBody",
        "responses"
      ]
    }
  },
  "required": [
    "description",
    "get",
    "post"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}