Argilla · Schema

Suggestion

data annotationLLMNLPRLHFmachine learningdatasetsopen sourcehuman feedbackfine-tuningHugging Face

Properties

Name Type Description
question_id string
type object
value object
agent string
score object
id string
inserted_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

argilla-suggestion.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://argilla.io/schemas/suggestion.json",
  "title": "Suggestion",
  "properties": {
    "question_id": {
      "type": "string",
      "format": "uuid",
      "title": "Question Id"
    },
    "type": {
      "$ref": "#/components/schemas/SuggestionType",
      "nullable": true
    },
    "value": {
      "title": "Value"
    },
    "agent": {
      "title": "Agent",
      "type": "string",
      "nullable": true
    },
    "score": {
      "title": "Score",
      "anyOf": [
        {
          "type": "number"
        },
        {
          "items": {
            "type": "number"
          },
          "type": "array"
        }
      ],
      "nullable": true
    },
    "id": {
      "type": "string",
      "format": "uuid",
      "title": "Id"
    },
    "inserted_at": {
      "type": "string",
      "format": "date-time",
      "title": "Inserted At"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "title": "Updated At"
    }
  },
  "type": "object",
  "required": [
    "question_id",
    "value",
    "id",
    "inserted_at",
    "updated_at"
  ]
}