{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://argilla.io/schemas/workspace.json", "title": "Workspace", "properties": { "id": { "type": "string", "format": "uuid", "title": "Id" }, "name": { "type": "string", "title": "Name" }, "inserted_at": { "type": "string", "format": "date-time", "title": "Inserted At" }, "updated_at": { "type": "string", "format": "date-time", "title": "Updated At" } }, "type": "object", "required": [ "id", "name", "inserted_at", "updated_at" ] }