Navigation dans Vuforia Studio > Projets et expériences > Expériences basées sur des modèles > Mappages IRS > Schéma JSON de mappage
  
Schéma JSON de mappage
L'exemple suivant décrit le schéma JSON utilisé pour les mappages IRS permettant de mapper un URN à un autre.
<irs-urn-mapping>:
{
"id": <id>,
"key": <urn>,
"value": <urn>,
}
<id>: integer
<urn>: <thingmark-urn> | <thing-urn> | <template-urn>
<thingmark-urn>: urn:vuforia:vumark:<thingmark-code>
<thing-urn>: urn:thingworx:thing:<thing-name>[@<hostname>]
<template-urn>: urn:thingworx:template:<template-name>[@<hostname>]
<thingmark-code>: <domain-id>:<instance-id>
<domain-id>: integer
<instance-id>: integer
<thing-name>: string (name of Thing in ThingWorx server)
<template-name>: string (name of ThingTemplate in ThingWorx server)
<hostname>: string (valid FQDN of machine hosting ThingWorx server)
* 
La propriété id est immuable et affectée par Experience Service lors de la création d'un mappage. Par conséquent, lorsque vous spécifiez le corps d'une requête utilisée pour créer ou modifier un mappage, la propriété idest omise dans l'objet JSON.
Voici un exemple d'objet JSON de mappage URN, conforme à ce schéma :
{
"id": 1512,
"key": "urn:vuforia:vumark:2:101",
"value": "urn:thingworx:thing:Quadcopter101@es.example.com"
}