ARCSense.SDK.Verify
1.0.2-beta
This is a prerelease version of ARCSense.SDK.Verify.
dotnet add package ARCSense.SDK.Verify --version 1.0.2-beta
NuGet\Install-Package ARCSense.SDK.Verify -Version 1.0.2-beta
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ARCSense.SDK.Verify" Version="1.0.2-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ARCSense.SDK.Verify" Version="1.0.2-beta" />
<PackageReference Include="ARCSense.SDK.Verify" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ARCSense.SDK.Verify --version 1.0.2-beta
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ARCSense.SDK.Verify, 1.0.2-beta"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ARCSense.SDK.Verify@1.0.2-beta
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ARCSense.SDK.Verify&version=1.0.2-beta&prerelease
#tool nuget:?package=ARCSense.SDK.Verify&version=1.0.2-beta&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ARCSense
Authentication
- HTTP Authentication, scheme: bearer
ARCSense REST APIs
POST Verify
POST /Verify
The Verify endpoint analyzes submitted documents and images to identify architectural elements, extract metadata, and detect potential compliance issues.
Body Parameters
{
"FileName": "fence_design.pdf",
"FileData": "JVBERi0xLjMKJcTl8uXrp/Og0MTGCjQgMCBvYmoKPDwKL0xlbmd0aCAxMjMKL0ZpbHRlciAvQmFzZTY0",
"ObjectTypesToAssess": [
"Fence",
"Design_Plans",
"Material_Samples"
],
"MatchCriteria": "MatchAll",
"ExternalReferenceId": "REQ-0003291",
"ContentType": "application/pdf",
"ContextTag": "HOA-Leland-Phase3"
}
Params
Name | Location | Type | Required | Description |
---|---|---|---|---|
X-Community-Id | header | string | no | none |
body | body | object | no | none |
� fileName | body | string | yes | none |
� fileData | body | string | yes | none |
� objectTypesToAssess | body | [string] | yes | none |
� matchCriteria | body | string | yes | none |
� externalReferenceId | body | string | no | none |
� contentType | body | string | yes | none |
� contextTag | body | string | no | none |
Response Examples
200 Response
{
"description": "The document contains a clear depiction of a vinyl fence and matching design plans. Sample materials were not detected.",
"assessedObjectTypes": [
"Fence",
"Design_Plans",
"Material_Samples"
],
"matched": false,
"confidence": 0.87,
"objectDetectionDetails": [
{
"objectType": "Fence",
"detected": true,
"confidence": 0.95
},
{
"objectType": "Design_Plans",
"detected": true,
"confidence": 0.91
},
{
"objectType": "Paint_Samples",
"detected": false,
"confidence": 0.45
},
{
"objectType": "Material_Samples",
"detected": false,
"confidence": 0.45
}
],
"externalReferenceId": "REQ-0003291"
}
Responses
HTTP Status Code | Meaning | Description | Data schema |
---|---|---|---|
200 | OK | none | Inline |
Responses Data Schema
HTTP Status Code 200
Name | Type | Required | Restrictions | Title | description |
---|---|---|---|---|---|
� description | string | true | none | none | |
� assessedObjectTypes | [string] | true | none | none | |
� matched | boolean | true | none | none | |
� confidence | number | true | none | none | |
� objectDetectionDetails | [object] | true | none | none | |
�� objectType | string | true | none | none | |
�� detected | boolean | true | none | none | |
�� confidence | number | true | none | none | |
� externalReferenceId | string | false | none | none |
Data Schema
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- ARCSense.SDK (>= 1.0.1-beta)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated | |
---|---|---|---|
1.0.2-beta | 138 | 5/5/2025 | |
1.0.1-beta | 125 | 5/5/2025 | |
1.0.0-beta | 211 | 5/1/2025 |
Initial beta release including document verification client, request builders, and result parsing.