Oracle Cloud Infrastructure · JSON Structure

Functions Application Structure

A Functions application containing one or more functions.

Type: object Properties: 7
Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Application is a JSON Structure definition published by Oracle Cloud Infrastructure, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id compartmentId displayName subnetIds lifecycleState timeCreated config

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/oracle-cloud/refs/heads/main/json-structure/functions-application-structure.json",
  "name": "Application",
  "description": "A Functions application containing one or more functions.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The OCID of the application.",
      "example": "ocid1.fnapp.oc1.iad.abcdefg123456"
    },
    "compartmentId": {
      "type": "string",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "displayName": {
      "type": "string",
      "example": "my-app"
    },
    "subnetIds": {
      "type": "array",
      "example": "['example-value']",
      "items": {
        "type": "string"
      }
    },
    "lifecycleState": {
      "type": "string",
      "enum": "['CREATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED']",
      "example": "CREATING"
    },
    "timeCreated": {
      "type": "datetime",
      "example": "2026-04-18T10:30:00Z"
    },
    "config": {
      "type": "object",
      "example": {
        "key1": "value1"
      }
    }
  }
}