{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PreventRepository", "title": "PreventRepository", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "provider": { "type": "string" }, "url": { "type": "string", "nullable": true }, "dateCreated": { "type": "string", "format": "date-time" } }, "required": [ "id", "name" ] }