{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Workspace", "title": "Workspace", "type": "object", "description": "A workspace resource.", "properties": { "id": { "type": "string", "description": "Fully qualified resource ID.", "readOnly": true }, "name": { "type": "string", "description": "The name of the resource.", "readOnly": true }, "type": { "type": "string", "description": "The type of the resource.", "readOnly": true }, "location": { "type": "string", "description": "The geo-location where the resource lives." }, "tags": { "type": "object", "additionalProperties": { "type": "string" }, "description": "Resource tags." }, "identity": { "$ref": "#/components/schemas/ManagedIdentity" }, "properties": { "$ref": "#/components/schemas/WorkspaceProperties" } } }