Skip to main content

clip_info_v3_8.json

clip_info.json Copy Json { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Clip info object", "type": "object", ...

Updated over 3 weeks ago

clip_info.json

Copy Json

{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"description": "Clip info object",
	"type": "object",
	"properties": {
		"name": {
			"type": "string"
		},
		"modified_date": {
			"type": "string"
		},
		"avatar_name": {
			"type": "string"
		},
		"sequence": {
			"type": "string"
		},
		"fps": {
			"type": "number"
		},
		"inertia": {
			"type": "boolean"
		},
		"garment_size": {
			"type": "string"
		},
		"size_on_disk": {
			"type": "string"
		}
	},
	"required": ["name", "modified_date", "avatar_name", "sequence", "fps", "inertia", "garment_size", "size_on_disk"]
}
Did this answer your question?