The list of features on a project.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContainerForProjectFeatures", "title": "ContainerForProjectFeatures", "additionalProperties": false, "description": "The list of features on a project.", "properties": { "features": { "description": "The project features.", "items": { "$ref": "#/components/schemas/ProjectFeature" }, "type": "array" } }, "type": "object" }