---
title: Filter manual software application schema
url: "https://www.seopress.org/support/hooks/filter-manual-software-application-schema/"
lang: en-US
updated: 2026-05-01
hook_name: seopress_pro_get_json_data_software_app
required_version: 4.6
deprecated: 3.7.9
---

# Filter manual software application schema

- **Hook name:** `seopress_pro_get_json_data_software_app`
- **Required version:** 4.6
- **Deprecated since:** 3.7.9

```php
function sp_pro_get_json_data_software_app($jsonld, $context) {
	//$jsonld returns the schema as an array
	//$context returns the context as an array, use this to apply conditions
	
	//do your stuff
	
	return $jsonld;
}
add_filter('seopress_pro_get_json_data_software_app','sp_pro_get_json_data_software_app', 10, 2);
```

Source: [https://gist.github.com/wp-seopress/b100d8b0e46da18f33147e46df73b4dd](https://gist.github.com/wp-seopress/b100d8b0e46da18f33147e46df73b4dd)



