Oracle Database · Schema

ExecutionPlan

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
sql_id string
plan_hash_value integer
steps array
View JSON Schema on GitHub

JSON Schema

oracle-database-executionplan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecutionPlan",
  "title": "ExecutionPlan",
  "type": "object",
  "properties": {
    "sql_id": {
      "type": "string"
    },
    "plan_hash_value": {
      "type": "integer",
      "format": "int64"
    },
    "steps": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "operation": {
            "type": "string"
          },
          "options": {
            "type": "string"
          },
          "object_name": {
            "type": "string"
          },
          "cost": {
            "type": "integer"
          },
          "cardinality": {
            "type": "integer"
          }
        }
      }
    }
  }
}