nomadic-samuel / SCHEMA.json
samuelandaudreymedia's picture
Upload 11 files
a935931 verified
raw
history blame contribute delete
627 Bytes
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Nomadic Samuel Web Articles Corpus (EN)",
"type": "object",
"additionalProperties": false,
"required": [
"id",
"source",
"lang",
"title",
"text",
"domain",
"content_hash"
],
"properties": {
"id": {
"type": "string"
},
"source": {
"type": "string"
},
"lang": {
"type": "string"
},
"title": {
"type": "string"
},
"text": {
"type": "string"
},
"domain": {
"type": "string"
},
"content_hash": {
"type": "string"
}
}
}