Apigee · Schema

ValueType

A value with a specific type.

Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationsMicroservicesMCPModel Context ProtocolMonetization

Properties

Name Type Description
stringValue string
intValue string
doubleValue number
booleanValue boolean
stringArray object
jsonValue string
View JSON Schema on GitHub

JSON Schema

apigee-valuetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValueType",
  "title": "ValueType",
  "type": "object",
  "description": "A value with a specific type.",
  "properties": {
    "stringValue": {
      "type": "string"
    },
    "intValue": {
      "type": "string",
      "format": "int64"
    },
    "doubleValue": {
      "type": "number",
      "format": "double"
    },
    "booleanValue": {
      "type": "boolean"
    },
    "stringArray": {
      "type": "object",
      "properties": {
        "stringValues": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    },
    "jsonValue": {
      "type": "string"
    }
  }
}