Academy Software Foundation · JSON Structure

Opencue Show Structure

A show (production) in OpenCue

Type: object Properties: 5
AnimationColor ManagementFilmLinux FoundationOpen SourceRenderingStandardsVisual EffectsVFX

Show is a JSON Structure definition published by Academy Software Foundation, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name active defaultMinCores defaultMaxCores

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/academy-software-foundation/refs/heads/main/json-structure/opencue-show-structure.json",
  "name": "Show",
  "description": "A show (production) in OpenCue",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique show identifier",
      "example": "show-abc123"
    },
    "name": {
      "type": "string",
      "description": "Show name",
      "example": "feature_film_2026"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the show is currently active",
      "example": true
    },
    "defaultMinCores": {
      "type": "int32",
      "description": "Default minimum cores for jobs in this show",
      "example": 100
    },
    "defaultMaxCores": {
      "type": "int32",
      "description": "Default maximum cores for jobs in this show",
      "example": 5000
    }
  }
}