-- JSON module extracted from ITU-T H.627.3 (12/2022)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "http://www.itu.int/schema/image-searched-by-image",
"description": "Structure definition of object searched by image",
"type": "object",
"properties": {
"SearchID": {
"description": "Search ID, the 13th to 14th digits take 11 to indicate that the target is searched by image",
"$ref": "/schema/components#/$defs/basicObjectId"
},
"SearchType": {
"description": "Search type, specify the search target type",
"enum": [ "MotorVehicle", "NonMotorVehicle" ]
},
"SubImageObject": {
"description": "Picture information searched by pictures in the image searching",
"$ref": "/schema/subimage-info-list#/$defs/subImageInfo"
},
"FeatureObject": {
"description": "Feature vector information searched by Feature vector in the image searching",
"$ref": "/schema/feature-ext-result-list#/$defs/featureInfo"
},
"Threshold": {
"description": "Similarity threshold",
"type": "number",
"format": "double",
"minimum": 0,
"maximum": 1
}
},
"required": [ "SearchID" ]
}