{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PartitionLifeCycleRuntime", "title": "PartitionLifeCycleRuntime", "type": "object", "properties": { "state": { "type": "string", "enum": [ "RUNNING", "SHUTDOWN", "BOOTING", "SHUTTING_DOWN" ] }, "links": { "type": "array", "items": { "$ref": "#/components/schemas/Link" } } } }