File size: 2,739 Bytes
ffb3703 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Data Cards dataset schema",
"description": "Date-stamped news cards that keep vendor and technology knowledge fresh for AI ingestion and retrieval.",
"schemaVersion": "1.0.0",
"catalogVersion": "2.0.0",
"license": "https://creativecommons.org/licenses/by/4.0/",
"type": "object",
"required": [
"slug",
"title",
"summary",
"datePublished",
"about",
"_meta"
],
"fields": [
{
"name": "slug",
"type": "string",
"required": true,
"description": "Stable card identifier including a date suffix."
},
{
"name": "title",
"type": "string",
"required": true,
"description": "Headline for the card."
},
{
"name": "summary",
"type": "string",
"required": true,
"description": "Short machine-readable summary."
},
{
"name": "datePublished",
"type": "string",
"required": true,
"description": "ISO publication date."
},
{
"name": "about",
"type": "object[]",
"required": true,
"description": "Technology references attached to the card."
},
{
"name": "mentions",
"type": "object[]",
"required": false,
"description": "Vendor references attached to the card."
},
{
"name": "sources",
"type": "string[]",
"required": false,
"description": "External source URLs supporting the card."
},
{
"name": "_meta",
"type": "object",
"required": true,
"description": "Provenance and contract metadata for this record."
}
],
"properties": {
"slug": {
"type": "string",
"description": "Stable card identifier including a date suffix."
},
"title": {
"type": "string",
"description": "Headline for the card."
},
"summary": {
"type": "string",
"description": "Short machine-readable summary."
},
"datePublished": {
"type": "string",
"description": "ISO publication date."
},
"about": {
"type": "array",
"description": "Technology references attached to the card."
},
"mentions": {
"type": "array",
"description": "Vendor references attached to the card."
},
"sources": {
"type": "array",
"description": "External source URLs supporting the card."
},
"_meta": {
"type": "object",
"description": "Provenance and contract metadata for this record."
}
},
"distribution": {
"datasetPath": "/datasets/cards.jsonl",
"browsePath": "/for-ai/datasets/cards",
"apiPath": "/api/cards",
"entityPathPattern": "/cards/[slug]"
}
}
|