gspc-distribution-integrity / input-schema.json
Nicholastempleman's picture
UNMEASURED coverage card: rubric + input schema. No n. No scores. Printer of live GET. Never certify. (#9)
072351a
Raw
History Blame
1.59 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://huggingface.co/datasets/csoai/gspc-distribution-integrity/raw/main/input-schema.json",
"title": "GSPC distribution-integrity bank row",
"description": "What a stranger-recomputable bank row must contain. This Hub shell has empty rows. Status stays UNMEASURED until the living GET says otherwise. Not a certificate.",
"type": "object",
"additionalProperties": false,
"required": [
"subject",
"source_url"
],
"properties": {
"subject": {
"type": "string",
"description": "Named instrument or programme under review."
},
"tokenisation_type": {
"type": "string",
"description": "How the interest is tokenised, as published. Empty if none."
},
"figure_distributed": {
"type": "string",
"description": "Distributed figure as published, raw text. Empty if none. Not a Hub score."
},
"figure_represented": {
"type": "string",
"description": "Represented figure as published, raw text. Empty if none. Not a Hub score."
},
"unit": {
"type": "string",
"description": "Unit as published. Empty if none."
},
"source_url": {
"type": "string",
"format": "uri",
"description": "Stranger-confirmable URL for the figures."
},
"as_of": {
"type": "string",
"description": "Date the row was read. Empty if unread."
},
"mixed_flag": {
"type": "boolean",
"description": "True when represented and distributed are mixed. Omit when unknown."
}
}
}