Skip to content

Metadata

Introduction

Classification metadata are the information about the classification process. They contain the name of the training, the date of the training, and the ID of the project. Their purpose is to help you identify the training that was used to classify the text.

Format

KeyTypeDescription
document_structureDocument StructureThe document structure such as the children for each chunk.
train_dateStringThe date of the training.
document_typeStringThe type of the document.
nameStringThe file name of the training.
speakersString[]The speakers identified in the document.

Example

{
	"document_structure": {
		"0": {
			"children": []
		},
		"1": {
			"children": [2]
		},
        ...
	},
	"document_type": "",
	"name": "file.pdf",
	"speakers": []
}

Next steps