summaryrefslogtreecommitdiff
path: root/data/en_us/superappnlp/2024-09-30
diff options
context:
space:
mode:
authorZhineng Li <[email protected]>2026-02-13 10:54:11 +0800
committerZhineng Li <[email protected]>2026-02-13 10:54:11 +0800
commit7347bac4ab7e136157fc94777e6cf87ef9e08599 (patch)
tree0dec367dac6e152161a6f7cc0dba6ebbef1f34a2 /data/en_us/superappnlp/2024-09-30
downloadacs-metadata-full-1.0.0+20260212.tar.gz
acs-metadata-full-1.0.0+20260212.zip
Diffstat (limited to 'data/en_us/superappnlp/2024-09-30')
-rw-r--r--data/en_us/superappnlp/2024-09-30/api-docs.php224
1 files changed, 224 insertions, 0 deletions
diff --git a/data/en_us/superappnlp/2024-09-30/api-docs.php b/data/en_us/superappnlp/2024-09-30/api-docs.php
new file mode 100644
index 0000000..315f601
--- /dev/null
+++ b/data/en_us/superappnlp/2024-09-30/api-docs.php
@@ -0,0 +1,224 @@
+<?php return [
+ 'version' => '1.0',
+ 'info' => [
+ 'style' => 'RPC',
+ 'product' => 'SuperappNlp',
+ 'version' => '2024-09-30',
+ ],
+ 'directories' => [
+ 'NlpAddressNormalization',
+ ],
+ 'components' => [
+ 'schemas' => [],
+ ],
+ 'apis' => [
+ 'NlpAddressNormalization' => [
+ 'summary' => 'AI 地址区划标准化服务'."\n"
+ ."\n"
+ .'在真实业务场景中,给定的原始文本地址可能缺失了行政区划名称信息(例如,省、市、或区名称),或可能包含了错误的行政区划名称,或地址中提到的行政区划名称信息还没有和下游行业内部的地址库对齐。'."\n"
+ .'地址区划标准化服务采用业界最先进的AI及多语言NLP技术,能够准确分析及理解输入的无结构化文本地址内容,并预测输出标准化、对齐后的行政区划名称信息。'."\n"
+ .'该服务已经用于支持物流行业客户的实际生产业务,包括AI地址分单及运费自动结算等场景需求。',
+ 'methods' => [
+ 'post',
+ ],
+ 'schemes' => [
+ 'https',
+ ],
+ 'security' => [
+ [
+ 'AK' => [],
+ ],
+ ],
+ 'operationType' => 'read',
+ 'deprecated' => false,
+ 'systemTags' => [
+ 'operationType' => 'none',
+ 'riskType' => 'none',
+ 'chargeType' => 'free',
+ 'tenantRelevance' => 'tenant',
+ ],
+ 'parameters' => [
+ [
+ 'name' => 'ClientToken',
+ 'in' => 'query',
+ 'allowEmptyValue' => false,
+ 'schema' => [
+ 'title' => '幂等参数',
+ 'description' => '',
+ 'type' => 'string',
+ 'required' => false,
+ 'example' => '',
+ ],
+ ],
+ [
+ 'name' => 'InstanceId',
+ 'in' => 'query',
+ 'schema' => [
+ 'description' => '',
+ 'type' => 'string',
+ 'required' => false,
+ 'example' => '10671',
+ ],
+ ],
+ [
+ 'name' => 'QueryStr',
+ 'in' => 'query',
+ 'schema' => [
+ 'description' => '',
+ 'type' => 'string',
+ 'required' => false,
+ 'example' => '350 Magliman, Bacolor, Pampanga AQUA MALTA Refilling Station',
+ ],
+ ],
+ [
+ 'name' => 'CityStr',
+ 'in' => 'query',
+ 'schema' => [
+ 'description' => '',
+ 'type' => 'string',
+ 'required' => false,
+ 'example' => 'BACOLOR ',
+ ],
+ ],
+ [
+ 'name' => 'ProvinceStr',
+ 'in' => 'query',
+ 'schema' => [
+ 'description' => '',
+ 'type' => 'string',
+ 'required' => false,
+ 'example' => 'PAMPANGA ',
+ ],
+ ],
+ [
+ 'name' => 'ProvinceStdManual',
+ 'in' => 'query',
+ 'schema' => [
+ 'description' => '',
+ 'type' => 'string',
+ 'required' => false,
+ ],
+ ],
+ [
+ 'name' => 'CityStdManual',
+ 'in' => 'query',
+ 'schema' => [
+ 'description' => '',
+ 'type' => 'string',
+ 'required' => false,
+ ],
+ ],
+ [
+ 'name' => 'DistrictStdManual',
+ 'in' => 'query',
+ 'schema' => [
+ 'description' => '',
+ 'type' => 'string',
+ 'required' => false,
+ ],
+ ],
+ ],
+ 'responses' => [
+ 200 => [
+ 'schema' => [
+ 'title' => 'Schema of Response',
+ 'description' => 'Schema of Response',
+ 'type' => 'object',
+ 'properties' => [
+ 'Code' => [
+ 'description' => '',
+ 'type' => 'string',
+ ],
+ 'Data' => [
+ 'description' => '',
+ 'type' => 'object',
+ 'properties' => [
+ 'CityStd' => [
+ 'description' => '',
+ 'type' => 'string',
+ ],
+ 'DistrictStd' => [
+ 'description' => '',
+ 'type' => 'string',
+ ],
+ 'ProvinceStd' => [
+ 'description' => '',
+ 'type' => 'string',
+ ],
+ 'Results' => [
+ 'type' => 'array',
+ 'items' => [
+ 'type' => 'string',
+ ],
+ ],
+ 'StatusEs' => [
+ 'description' => '',
+ 'type' => 'string',
+ ],
+ ],
+ ],
+ 'Message' => [
+ 'description' => '',
+ 'type' => 'string',
+ 'example' => 'success',
+ ],
+ 'RequestId' => [
+ 'title' => 'Id of the request',
+ 'description' => 'Id of the request',
+ 'type' => 'string',
+ 'example' => '99540D1A-9112-56E5-8DCC-1A2603F4C500',
+ ],
+ 'Result' => [
+ 'type' => 'string',
+ 'example' => 'success',
+ ],
+ 'Success' => [
+ 'description' => '',
+ 'type' => 'boolean',
+ 'example' => 'true',
+ ],
+ 'Timestamp' => [
+ 'description' => '',
+ 'type' => 'string',
+ 'example' => '1701051540592',
+ ],
+ ],
+ ],
+ ],
+ ],
+ 'errorCodes' => [
+ 200 => [
+ [
+ 'errorCode' => 'InstanceDoesNotExist',
+ 'errorMessage' => 'Instance does not exist.',
+ ],
+ [
+ 'errorCode' => 'InstanceCanNotUsed',
+ 'errorMessage' => 'Instance can not used.',
+ ],
+ [
+ 'errorCode' => 'NlpParseException',
+ 'errorMessage' => 'Nlp parse exception.',
+ ],
+ ],
+ 400 => [
+ [
+ 'errorCode' => 'IdempotentParameterMismatch',
+ 'errorMessage' => 'The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.',
+ ],
+ ],
+ ],
+ 'staticInfo' => [
+ 'returnType' => 'synchronous',
+ ],
+ 'responseDemo' => '[{"errorExample":"","example":"{\\n \\"Code\\": \\"S0000\\",\\n \\"Data\\": {\\n \\"CityStd\\": \\"MANDALUYONG\\",\\n \\"DistrictStd\\": \\"PLEASANT HILLS\\",\\n \\"ProvinceStd\\": \\"METRO-MANILA\\",\\n \\"Results\\": [\\n \\"[]\\"\\n ],\\n \\"StatusEs\\": \\"Code_000:OK\\"\\n },\\n \\"Message\\": \\"success\\",\\n \\"RequestId\\": \\"99540D1A-9112-56E5-8DCC-1A2603F4C500\\",\\n \\"Result\\": \\"success\\",\\n \\"Success\\": true,\\n \\"Timestamp\\": \\"1701051540592\\"\\n}","type":"json"}]',
+ 'title' => 'NlpAddressNormalization',
+ ],
+ ],
+ 'endpoints' => [
+ [
+ 'regionId' => 'ap-southeast-1',
+ 'endpoint' => 'superappnlp.ap-southeast-1.aliyuncs.com',
+ ],
+ ],
+];