Atlassian · Schema
search_code_search_result
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| type | string | |
| content_match_count | integer | |
| content_matches | array | |
| path_matches | array | |
| file | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/search_code_search_result",
"title": "search_code_search_result",
"type": "object",
"properties": {
"type": {
"type": "string",
"readOnly": true,
"example": "example_value"
},
"content_match_count": {
"type": "integer",
"format": "int64",
"readOnly": true,
"example": 10
},
"content_matches": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/search_content_match"
},
"example": []
},
"path_matches": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/search_segment"
},
"example": []
},
"file": {
"$ref": "#/components/schemas/commit_file"
}
}
}