{"info":{"_postman_id":"b0289c18-0207-4400-80e3-55483bac3128","name":"archaeology_rust_api","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"7571330","collectionId":"b0289c18-0207-4400-80e3-55483bac3128","publishedId":"UVC5F87C","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-11-09T20:13:02.000Z"},"item":[{"name":"Area","item":[{"name":"Get Area","event":[{"listen":"test","script":{"id":"f354ac13-b903-4e8f-aea0-0d8a3692fb8f","exec":["pm.test(\"Successful GET request\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Body is correct\", function () {","    pm.response.to.have.body(\"Welcome to Area: A\");","});"],"type":"text/javascript"}}],"id":"0cda1e5d-f62b-4df9-a1a1-76ad0f71785e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/area/A","urlObject":{"port":"8080","path":["services","area","A"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"bffd3bc2-8230-4fe2-9907-8acf105633a4","name":"Get Area","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/area/A"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"Welcome to Area: A"}],"_postman_id":"0cda1e5d-f62b-4df9-a1a1-76ad0f71785e"},{"name":"Post Area","event":[{"listen":"test","script":{"id":"e68edf3b-814c-4b1d-914d-f1dc81065cd6","exec":["pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([201, 202]);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Validate JSON Data\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.name).to.eql(\"AA\");","    pm.expect(jsonData.objective).to.eql(\"Southern Adventist University\");","});"],"type":"text/javascript"}}],"id":"0a734372-eb4b-4a8f-84a6-a4d5e4d40cac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"AA\",\n    \"objective\": \"Southern Adventist University\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/area/","urlObject":{"port":"8080","path":["services","area",""],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"de22a7c6-5acc-4d8a-9b08-c3cad54794e3","name":"Post Area","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"AA\",\n    \"objective\": \"Southern Adventist University\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/area/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"AA\",\n    \"objective\": \"Southern Adventist University\"\n}"}],"_postman_id":"0a734372-eb4b-4a8f-84a6-a4d5e4d40cac"},{"name":"Post Area_Team","event":[{"listen":"test","script":{"id":"3ebb373f-fcbf-429d-b7a3-42e75c730e55","exec":["pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([201, 202]);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Validate JSON Data\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.area_id).to.eql(\"ABC123\");","    pm.expect(jsonData.team_id).to.eql(\"DEF456\");","});"],"type":"text/javascript"}}],"id":"5d37f06e-853e-4e23-bc85-a14601c3957c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"area_id\": \"ABC123\",\n    \"team_id\": \"DEF456\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/area/assign_team/","urlObject":{"port":"8080","path":["services","area","assign_team",""],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"bf322635-ad3d-403f-b7f2-4a991076654d","name":"Post Area","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"AA\",\n    \"objective\": \"Southern Adventist University\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/area/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"area_id\": \"ABC123\",\n    \"team_id\": \"DEF456\"\n}"}],"_postman_id":"5d37f06e-853e-4e23-bc85-a14601c3957c"}],"id":"9ded34d8-76b9-4f11-b3fb-53fa6c8039ea","_postman_id":"9ded34d8-76b9-4f11-b3fb-53fa6c8039ea","description":""},{"name":"Locus","item":[{"name":"Get Locus","event":[{"listen":"test","script":{"id":"d08651bb-c3fc-488e-9aef-9e1c2fc0bb7a","exec":["pm.test(\"Successful GET request\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Body is correct\", function () {","    pm.response.to.have.body(\"Welcome to Locus: AA1001\");","});"],"type":"text/javascript"}}],"id":"5d761aea-d421-4b69-a823-59a2fae07d81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/locus/AA1001","urlObject":{"port":"8080","path":["services","locus","AA1001"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"b857da4b-8c5c-4a2b-92b8-0cb07fcabfc7","name":"Get Locus","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/locus/AA1001"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"Welcome to Locus: AA1001"}],"_postman_id":"5d761aea-d421-4b69-a823-59a2fae07d81"},{"name":"Post Locus","event":[{"listen":"test","script":{"id":"709a02e4-c2ee-4116-b4f3-0019d791e7ce","exec":["pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([201, 202]);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Validate JSON Data\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.name).to.eql(\"AA1001\");","    pm.expect(jsonData.description).to.eql(\"Area AA, Square number 56, Locus 1001\");","});"],"type":"text/javascript"}}],"id":"ae103299-6525-460c-9868-362661c7a6c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"AA1001\",\n    \"description\": \"Area AA, Square number 56, Locus 1001\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/locus/","urlObject":{"port":"8080","path":["services","locus",""],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"003c7e2d-376a-46fd-bab7-b561e5646c69","name":"Post Locus","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"AA1001\",\n    \"description\": \"Area AA, Square number 56, Locus 1001\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/locus/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"AA1001\",\n    \"description\": \"Area AA, Square number 56, Locus 1001\"\n}"}],"_postman_id":"ae103299-6525-460c-9868-362661c7a6c9"}],"id":"6b07d18f-4ddf-4fef-b125-52ef6eb11439","_postman_id":"6b07d18f-4ddf-4fef-b125-52ef6eb11439","description":""},{"name":"Site","item":[{"name":"Get Site","event":[{"listen":"test","script":{"id":"a1f0f2e5-e611-4cea-9bbe-adeaea0edb0b","exec":["pm.test(\"Successful GET request\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Body is correct\", function () {","    pm.response.to.have.body(\"Welcome to Site: Lachish\");","});"],"type":"text/javascript"}}],"id":"35e29463-84cb-4ac0-a2d0-c209f432135b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/site/Lachish","urlObject":{"port":"8080","path":["services","site","Lachish"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"01eeb569-be19-411d-8681-d6dc4991e3c4","name":"Get Site","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/site/Lachish"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"Welcome to Site: Lachish"}],"_postman_id":"35e29463-84cb-4ac0-a2d0-c209f432135b"},{"name":"Post Site","event":[{"listen":"test","script":{"id":"f65204f2-383e-4fc7-b106-33701e953a7c","exec":["pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([201, 202]);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Validate JSON Data\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.short_name).to.eql(\"KQ\");","    pm.expect(jsonData.full_name).to.eql(\"Khirbet Qeyafa\");","    pm.expect(jsonData.publication_name).to.eql(\"Khirbet Qeyafa\");","});"],"type":"text/javascript"}}],"id":"5fd342e2-91fc-4259-bcd7-637ad564ecc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"short_name\": \"KQ\",\n    \"full_name\": \"Khirbet Qeyafa\",\n    \"publication_name\": \"Khirbet Qeyafa\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/site/","urlObject":{"port":"8080","path":["services","site",""],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"a9effeee-d5b5-4650-95e8-13ed06756f6c","name":"Post Site","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"short_name\": \"KQ\",\n    \"full_name\": \"Khirbet Qeyafa\",\n    \"publication_name\": \"Khirbet Qeyafa\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/site/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"short_name\": \"KQ\",\n    \"full_name\": \"Khirbet Qeyafa\",\n    \"publication_name\": \"Khirbet Qeyafa\"\n}"}],"_postman_id":"5fd342e2-91fc-4259-bcd7-637ad564ecc1"}],"id":"16b7eab3-d2fd-4a57-9429-447467dd703a","_postman_id":"16b7eab3-d2fd-4a57-9429-447467dd703a","description":""},{"name":"Supervisor","item":[{"name":"Get Supervisor","event":[{"listen":"test","script":{"id":"9b142824-d1f3-485f-89a4-08661ec3c66e","exec":["pm.test(\"Successful GET request\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Body is correct\", function () {","    pm.response.to.have.body(\"Welcome to Supervisor: CLO\");","});"],"type":"text/javascript"}}],"id":"88343832-c78b-47df-b5e7-7c42d4a55a33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/supervisor/CLO","urlObject":{"port":"8080","path":["services","supervisor","CLO"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"d7122bd5-00b4-4c02-9b9a-a632f270589a","name":"Get Supervisor","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/supervisor/CLO"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"Welcome to Supervisor: CLO"}],"_postman_id":"88343832-c78b-47df-b5e7-7c42d4a55a33"},{"name":"Post Supervisor","event":[{"listen":"test","script":{"id":"6e392976-844f-4e0e-8768-84e12eb102a6","exec":["pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([201, 202]);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Validate JSON Data\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.first_name).to.eql(\"Cherie Lynn\");","    pm.expect(jsonData.middle_name).to.eql(\"\");","    pm.expect(jsonData.last_name).to.eql(\"Olsen\");","    pm.expect(jsonData.initials).to.eql(\"CLO\");","    pm.expect(jsonData.email).to.eql(\"cherielynnolsen@southern.edu\");","});"],"type":"text/javascript"}}],"id":"bc28db37-4df7-4432-8b37-dc8ce060a549","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Cherie Lynn\",\n    \"middle_name\": \"\",\n    \"last_name\": \"Olsen\",\n    \"initials\": \"CLO\",\n    \"email\": \"cherielynnolsen@southern.edu\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/supervisor/","urlObject":{"port":"8080","path":["services","supervisor",""],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"cd6fc0e4-b504-4942-9508-fbe2b5a8337d","name":"Post Supervisor","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Cherie Lynn\",\n    \"middle_name\": \"\",\n    \"last_name\": \"Olsen\",\n    \"initials\": \"CLO\",\n    \"email\": \"cherielynnolsen@southern.edu\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/supervisor/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"first_name\": \"Cherie Lynn\",\n    \"middle_name\": \"\",\n    \"last_name\": \"Olsen\",\n    \"initials\": \"CLO\",\n    \"email\": \"cherielynnolsen@southern.edu\"\n}"}],"_postman_id":"bc28db37-4df7-4432-8b37-dc8ce060a549"}],"id":"06cedec7-6826-4811-85df-09a470d4a9ee","_postman_id":"06cedec7-6826-4811-85df-09a470d4a9ee","description":""},{"name":"Square","item":[{"name":"Get Square","event":[{"listen":"test","script":{"id":"4a2dfc07-cec2-4b8a-91b1-da299486fd6b","exec":["pm.test(\"Successful GET request\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Body is correct\", function () {","    pm.response.to.have.body(\"Welcome to Square: AA56\");","});"],"type":"text/javascript"}}],"id":"dfb8e3e5-5be9-4144-ab2f-198872076269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/square/AA56","urlObject":{"port":"8080","path":["services","square","AA56"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"a339eb13-c4df-4e28-8270-422b27076a53","name":"Get Square","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/square/AA56"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"Welcome to Square: AA56"}],"_postman_id":"dfb8e3e5-5be9-4144-ab2f-198872076269"},{"name":"Post Square","event":[{"listen":"test","script":{"id":"24f95355-9c3b-402d-af6c-e1da2b81ad56","exec":["pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([201, 202]);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Validate JSON Data\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.name).to.eql(\"AA56\");","    pm.expect(jsonData.description).to.eql(\"Area AA, Square number 56\");","});"],"type":"text/javascript"}}],"id":"157d8003-f2d0-4184-a85e-71b409112793","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"AA56\",\n    \"description\": \"Area AA, Square number 56\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/square/","urlObject":{"port":"8080","path":["services","square",""],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"459501f6-9653-47ea-9045-b863f0a52974","name":"Post Square","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"AA56\",\n    \"description\": \"Area AA, Square number 56\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/square/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"AA56\",\n    \"description\": \"Area AA, Square number 56\"\n}"}],"_postman_id":"157d8003-f2d0-4184-a85e-71b409112793"}],"id":"c74f7b84-4dac-483d-a0e2-a37f3bd4f260","_postman_id":"c74f7b84-4dac-483d-a0e2-a37f3bd4f260","description":""},{"name":"Team","item":[{"name":"Get Team","event":[{"listen":"test","script":{"id":"eb7f95c9-6cbf-4720-b561-400e6d6a07cc","exec":["pm.test(\"Successful GET request\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Body is correct\", function () {","    pm.response.to.have.body(\"Welcome to Team: Southern\");","});"],"type":"text/javascript"}}],"id":"75bf6487-91fe-4faa-a1ef-bfef91c3d03a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/team/Southern","urlObject":{"port":"8080","path":["services","team","Southern"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"c35b00b8-fbce-47fc-8fd1-5fd8fcee1645","name":"Get Team","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/team/Southern"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"Welcome to Team: Southern"}],"_postman_id":"75bf6487-91fe-4faa-a1ef-bfef91c3d03a"},{"name":"Post Team","event":[{"listen":"test","script":{"id":"929a76d3-82be-48dd-9ade-2993319ab82f","exec":["pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([201, 202]);","});","pm.test(\"Response time is less than 200ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(200);","});","pm.test(\"Validate JSON Data\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.name).to.eql(\"Southern\");","});"],"type":"text/javascript"}}],"id":"72401dd5-af25-4fa5-9d1b-a2da339b7808","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Southern\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/team/","urlObject":{"port":"8080","path":["services","team",""],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"dd20d6ce-41d7-4d38-9cab-b348356e4866","name":"Post Team","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Southern\"\n}","options":{"raw":{"language":"json"}}},"url":"127.0.0.1:8080/services/team/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Southern\"\n}"}],"_postman_id":"72401dd5-af25-4fa5-9d1b-a2da339b7808"}],"id":"4fad75ca-3f74-4776-a6de-0746082bede8","_postman_id":"4fad75ca-3f74-4776-a6de-0746082bede8","description":""}]}