{
	"info": {
		"_postman_id": "61362730-eaeb-4eee-912a-6ab7ca3a74ff",
		"name": "Presidio Analyzer",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"item": [
		{
			"name": "Presidio Analyzer health",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "http://localhost:5002/health",
					"protocol": "http",
					"host": [
						"localhost"
					],
					"port": "5002",
					"path": [
						"health"
					]
				}
			},
			"response": []
		},
		{
			"name": "Simple Text Analysis",
			"request": {
				"method": "POST",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": " {\r\n        \"text\": \"John Smith drivers license is AC432223\",\r\n        \"language\": \"en\"\r\n    }",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "http://localhost:5002/analyze",
					"protocol": "http",
					"host": [
						"localhost"
					],
					"port": "5002",
					"path": [
						"analyze"
					]
				}
			},
			"response": []
		},
		{
			"name": "Text Analysis set score threshold",
			"request": {
				"method": "POST",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "{\r\n        \"text\": \"John Smith drivers license is AC432223\", \r\n        \"language\": \"en\", \"score_threshold\": 0.7\r\n    }",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "http://localhost:5002/analyze",
					"protocol": "http",
					"host": [
						"localhost"
					],
					"port": "5002",
					"path": [
						"analyze"
					]
				}
			},
			"response": []
		},
		{
			"name": "Analyzer get supported entities",
			"protocolProfileBehavior": {
				"disableBodyPruning": true
			},
			"request": {
				"method": "GET",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "http://localhost:5002/supportedentities?language=en",
					"protocol": "http",
					"host": [
						"localhost"
					],
					"port": "5002",
					"path": [
						"supportedentities"
					],
					"query": [
						{
							"key": "language",
							"value": "en"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Analyzer get recognizers",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "http://localhost:5002/recognizers?language=en",
					"protocol": "http",
					"host": [
						"localhost"
					],
					"port": "5002",
					"path": [
						"recognizers"
					],
					"query": [
						{
							"key": "language",
							"value": "en"
						}
					]
				}
			},
			"response": []
		}
	]
}