Argilla · Schema

Workspace

data annotationLLMNLPRLHFmachine learningdatasetsopen sourcehuman feedbackfine-tuningHugging Face

Properties

Name Type Description
id string
name string
inserted_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

argilla-workspace.json Raw ↑
{
  "$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"
  ]
}