{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Config", "title": "Config", "type": "object", "properties": { "id": { "type": "string" }, "type": { "type": "string", "enum": [ "settings" ] }, "projectId": { "type": "string" }, "environmentId": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "value": { "type": "array", "items": { "$ref": "#/components/schemas/Setting" } } } }