Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions schemas/historical_entity_schema-v0.1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"$schema": "https://json-schema.org/draft-07/schema#",

"$id": "https://test-library.murmurations.network/v2/schemas/historical_entity_schema-v0.1.0",

"title": "Historical Entity Schema",

"description": "A schema for describing historical entities and their relationships.",

"type": "object",

"properties": {

"linked_schemas": {
"$ref": "../fields/linked_schemas.json"
},

"name": {
"$ref": "../fields/name.json"
},

"primary_url": {
"$ref": "../fields/primary_url.json"
},

"description": {
"$ref": "../fields/description.json"
},

"entity_type": {
"title": "Historical Entity Type",
"description": "The type of historical entity.",
"type": "string",
"enum": [
"war",
"person",
"battle",
"state"
]
},

"relationships": {
"$ref": "../fields/relationships.json"
}
},

"required": [
"linked_schemas",
"name",
"primary_url"
],

"metadata": {

"creator": {
"name": "jmwshye",
"url": "https://github.com/jmwshye"
},


"schema": {
"name": "historical_entity_schema-v0.1.0",
"purpose": "Describe historical events, people, battles, states and their semantic relationships."
}
}
}