Free Salesforce Public Sector AP-222 Exam Flashcards
Memorize 50 essential terms and definitions for the Salesforce Accredited Agentforce 360 for Public Sector Professional (AP-222). See the term, recall the definition, then flip to check yourself.
Which two objects sit at the heart of licensing and permitting intake?
Business License Application, used when a business registers and seeks permits, and Individual Application, used when a person seeks a professional license. Both link to an Account, and inspection visits and their violations trace back to one of them, so choosing the wrong object breaks the downstream chain.
Filter by Topic
Jump to Card
About These Salesforce Public Sector AP-222 Flashcards
These 50 flashcards are designed to help you memorize key terms and definitions for the Salesforce Accredited Agentforce 360 for Public Sector Professional (AP-222). Each card shows a term on the front and its definition on the back—the classic flashcard format for vocabulary memorization. Use these alongside our practice questions to build both recall and comprehension.
Topics Covered
Complete Flashcard Reference
Review every term in this set. Open any term to reveal its definition.
Which two objects sit at the heart of licensing and permitting intake?
Business License Application, used when a business registers and seeks permits, and Individual Application, used when a person seeks a professional license. Both link to an Account, and inspection visits and their violations trace back to one of them, so choosing the wrong object breaks the downstream chain.
Where does a portal OmniScript hold form input before a license application record exists?
In the Preliminary Application Reference object. On submission a Data Mapper moves the values into Business License Application or Individual Application. Staging keeps in-progress portal input out of the live application objects.
What does the Visit object represent?
A site visit made by an inspector to inspect and assess code compliance. It captures the date, time, purpose, place, related account, and inspector. Inspection Type is the setup record defining a kind of inspection; Visit is the transaction.
Distinguish Assessment Indicator Definition from Assessment Task.
Assessment Indicator Definition is reusable setup describing a parameter that acts as a marker of compliance. Assessment Task is the transactional record of a check performed during a visit. Assessment Task Definition pairs a task with an indicator definition so both can be reused.
Which object records a violation found during an inspection, and what does it reference?
Regulatory Code Violation. It looks up to the inspection Visit, the Regulatory Code, and a Violation Type, and it relates back to the business license or individual application. Remedial steps go on Violation Enforcement Action, which is master-detail to the violation.
How does an Action Plan Template become usable on an inspection visit?
You publish it as an Action Plan Template Version. Applying that version creates an Action Plan whose Action Plan Items each map to one assessment task. An unpublished template cannot generate action plans.
A resident reports an unsafe restaurant. Which object captures the report?
Public Complaint stores complaints submitted by constituents against a business or establishment. Complaint Case links a public complaint to a Case. The complaint typically triggers an inspection Visit, which can then produce Regulatory Code Violations.
Which object models a permit that requires another permit first?
BusRegAuthTypeDependency captures dependency relationships between authorization types. BusRegAuthorizationType associates an authorization activity with a license or permit type. Model prerequisites in this data rather than hard-coding the sequence into a Flow or OmniScript.
Order the core Grantmaking objects from advertised funding to payment.
Funding Opportunity advertises the pool of money. Individual Application captures the request. Application Decision records the approval or denial. Funding Award is the approved grant. Funding Disbursement tracks each payment out. Funding Award Requirement holds the deliverables the grantee owes.
A grantee's approved scope and budget change mid-award. Which object records it?
Funding Award Amendment, which records modifications to an approved award's scope or finances. Creating a replacement Funding Award instead would orphan the existing requirements and disbursements and break reporting continuity on the original award.
Which objects give an external reviewer access to grant records?
Funding Award Participant for awards and Funding Opportunity Participant for opportunities. They record who has access to that specific record, so reviewers and collaborators are granted access per record instead of by widening org-wide defaults.
Distinguish the Benefit object from Benefit Assignment.
Benefit defines what the agency offers, such as food assistance. Benefit Assignment is one individual's or business's enrollment in it, captured from their application. Money or goods actually issued against that enrollment are Benefit Disbursement records.
What is the difference between Benefit Type, Benefit Product, and Benefit Schedule?
Benefit Type classifies benefits applicable to individuals or groups. Benefit Product is the specific product or benefit authorized for delivery under a program. Benefit Schedule holds the delivery plan for issuing the benefit.
Which object records a constituent's enrollment in a public sector program?
Program Enrollment holds the enrollment details, and Program governs enrollment and disbursement of benefits within that program. Case Program is a separate junction linking a Case to a Program when casework is tracked against it.
An agency wants to post vacancies and let hiring managers approve requisitions. Which objects?
Recruitment Requisition is the formal request to fill a vacancy. Recruitment Posting is the advertised vacancy. Job Position is the instance of employment. Employment Offer records the offer. Position defines the functional role and Pay Grade groups positions with similar responsibilities.
What does the Employee Experience for Public Sector add-on provide?
A single Employee Workspace hub, HR Service for employee cases and requests, Talent Recruitment Management, digitized government forms, and an employee-facing bot. It is priced as a separate add-on to the public sector editions, so confirm entitlement before designing employee-facing requirements.
Which Experience Cloud template supports constituents during a declared emergency?
The Emergency Response Site template. Constituents request emergency assistance and businesses request critical supplies for employee and customer safety. Emergency Program Management surfaces program information, incident updates, and applications for assistance.
Which objects support coordinated care and record obstacles for a constituent?
Care Plan Template defines a type of plan offered; Care Plan is the instance created for one individual to reach goals. Care Barrier records an obstacle preventing the constituent from getting required care. Goal Assignment ties goals into that care context.
What does a Document Checklist Item do on an application?
It tracks one supporting document the constituent must submit, optionally constrained to a document type. Adding checklist items to an action plan template applies the same document requirements consistently to every application of that type.
Which technology reads data off an uploaded paper form into a record?
Intelligent Form Reader, also documented as Intelligent Document Reader, which calls the Amazon Textract optical character recognition API and needs a Textract license. It runs inside Intelligent Document Automation: the upload becomes a Received Document, the reader extracts the values, and staff confirm them into the mapped record fields.
You must produce a formal permit letter as a Word document. Which tool?
OmniStudio Document Generation, which merges Word or PowerPoint templates with data from a data source. Intelligent Document Automation runs the opposite direction, reading data out of submitted documents rather than producing new ones.
What org setup connects OmniStudio to a DocuSign account for eSignature?
An Auth Provider for the secure connection, a Named Credential built from it that OmniScripts and Integration Procedures call, DocuSign's login page added as a Trusted URL because it loads in an iframe, and two Omni Interaction Configuration entries holding the DocuSign authorization.
When should an agency choose CRM Analytics over standard reports and dashboards?
Use standard reports and dashboards for operational lists and straightforward metrics on Salesforce data. Recommend CRM Analytics when the need involves large or blended datasets, exploration across multiple datasets, or embedded drillable dashboards beyond the report builder.
When do you choose an OmniScript rather than a FlexCard?
OmniScript for a guided multi-step process that collects input, such as a permit application. FlexCard for a compact, mostly read-only summary of a record with actions, such as a constituent overview tile. A FlexCard can launch an OmniScript.
Name the four OmniStudio Data Mapper types and what each does.
Extract reads Salesforce data and returns JSON, XML, or a custom format. Turbo Extract reads and filters from a single object type. Load writes JSON or XML input back to Salesforce, updating and creating records. Transform reshapes data without touching Salesforce.
When is Turbo Extract the wrong Data Mapper choice?
When you need data from more than one object type, or formulas, custom JSON, default values, or complex transformations. Turbo Extract reads a single Salesforce object type plus related-object fields, trading those features for simpler configuration and faster runtime.
Why choose an Integration Procedure over calling Data Mappers straight from an OmniScript?
Integration Procedures run server-side and chain multiple reads, writes, and external calls into one round trip. That cuts client-side traffic and keeps reusable logic in one place, callable from OmniScripts, FlexCards, and Flows alike.
Why does Salesforce recommend Data Mappers instead of Apex for reading and writing records?
Data Mappers take less time to create and are easier to maintain than equivalent Apex classes, and they are configuration rather than code. Reserve Apex for logic that Data Mappers and Integration Procedures genuinely cannot express.
What is an Expression Set in Business Rules Engine?
A series of elements that run sequentially as one logical flow, built from variables, constants, conditions, calculations, lookups, and aggregations. It is the calculation and orchestration layer, and it can call decision matrices and decision tables as steps.
Distinguish a decision matrix from a decision table.
A decision matrix matches input values to one table row and returns that row's outputs, giving a single outcome per input set. A decision table reads rules from Salesforce objects or custom metadata, supports different operators per field, and can return multiple matching outcomes.
An eligibility threshold changes monthly and program staff must edit it. Which BRE tool?
A decision table, because its rules live in Salesforce objects or custom metadata that business users can maintain. Burying the thresholds in expression set conditions would force a developer change and a deployment every month.
Which feature lets an agency show why an automated determination was made?
Decision Explainer for Expression Sets. It stores the application data behind a past decision so the outcome can be retrieved and reported on later. Agencies need it for appeals, audits, and fraud review of automated eligibility.
From where can an expression set be invoked?
From Flows, OmniScripts, Integration Procedures, Apex, and the API. That reach is the reason to centralize policy logic in Business Rules Engine rather than duplicating the same rules inside every channel's automation.
What is the Discovery Framework's role in dynamic assessments?
It provides the data model for collecting and managing OmniScript form responses. Assessment questions are grouped into categories, and an Omni Assessment Task links an action plan item to the OmniScript that holds those questions and the conditional logic sequencing them.
Which Experience Cloud template lets constituents apply for and renew permits?
Licenses And Permits. Constituents assess licensing needs, apply for and renew licenses, search license holders, file complaints, and view inspection history. Benefit Assistance, Grantmaking, Emergency Response, Employee Site, Career Site, and Service Provider Portal cover the other journeys.
Which site template do external grant reviewers use?
Grantmaking. Managers post funding opportunities, applicants apply and report on outcomes, and external reviewers assess submissions. Benefit Assistance would give constituents benefit journeys but no funding opportunity or reviewer experience.
Which template serves organizations delivering services on the agency's behalf?
Service Provider Portal. Providers process referral requests, track service delivery, manage their own information, and collaborate with agency staff and constituents. It is provider-facing, unlike Benefit Assistance, which is built for constituents.
What must an agent confirm before discussing sensitive constituent details, and how?
The constituent's identity, using Identity Verification. It runs as a flow launched from an engagement interaction, a voice call record page, or the utility bar, and by default checks details such as name, birth date, phone, and postal code.
What audit artifact does each identity verification attempt produce?
An engagement interaction record, which forms the audit trail for the verification. Replacing Identity Verification with an ad hoc screen flow loses that trail, which agencies rely on as compliance evidence.
Which console component shows how constituents in a household are connected?
Actionable Relationship Center, which graphs constituents alongside related records such as cases, benefits, and care plans. Timeline is different: it displays a constituent's events and milestones in date sequence rather than mapping relationships.
Distinguish Action Launcher from Record Alerts in the console.
Action Launcher gives agents a set of actions to start during an interaction, such as creating a case or requesting an appointment. Record Alerts is surfaced through a FlexCard and pushes critical information about the record at the agent unprompted.
What is the Industry Common Layer, and why does it matter for this exam?
It is the shared set of Industries tools that automate service delivery across intake, assessment, delivery, and monitoring. OmniStudio, Action Plans, Business Rules Engine, Document Checklist Items, Timeline, and Identity Verification all live there, so the same components recur across every public sector journey.
Which layers sit beneath Agentforce Public Sector?
The Salesforce Platform as the single source of truth for agency data, Agentforce Service for case management and the constituent view, Experience Cloud for public portals, and the public sector data model of purpose-built objects on top.
A requirement resembles a standard public sector object plus two extra fields. What do you recommend?
Extend the standard object with custom fields rather than building a parallel custom object. Standard objects arrive with prebuilt relationships, components, and site templates. Replacing them forfeits all of that and creates permanent integration and upgrade work.
When is custom Apex or a Lightning web component justified in a public sector build?
Only when configuration genuinely cannot meet the requirement. The expected order is OmniStudio, Business Rules Engine, Flow, and Action Plans first. Code adds testing, deployment, and maintenance burden that small agency teams struggle to carry.
Why map personas and business processes before configuring anything?
Public sector journeys span constituents, caseworkers, inspectors, reviewers, and external providers, and each needs different access and interfaces. Persona and process mapping drives site template selection, sharing design, and which OmniStudio components you build.
What sharing question must be settled early in a public sector design?
Who may see a constituent's records, given that caseworkers, inspectors, reviewers, and external providers all touch them. Answer it with roles, sharing rules, and participant records rather than loosening org-wide defaults, because constituent data must stay least-privilege.
Which Government Cloud tier meets DoD Impact Level 5 requirements?
Government Cloud Plus - Defense. Government Cloud Plus holds a FedRAMP High provisional authority to operate and meets DoD Impact Level 2 through FedRAMP reciprocity. Confirm the agency's required level early, because it constrains which products and features are available.
What data quality risk shows up when agencies migrate legacy licensing data?
Duplicate and inconsistent constituent records, which break the single view the public sector data model depends on. Plan matching and deduplication, name the source of truth per object, and validate before cutover instead of cleaning up afterward.
Why pin down reporting and audit needs during discovery rather than after go-live?
Because the evidence an agency must produce shapes the build. Decision Explainer, engagement interaction records, and assessment task records only capture what was configured at the moment of the decision. They cannot reconstruct history retroactively.
Frequently Asked Questions
What is the AP-222 exam and has it been renamed?
AP-222 is the Salesforce Accredited Agentforce 360 for Public Sector Professional exam. Salesforce renamed the credential from Public Sector Solutions Accredited Professional on July 24, 2026 to match current product naming. The exam code, content, and existing credentials are unchanged, so holders do not retake it.
How many questions are on the AP-222 exam and how long is it?
The Salesforce exam guide lists 50 multiple-choice and multiple-select questions with 75 minutes allotted, which is about 90 seconds per question. The passing score is 70%. It is a proctored exam delivered at a testing center or online, and no hard-copy or online materials may be referenced during it.
What topics does the AP-222 exam cover and how are they weighted?
The official outline has three sections. Agentforce Public Sector Product-Specific Systems Knowledge is 45%, Public Sector Solution Product Configuration is 36%, and Agentforce Public Sector Implementation Strategies and Best Practices is 19%. These 50 flashcards follow the same distribution with 23, 18, and 9 cards.
Does the AP-222 exam have prerequisites?
No. The Salesforce exam guide lists no prerequisite. Salesforce describes the audience as Salesforce Partners with access to Partner Learning Camp training who typically have three to five years of experience as a Salesforce consultant designing and deploying public sector solutions.
What does AP-222 cost and what happens if I fail?
Registration is USD 150 or JPY 20,000 plus applicable taxes, and the retake fee is the same amount because Accredited Professional retakes get no discount. You must wait 24 hours after a first failure and 14 days after a second. Three attempts are allowed per release cycle.
Does Salesforce publish a pass rate for AP-222?
No. Salesforce does not publish exam-level pass rates for Accredited Professional exams. Plan against the published 70% passing score instead, and use timed 50-question practice runs to confirm you can hold the pace across all three outline sections before booking.
Explore More Salesforce Certifications
Continue into nearby exams from the same family. Each card keeps practice questions, study guides, flashcards, videos, and articles in one place.
More From This Family
Videos and articles for deeper review.