Salesforce · JSON Structure

Salesforce Post Structure

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

Post 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

parameters requestBody responses

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Post",
  "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": "string"
                    }
                  },
                  "required": [
                    "$ref"
                  ]
                }
              },
              "required": [
                "schema"
              ]
            }
          },
          "required": [
            "application/json"
          ]
        }
      },
      "required": [
        "content"
      ]
    },
    "responses": {
      "type": "object"
    }
  },
  "required": [
    "parameters",
    "requestBody",
    "responses"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}